| 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 org.hibernate.annotations.Type; |
| 19 | |
import org.kuali.rice.kns.bo.PersistableBusinessObjectBase; |
| 20 | |
|
| 21 | |
import javax.persistence.Column; |
| 22 | |
import javax.persistence.Entity; |
| 23 | |
import javax.persistence.Id; |
| 24 | |
import javax.persistence.Table; |
| 25 | |
|
| 26 | |
|
| 27 | |
|
| 28 | |
|
| 29 | |
@Entity |
| 30 | |
@Table(name="KRIM_ATTR_DEFN_T") |
| 31 | 0 | public class KimAttributeImpl extends PersistableBusinessObjectBase { |
| 32 | |
|
| 33 | |
private static final long serialVersionUID = 1L; |
| 34 | |
|
| 35 | |
@Id |
| 36 | |
@Column(name="KIM_ATTR_DEFN_ID") |
| 37 | |
protected String kimAttributeId; |
| 38 | |
@Column(name="NM") |
| 39 | |
protected String attributeName; |
| 40 | |
@Column(name="NMSPC_CD") |
| 41 | |
protected String namespaceCode; |
| 42 | |
@Column(name="LBL") |
| 43 | |
protected String attributeLabel; |
| 44 | |
@Type(type="yes_no") |
| 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 | |
} |