File Coverage

blib/lib/Yahoo/Marketing/UserAuthorization.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::UserAuthorization;
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   52847 use strict; use warnings;
  2     2   6  
  2         183  
  2         12  
  2         6  
  2         51  
6              
7 2     2   519 use Yahoo::Marketing::Role;
  0            
  0            
8             use base qw/Yahoo::Marketing::ComplexType/;
9              
10             =head1 NAME
11              
12             Yahoo::Marketing::UserAuthorization - an object to represent an association between a User, a Role and an Account.
13              
14             =cut
15              
16             sub _user_setable_attributes {
17             return ( qw/
18             accountID
19             role
20             username
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              
35              
36             1;
37             =head1 SYNOPSIS
38              
39             See L for documentation of the various data objects.
40              
41              
42             =head2 new
43              
44             Creates a new instance
45              
46             =cut
47              
48             =head1 METHODS
49              
50             =head2 get/set methods
51              
52             =over 8
53              
54             accountID
55             role
56             username
57              
58             =back
59              
60             =head2 get (read only) methods
61              
62             =over 8
63              
64              
65             =back
66              
67             =cut
68