1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.rice.kim.bo.entity.dto; |
17 |
|
|
18 |
|
import org.kuali.rice.kim.bo.entity.KimPrincipal; |
19 |
|
|
20 |
|
|
21 |
|
|
22 |
|
@author |
23 |
|
|
|
|
| 0% |
Uncovered Elements: 29 (29) |
Complexity: 11 |
Complexity Density: 0.65 |
|
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 |
|
|
|
|
| 0% |
Uncovered Elements: 2 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
36 |
0
|
public KimPrincipalInfo() {... |
37 |
0
|
super(); |
38 |
0
|
active = true; |
39 |
|
} |
40 |
|
|
41 |
|
|
42 |
|
|
43 |
|
|
|
|
| 0% |
Uncovered Elements: 9 (9) |
Complexity: 2 |
Complexity Density: 0.29 |
|
44 |
0
|
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 |
58 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
59 |
0
|
public String getPrincipalId() {... |
60 |
0
|
return principalId; |
61 |
|
} |
62 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
63 |
0
|
public void setPrincipalId(String principalId) {... |
64 |
0
|
this.principalId = principalId; |
65 |
|
} |
66 |
|
|
67 |
|
|
68 |
|
@inheritDoc |
69 |
|
@see |
70 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
71 |
0
|
public String getPrincipalName() {... |
72 |
0
|
return principalName; |
73 |
|
} |
74 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
75 |
0
|
public void setPrincipalName(String principalName) {... |
76 |
0
|
this.principalName = principalName; |
77 |
|
} |
78 |
|
|
79 |
|
|
80 |
|
@inheritDoc |
81 |
|
@see |
82 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
83 |
0
|
public String getEntityId() {... |
84 |
0
|
return entityId; |
85 |
|
} |
86 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
87 |
0
|
public void setEntityId(String entityId) {... |
88 |
0
|
this.entityId = entityId; |
89 |
|
} |
90 |
|
|
91 |
|
|
92 |
|
@inheritDoc |
93 |
|
@see |
94 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
95 |
0
|
public String getPassword() {... |
96 |
0
|
return password; |
97 |
|
} |
98 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
99 |
0
|
public void setPassword(String password) {... |
100 |
0
|
this.password = password; |
101 |
|
} |
102 |
|
} |