1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kim.bo.types.impl; |
17 | |
|
18 | |
import java.util.LinkedHashMap; |
19 | |
|
20 | |
import javax.persistence.Column; |
21 | |
import javax.persistence.Entity; |
22 | |
import javax.persistence.Id; |
23 | |
import javax.persistence.Table; |
24 | |
|
25 | |
import org.kuali.rice.kns.bo.PersistableBusinessObjectBase; |
26 | |
|
27 | |
|
28 | |
|
29 | |
|
30 | |
@Entity |
31 | |
@Table(name="KRIM_ATTR_DEFN_T") |
32 | 0 | public class KimAttributeImpl extends PersistableBusinessObjectBase { |
33 | |
|
34 | |
private static final long serialVersionUID = 1L; |
35 | |
|
36 | |
@Id |
37 | |
@Column(name="KIM_ATTR_DEFN_ID") |
38 | |
protected String kimAttributeId; |
39 | |
@Column(name="NM") |
40 | |
protected String attributeName; |
41 | |
@Column(name="NMSPC_CD") |
42 | |
protected String namespaceCode; |
43 | |
@Column(name="LBL") |
44 | |
protected String attributeLabel; |
45 | |
@Column(name="ACTV_IND") |
46 | |
protected boolean active; |
47 | |
@Column(name="CMPNT_NM") |
48 | |
protected String componentName; |
49 | |
|
50 | |
public String getKimAttributeId() { |
51 | 0 | return kimAttributeId; |
52 | |
} |
53 | |
|
54 | |
public String getAttributeName() { |
55 | 0 | return attributeName; |
56 | |
} |
57 | |
|
58 | |
public void setAttributeName(String attributeName) { |
59 | 0 | this.attributeName = attributeName; |
60 | 0 | } |
61 | |
|
62 | |
public boolean isActive() { |
63 | 0 | return active; |
64 | |
} |
65 | |
|
66 | |
public void setActive(boolean active) { |
67 | 0 | this.active = active; |
68 | 0 | } |
69 | |
|
70 | |
public String getAttributeLabel() { |
71 | 0 | return this.attributeLabel; |
72 | |
} |
73 | |
|
74 | |
public void setAttributeLabel(String attributeLabel) { |
75 | 0 | this.attributeLabel = attributeLabel; |
76 | 0 | } |
77 | |
|
78 | |
public void setKimAttributeId(String kimAttributeId) { |
79 | 0 | this.kimAttributeId = kimAttributeId; |
80 | 0 | } |
81 | |
|
82 | |
public String getNamespaceCode() { |
83 | 0 | return this.namespaceCode; |
84 | |
} |
85 | |
|
86 | |
public void setNamespaceCode(String namespaceCode) { |
87 | 0 | this.namespaceCode = namespaceCode; |
88 | 0 | } |
89 | |
|
90 | |
public String getComponentName() { |
91 | 0 | return this.componentName; |
92 | |
} |
93 | |
|
94 | |
public void setComponentName(String componentName) { |
95 | 0 | this.componentName = componentName; |
96 | 0 | } |
97 | |
|
98 | |
|
99 | |
|
100 | |
|
101 | |
@SuppressWarnings("unchecked") |
102 | |
@Override |
103 | |
protected LinkedHashMap toStringMapper() { |
104 | 0 | LinkedHashMap m = new LinkedHashMap(); |
105 | 0 | m.put( "attributeId", kimAttributeId ); |
106 | 0 | m.put( "attributeName", attributeName ); |
107 | 0 | m.put( "componentName", componentName ); |
108 | 0 | return m; |
109 | |
} |
110 | |
|
111 | |
} |