Clover Coverage Report - API 2.0.0-SNAPSHOT
Coverage timestamp: Wed Dec 31 1969 19:00:00 EST
../../../../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
17   102   11   1.7
2   47   0.65   10
10     1.1  
1    
 
  KimPrincipalInfo       Line # 24 17 0% 11 29 0% 0.0
 
No Tests
 
1    /*
2    * Copyright 2007-2009 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10    * Unless required by applicable law or agreed to in writing, software
11    * distributed under the License is distributed on an "AS IS" BASIS,
12    * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13    * See the License for the specific language governing permissions and
14    * limitations under the License.
15    */
16    package org.kuali.rice.kim.bo.entity.dto;
17   
18    import org.kuali.rice.kim.bo.entity.KimPrincipal;
19   
20    /**
21    * DTO for a principal associated with a KIM entity
22    * @author Kuali Rice Team (rice.collab@kuali.org)
23    */
 
24    public class KimPrincipalInfo extends KimInactivatableInfo implements KimPrincipal {
25   
26    private static final long serialVersionUID = 4480581610252159266L;
27   
28    private String principalId;
29    private String principalName;
30    private String entityId;
31    private String password;
32   
33    /**
34    *
35    */
 
36  0 toggle public KimPrincipalInfo() {
37  0 super();
38  0 active = true;
39    }
40   
41    /**
42    *
43    */
 
44  0 toggle public KimPrincipalInfo( KimPrincipal p ) {
45  0 this();
46  0 if ( p != null ) {
47  0 principalId = p.getPrincipalId();
48  0 entityId = p.getEntityId();
49  0 principalName = p.getPrincipalName();
50  0 password = p.getPassword();
51  0 active = p.isActive();
52    }
53    }
54   
55    /**
56    * {@inheritDoc}
57    * @see org.kuali.rice.kim.bo.entity.KimPrincipal#getPrincipalId()
58    */
 
59  0 toggle public String getPrincipalId() {
60  0 return principalId;
61    }
62   
 
63  0 toggle public void setPrincipalId(String principalId) {
64  0 this.principalId = principalId;
65    }
66   
67    /**
68    * {@inheritDoc}
69    * @see org.kuali.rice.kim.bo.entity.KimPrincipal#getPrincipalName()
70    */
 
71  0 toggle public String getPrincipalName() {
72  0 return principalName;
73    }
74   
 
75  0 toggle public void setPrincipalName(String principalName) {
76  0 this.principalName = principalName;
77    }
78   
79    /**
80    * {@inheritDoc}
81    * @see org.kuali.rice.kim.bo.entity.KimPrincipal#getEntityId()
82    */
 
83  0 toggle public String getEntityId() {
84  0 return entityId;
85    }
86   
 
87  0 toggle public void setEntityId(String entityId) {
88  0 this.entityId = entityId;
89    }
90   
91    /**
92    * {@inheritDoc}
93    * @see org.kuali.rice.kim.bo.entity.KimPrincipal#getPassword()
94    */
 
95  0 toggle public String getPassword() {
96  0 return password;
97    }
98   
 
99  0 toggle public void setPassword(String password) {
100  0 this.password = password;
101    }
102    }