1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.rice.kim.bo.entity.impl; |
17 |
|
|
18 |
|
import org.hibernate.annotations.GenericGenerator; |
19 |
|
import org.hibernate.annotations.Parameter; |
20 |
|
import org.kuali.rice.kim.bo.entity.KimEntityVisa; |
21 |
|
|
22 |
|
import javax.persistence.*; |
23 |
|
|
24 |
|
|
25 |
|
|
26 |
|
|
27 |
|
@author |
28 |
|
|
29 |
|
|
30 |
|
@Entity |
31 |
|
@Table(name = "KRIM_ENTITY_VISA_T") |
|
|
| 0% |
Uncovered Elements: 20 (20) |
Complexity: 10 |
Complexity Density: 1 |
|
32 |
|
public class KimEntityVisaImpl extends KimEntityDataBase implements KimEntityVisa { |
33 |
|
|
34 |
|
private static final long serialVersionUID = 3067809653175495621L; |
35 |
|
|
36 |
|
@Id |
37 |
|
@GeneratedValue(generator="KRIM_ENTITY_VISA_ID_S") |
38 |
|
@GenericGenerator(name="KRIM_ENTITY_VISA_ID_S",strategy="org.kuali.rice.core.jpa.spring.RiceNumericStringSequenceStyleGenerator",parameters={ |
39 |
|
@Parameter(name="sequence_name",value="KRIM_ENTITY_VISA_ID_S"), |
40 |
|
@Parameter(name="value_column",value="id") |
41 |
|
}) |
42 |
|
@Column(name = "ID") |
43 |
|
private String id; |
44 |
|
|
45 |
|
@Column(name = "ENTITY_ID") |
46 |
|
private String entityId; |
47 |
|
|
48 |
|
@Column(name = "VISA_TYPE_KEY") |
49 |
|
private String visaTypeKey; |
50 |
|
|
51 |
|
@Column(name = "VISA_ENTRY") |
52 |
|
private String visaEntry; |
53 |
|
|
54 |
|
@Column(name = "VISA_ID") |
55 |
|
private String visaId; |
56 |
|
|
57 |
|
|
58 |
|
@see |
59 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
60 |
0
|
public String getId() {... |
61 |
0
|
return id; |
62 |
|
} |
63 |
|
|
64 |
|
|
65 |
|
@see |
66 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
67 |
0
|
public String getEntityId() {... |
68 |
0
|
return entityId; |
69 |
|
} |
70 |
|
|
71 |
|
|
72 |
|
@see |
73 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
74 |
0
|
public String getVisaEntry() {... |
75 |
0
|
return visaEntry; |
76 |
|
} |
77 |
|
|
78 |
|
|
79 |
|
@see |
80 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
81 |
0
|
public String getVisaId() {... |
82 |
0
|
return visaId; |
83 |
|
} |
84 |
|
|
85 |
|
|
86 |
|
@see |
87 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
88 |
0
|
public String getVisaTypeKey() {... |
89 |
0
|
return visaTypeKey; |
90 |
|
} |
91 |
|
|
92 |
|
|
93 |
|
@param |
94 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
95 |
0
|
public void setId(String id) {... |
96 |
0
|
this.id = id; |
97 |
|
} |
98 |
|
|
99 |
|
|
100 |
|
@param |
101 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
102 |
0
|
public void setEntityId(String entityId) {... |
103 |
0
|
this.entityId = entityId; |
104 |
|
} |
105 |
|
|
106 |
|
|
107 |
|
@param |
108 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
109 |
0
|
public void setVisaTypeKey(String visaTypeKey) {... |
110 |
0
|
this.visaTypeKey = visaTypeKey; |
111 |
|
} |
112 |
|
|
113 |
|
|
114 |
|
@param |
115 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
116 |
0
|
public void setVisaEntry(String visaEntry) {... |
117 |
0
|
this.visaEntry = visaEntry; |
118 |
|
} |
119 |
|
|
120 |
|
|
121 |
|
@param |
122 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
123 |
0
|
public void setVisaId(String visaId) {... |
124 |
0
|
this.visaId = visaId; |
125 |
|
} |
126 |
|
} |