line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package WebService::Cmis::Relationship; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
=head1 NAME |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
WebService::Cmis::Relationship - Representation of a cmis relationship |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
=head1 DESCRIPTION |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
TODO |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=cut |
12
|
|
|
|
|
|
|
|
13
|
1
|
|
|
1
|
|
4013
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
43
|
|
14
|
1
|
|
|
1
|
|
5
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
32
|
|
15
|
1
|
|
|
1
|
|
625
|
use WebService::Cmis::Object (); |
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
use Error qw(:try); |
17
|
|
|
|
|
|
|
our @ISA = ('WebService::Cmis::Object'); |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 METHODS |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=over 4 |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=cut |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=item getSource |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
TODO: This is not yet implemented. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=cut |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
sub getSource { throw WebService::Cmis::NotImplementedException; } |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=item getSourceId |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
TODO: This is not yet implemented. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=cut |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
sub getSourceId { throw WebService::Cmis::NotImplementedException; } |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=item getTarget |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
TODO: This is not yet implemented. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=cut |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
sub getTarget { throw WebService::Cmis::NotImplementedException; } |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=item getTargetId |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
TODO: This is not yet implemented. |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=cut |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
sub getTargetId { throw WebService::Cmis::NotImplementedException; } |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=back |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
Copyright 2012-2013 Michael Daum |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
This module is free software; you can redistribute it and/or modify it under |
65
|
|
|
|
|
|
|
the same terms as Perl itself. See F. |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
=cut |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
1; |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
|