File Coverage

lib/JIRA/REST/Class/Project/Component.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             package JIRA::REST::Class::Project::Component;
2 4     4   1851 use parent qw( JIRA::REST::Class::Abstract );
  4         8  
  4         23  
3 4     4   272 use strict;
  4         8  
  4         64  
4 4     4   16 use warnings;
  4         9  
  4         72  
5 4     4   59 use 5.010;
  4         13  
6              
7             our $VERSION = '0.11';
8             our $SOURCE = 'CPAN';
9             ## $SOURCE = 'GitHub'; # COMMENT
10             # the line above will be commented out by Dist::Zilla
11              
12             # ABSTRACT: A helper class for L<JIRA::REST::Class|JIRA::REST::Class> that represents a component of a JIRA project as an object.
13              
14             __PACKAGE__->mk_data_ro_accessors( qw( id isAssigneeTypeValid name self ) );
15              
16             1;
17              
18             #pod =accessor B<id>
19             #pod
20             #pod The ID of the project category.
21             #pod
22             #pod =accessor B<isAssigneeTypeValid>
23             #pod
24             #pod A boolean indicating whether the assignee type is valid.
25             #pod
26             #pod =accessor B<name>
27             #pod
28             #pod The name of the project category.
29             #pod
30             #pod =accessor B<self>
31             #pod
32             #pod Returns the JIRA REST API URL of the project category.
33             #pod
34             #pod =for stopwords isAssigneeTypeValid
35             #pod
36             #pod =cut
37              
38             __END__
39              
40             =pod
41              
42             =encoding UTF-8
43              
44             =for :stopwords Packy Anderson Alexandr Alexey Ciornii Melezhik isAssigneeTypeValid
45              
46             =head1 NAME
47              
48             JIRA::REST::Class::Project::Component - A helper class for L<JIRA::REST::Class|JIRA::REST::Class> that represents a component of a JIRA project as an object.
49              
50             =head1 VERSION
51              
52             version 0.11
53              
54             =head1 READ-ONLY ACCESSORS
55              
56             =head2 B<id>
57              
58             The ID of the project category.
59              
60             =head2 B<isAssigneeTypeValid>
61              
62             A boolean indicating whether the assignee type is valid.
63              
64             =head2 B<name>
65              
66             The name of the project category.
67              
68             =head2 B<self>
69              
70             Returns the JIRA REST API URL of the project category.
71              
72             =head1 RELATED CLASSES
73              
74             =over 2
75              
76             =item * L<JIRA::REST::Class|JIRA::REST::Class>
77              
78             =item * L<JIRA::REST::Class::Abstract|JIRA::REST::Class::Abstract>
79              
80             =back
81              
82             =head1 AUTHOR
83              
84             Packy Anderson <packy@cpan.org>
85              
86             =head1 COPYRIGHT AND LICENSE
87              
88             This software is Copyright (c) 2017 by Packy Anderson.
89              
90             This is free software, licensed under:
91              
92             The Artistic License 2.0 (GPL Compatible)
93              
94             =cut