Clover Coverage Report
Coverage timestamp: Sun Mar 23 2008 08:24:39 GMT
13   147   1   1.44
0   45   0.69   9
9     1  
1    
 
 
  DecisionRecord       Line # 64 13 1 86.4% 0.8636364
 
No Tests
 
1    /*
2    * Copyright (c) 2006, University of Kent
3    * All rights reserved.
4    *
5    * Redistribution and use in source and binary forms, with or without
6    * modification, are permitted provided that the following conditions are met:
7    *
8    * Redistributions of source code must retain the above copyright notice, this
9    * list of conditions and the following disclaimer.
10    *
11    * Redistributions in binary form must reproduce the above copyright notice,
12    * this list of conditions and the following disclaimer in the documentation
13    * and/or other materials provided with the distribution.
14    *
15    * 1. Neither the name of the University of Kent nor the names of its
16    * contributors may be used to endorse or promote products derived from this
17    * software without specific prior written permission.
18    *
19    * 2. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
20    * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
21    * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22    * PURPOSE ARE DISCLAIMED.
23    *
24    * 3. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
25    * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26    * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27    * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28    * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29    * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30    * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31    * POSSIBILITY OF SUCH DAMAGE.
32    *
33    * 4. YOU AGREE THAT THE EXCLUSIONS IN PARAGRAPHS 2 AND 3 ABOVE ARE REASONABLE
34    * IN THE CIRCUMSTANCES. IN PARTICULAR, YOU ACKNOWLEDGE (1) THAT THIS
35    * SOFTWARE HAS BEEN MADE AVAILABLE TO YOU FREE OF CHARGE, (2) THAT THIS
36    * SOFTWARE IS NOT "PRODUCT" QUALITY, BUT HAS BEEN PRODUCED BY A RESEARCH
37    * GROUP WHO DESIRE TO MAKE THIS SOFTWARE FREELY AVAILABLE TO PEOPLE WHO WISH
38    * TO USE IT, AND (3) THAT BECAUSE THIS SOFTWARE IS NOT OF "PRODUCT" QUALITY
39    * IT IS INEVITABLE THAT THERE WILL BE BUGS AND ERRORS, AND POSSIBLY MORE
40    * SERIOUS FAULTS, IN THIS SOFTWARE.
41    *
42    * 5. This license is governed, except to the extent that local laws
43    * necessarily apply, by the laws of England and Wales.
44    */
45   
46    package issrg.pba.rbac;
47   
48    import issrg.pba.PbaException;
49    import issrg.pba.rbac.*;
50    import issrg.pba.Credentials;
51    import java.io.*;
52    import java.util.*;
53   
54    /**
55    * This is the class for holding a granted decision record. It will be put
56    * into the retained ADI.
57    * it contains 6 fields: userID, creds, action, target, contextInstance,
58    * dateTime.
59    *
60    * @author W. Xu
61    * @version 0.1
62    */
63   
 
64    public class DecisionRecord {
 
65  0 toggle public DecisionRecord(){}
66   
67    /**
68    * This constructor builds the object out of userID, creds, action, target,
69    * contextInstance, dateTime.
70    *
71    * @params userID is the userID
72    * @params creds is the user Credentials
73    * @params action is the user action
74    * @params target is the requested target
75    * @params contextInstance is the context name which the access request
76    * belong to
77    * @params dateTime is the time and date of the access request.
78    */
 
79  39 toggle public DecisionRecord(String userID, Credentials creds,
80    String action, String target, String contextInstance,
81    Date dateTime){
82  39 this.userID = userID;
83  39 this.creds = creds;
84  39 this.action = action;
85  39 this.target = target;
86  39 this.contextInstance = contextInstance;
87  39 this.dateTime = dateTime;
88    }
89   
90    /**
91    * This method returns the userDI.
92    */
 
93  18 toggle public String getUserID(){
94  18 return userID;
95    }
96   
97    /**
98    * This method returns the Credentials.
99    */
 
100  31 toggle public Credentials getCreds() {
101  31 return creds;
102    }
103   
104    /**
105    * This method returns the Action.
106    */
 
107  46 toggle public String getAction(){
108  46 return action;
109    }
110   
111    /**
112    * This method returns the Target.
113    */
 
114  46 toggle public String getTarget(){
115  46 return target;
116    }
117   
118    /**
119    * This method returns the context instance in String format.
120    */
 
121  239 toggle public String getContextInstance(){
122  239 return contextInstance;
123    }
124   
125    /**
126    * This method returns the DateTime as a Date class.
127    */
 
128  18 toggle public Date getDateTime(){
129  18 return dateTime;
130    }
131   
132    /**
133    * This method returns a string of contextInstance, userID, target, action.
134    */
 
135  0 toggle public String toString(){
136  0 return " " + contextInstance + " " + userID + " " + target + " " + action;
137    }
138   
139    public String userID;
140    public Credentials creds;
141    public String action, target;
142    public String contextInstance;
143    public Date dateTime;
144   
145    }
146   
147