File Coverage

lib/JIRA/REST/Class/Issue/Status/Category.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::Issue::Status::Category;
2 4     4   1391 use parent qw( JIRA::REST::Class::Abstract );
  4         8  
  4         18  
3 4     4   208 use strict;
  4         8  
  4         61  
4 4     4   15 use warnings;
  4         5  
  4         81  
5 4     4   51 use 5.010;
  4         12  
6              
7             our $VERSION = '0.12';
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 the category of an issue's status.
13              
14             __PACKAGE__->mk_data_ro_accessors( qw/ name colorName id key self / );
15              
16             1;
17              
18             #pod =accessor id
19             #pod
20             #pod The id of the status category.
21             #pod
22             #pod =accessor key
23             #pod
24             #pod The key of the status category.
25             #pod
26             #pod =accessor name
27             #pod
28             #pod The name of the status category.
29             #pod
30             #pod =accessor colorName
31             #pod
32             #pod The color name of the status category.
33             #pod
34             #pod =accessor self
35             #pod
36             #pod The full URL for the JIRA REST API call for the status category.
37             #pod
38             #pod =for stopwords colorName
39             #pod
40             #pod =cut
41              
42             __END__
43              
44             =pod
45              
46             =encoding UTF-8
47              
48             =for :stopwords Packy Anderson Alexandr Alexey Ciornii Heumann Manni Melezhik colorName
49              
50             =head1 NAME
51              
52             JIRA::REST::Class::Issue::Status::Category - A helper class for L<JIRA::REST::Class|JIRA::REST::Class> that represents the category of an issue's status.
53              
54             =head1 VERSION
55              
56             version 0.12
57              
58             =head1 READ-ONLY ACCESSORS
59              
60             =head2 id
61              
62             The id of the status category.
63              
64             =head2 key
65              
66             The key of the status category.
67              
68             =head2 name
69              
70             The name of the status category.
71              
72             =head2 colorName
73              
74             The color name of the status category.
75              
76             =head2 self
77              
78             The full URL for the JIRA REST API call for the status category.
79              
80             =head1 RELATED CLASSES
81              
82             =over 2
83              
84             =item * L<JIRA::REST::Class|JIRA::REST::Class>
85              
86             =item * L<JIRA::REST::Class::Abstract|JIRA::REST::Class::Abstract>
87              
88             =back
89              
90             =head1 AUTHOR
91              
92             Packy Anderson <packy@cpan.org>
93              
94             =head1 COPYRIGHT AND LICENSE
95              
96             This software is Copyright (c) 2017 by Packy Anderson.
97              
98             This is free software, licensed under:
99              
100             The Artistic License 2.0 (GPL Compatible)
101              
102             =cut