The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package WebService::Cmis::Relationship;

=head1 NAME

WebService::Cmis::Relationship - Representation of a cmis relationship

=head1 DESCRIPTION

TODO

=cut

use strict;
use warnings;
use WebService::Cmis::Object ();
use Error qw(:try);
our @ISA = ('WebService::Cmis::Object');


=head1 METHODS

=over 4

=cut

=item getSource

TODO: This is not yet implemented.

=cut

sub getSource { throw WebService::Cmis::NotImplementedException; }

=item getSourceId

TODO: This is not yet implemented.

=cut

sub getSourceId { throw WebService::Cmis::NotImplementedException; }

=item getTarget

TODO: This is not yet implemented.

=cut

sub getTarget { throw WebService::Cmis::NotImplementedException; }

=item getTargetId

TODO: This is not yet implemented.

=cut

sub getTargetId { throw WebService::Cmis::NotImplementedException; }

=back

=head1 COPYRIGHT AND LICENSE

Copyright 2012 Michael Daum

This module is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.  See F<http://dev.perl.org/licenses/artistic.html>.

=cut

1;