line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package App::LDAP::ObjectClass::Top; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
4
|
use Modern::Perl; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
|
5
|
1
|
|
|
1
|
|
540
|
use Moose; |
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
has objectClass => ( |
8
|
|
|
|
|
|
|
is => "rw", |
9
|
|
|
|
|
|
|
isa => "ArrayRef[Str]", |
10
|
|
|
|
|
|
|
required => 1, |
11
|
|
|
|
|
|
|
); |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
14
|
|
|
|
|
|
|
no Moose; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
1; |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=pod |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 NAME |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
App::LDAP::ObjectClass::Top - schema of top |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 DEFINITION |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
objectclass ( |
27
|
|
|
|
|
|
|
2.5.6.0 |
28
|
|
|
|
|
|
|
NAME 'top' |
29
|
|
|
|
|
|
|
DESC 'RFC2256: top of the superclass chain' |
30
|
|
|
|
|
|
|
ABSTRACT |
31
|
|
|
|
|
|
|
MUST objectClass |
32
|
|
|
|
|
|
|
) |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=cut |
35
|
|
|
|
|
|
|
|