1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.rice.kcb.bo; |
17 |
|
|
18 |
|
|
19 |
|
import javax.persistence.Column; |
20 |
|
import javax.persistence.Entity; |
21 |
|
import javax.persistence.Id; |
22 |
|
import javax.persistence.Table; |
23 |
|
import javax.persistence.Version; |
24 |
|
|
25 |
|
import org.apache.commons.lang.builder.ToStringBuilder; |
26 |
|
|
27 |
|
|
28 |
|
|
29 |
|
|
30 |
|
|
31 |
|
@author |
32 |
|
|
33 |
|
@Entity |
34 |
|
@Table(name="KREN_RECIP_PREFS_T") |
|
|
| 0% |
Uncovered Elements: 22 (22) |
Complexity: 11 |
Complexity Density: 1 |
|
35 |
|
public class RecipientPreference { |
36 |
|
|
37 |
|
|
38 |
|
|
39 |
|
|
40 |
|
public static final String RECIPIENT_FIELD = "recipientId"; |
41 |
|
public static final String PROPERTY_FIELD = "property"; |
42 |
|
|
43 |
|
@Id |
44 |
|
@Column(name="RECIP_PREFS_ID") |
45 |
|
private Long id; |
46 |
|
@Column(name="RECIP_ID", nullable=false) |
47 |
|
private String recipientId; |
48 |
|
@Column(name="PROP", nullable=false) |
49 |
|
private String property; |
50 |
|
@Column(name="VAL", nullable=true) |
51 |
|
private String value; |
52 |
|
|
53 |
|
|
54 |
|
|
55 |
|
|
56 |
|
@Version |
57 |
|
@Column(name="VER_NBR") |
58 |
|
private Integer lockVerNbr; |
59 |
|
|
60 |
|
|
61 |
|
|
62 |
|
@return |
63 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
64 |
0
|
public Long getId() {... |
65 |
0
|
return id; |
66 |
|
} |
67 |
|
|
68 |
|
|
69 |
|
|
70 |
|
@param |
71 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
72 |
0
|
public void setId(Long id) {... |
73 |
0
|
this.id = id; |
74 |
|
} |
75 |
|
|
76 |
|
|
77 |
|
|
78 |
|
@return |
79 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
80 |
0
|
public String getProperty() {... |
81 |
0
|
return property; |
82 |
|
} |
83 |
|
|
84 |
|
|
85 |
|
|
86 |
|
@param |
87 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
88 |
0
|
public void setProperty(String property) {... |
89 |
0
|
this.property = property; |
90 |
|
} |
91 |
|
|
92 |
|
|
93 |
|
|
94 |
|
@return |
95 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
96 |
0
|
public String getRecipientId() {... |
97 |
0
|
return recipientId; |
98 |
|
} |
99 |
|
|
100 |
|
|
101 |
|
|
102 |
|
@param |
103 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
104 |
0
|
public void setRecipientId(String recipientId) {... |
105 |
0
|
this.recipientId = recipientId; |
106 |
|
} |
107 |
|
|
108 |
|
|
109 |
|
|
110 |
|
@return |
111 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
112 |
0
|
public String getValue() {... |
113 |
0
|
return value; |
114 |
|
} |
115 |
|
|
116 |
|
|
117 |
|
|
118 |
|
@param |
119 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
120 |
0
|
public void setValue(String value) {... |
121 |
0
|
this.value = value; |
122 |
|
} |
123 |
|
|
124 |
|
|
125 |
|
|
126 |
|
@return |
127 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
128 |
0
|
public Integer getLockVerNbr() {... |
129 |
0
|
return lockVerNbr; |
130 |
|
} |
131 |
|
|
132 |
|
|
133 |
|
|
134 |
|
@param |
135 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
136 |
0
|
public void setLockVerNbr(Integer lockVerNbr) {... |
137 |
0
|
this.lockVerNbr = lockVerNbr; |
138 |
|
} |
139 |
|
|
140 |
|
|
141 |
|
@see |
142 |
|
|
143 |
|
|
144 |
|
|
145 |
|
|
146 |
|
|
147 |
|
|
148 |
|
|
149 |
|
@see |
150 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
151 |
0
|
@Override... |
152 |
|
public String toString() { |
153 |
0
|
return new ToStringBuilder(this) |
154 |
|
.append("id", id) |
155 |
|
.append("recipientId", recipientId) |
156 |
|
.append("property", property) |
157 |
|
.append("value", value) |
158 |
|
.append("lockVerNbr", lockVerNbr) |
159 |
|
.toString(); |
160 |
|
} |
161 |
|
} |