File Coverage

blib/lib/Yahoo/Marketing/Authorization.pm
Criterion Covered Total %
statement 7 9 77.7
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 10 12 83.3


line stmt bran cond sub pod time code
1             package Yahoo::Marketing::Authorization;
2             # Copyright (c) 2009 Yahoo! Inc. All rights reserved.
3             # The copyrights to the contents of this file are licensed under the Perl Artistic License (ver. 15 Aug 1997)
4              
5 2     2   55212 use strict; use warnings;
  2     2   7  
  2         84  
  2         14  
  2         4  
  2         97  
6              
7 2     2   578 use Yahoo::Marketing::Role;
  0            
  0            
8             use base qw/Yahoo::Marketing::ComplexType/;
9              
10             =head1 NAME
11              
12             Yahoo::Marketing::Authorization - an object to represent an association between a role and an account. The user is assumed to be known.
13              
14             =cut
15              
16             sub _user_setable_attributes {
17             return ( qw/
18             accountID
19             accountType
20             role
21             / );
22             }
23              
24             sub _read_only_attributes {
25             return ( qw/
26             / );
27             }
28              
29             __PACKAGE__->mk_accessors( __PACKAGE__->_user_setable_attributes,
30             __PACKAGE__->_read_only_attributes
31             );
32              
33              
34             1;
35             =head1 SYNOPSIS
36              
37             See L for documentation of the various data objects.
38              
39              
40             =head2 new
41              
42             Creates a new instance
43              
44             =cut
45              
46             =head1 METHODS
47              
48             =head2 get/set methods
49              
50             =over 8
51              
52             accountID
53             accountType
54             role
55              
56             =back
57              
58             =head2 get (read only) methods
59              
60             =over 8
61              
62              
63             =back
64              
65             =cut
66