| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
package org.kuali.rice.kim.bo.types.dto; |
| 17 | |
|
| 18 | |
import java.io.Serializable; |
| 19 | |
import org.apache.commons.lang.builder.ToStringBuilder; |
| 20 | |
import org.apache.commons.lang.builder.ToStringStyle; |
| 21 | |
|
| 22 | |
|
| 23 | |
|
| 24 | |
|
| 25 | |
|
| 26 | |
|
| 27 | |
|
| 28 | 0 | public class KimTypeAttributeInfo implements Serializable { |
| 29 | |
private static final long serialVersionUID = 5069578471162433850L; |
| 30 | |
protected String sortCode; |
| 31 | |
protected String attributeName; |
| 32 | |
protected String namespaceCode; |
| 33 | |
protected String attributeLabel; |
| 34 | |
protected String componentName; |
| 35 | |
protected String kimAttributeId; |
| 36 | |
|
| 37 | |
public String getSortCode() { |
| 38 | 0 | return this.sortCode; |
| 39 | |
} |
| 40 | |
public void setSortCode(String sortCode) { |
| 41 | 0 | this.sortCode = sortCode; |
| 42 | 0 | } |
| 43 | |
public String getAttributeName() { |
| 44 | 0 | return this.attributeName; |
| 45 | |
} |
| 46 | |
public void setAttributeName(String attributeName) { |
| 47 | 0 | this.attributeName = attributeName; |
| 48 | 0 | } |
| 49 | |
public String getNamespaceCode() { |
| 50 | 0 | return this.namespaceCode; |
| 51 | |
} |
| 52 | |
public void setNamespaceCode(String namespaceCode) { |
| 53 | 0 | this.namespaceCode = namespaceCode; |
| 54 | 0 | } |
| 55 | |
public String getAttributeLabel() { |
| 56 | 0 | return this.attributeLabel; |
| 57 | |
} |
| 58 | |
public void setAttributeLabel(String attributeLabel) { |
| 59 | 0 | this.attributeLabel = attributeLabel; |
| 60 | 0 | } |
| 61 | |
public String getComponentName() { |
| 62 | 0 | return this.componentName; |
| 63 | |
} |
| 64 | |
public void setComponentName(String componentName) { |
| 65 | 0 | this.componentName = componentName; |
| 66 | 0 | } |
| 67 | |
public String getKimAttributeId() { |
| 68 | 0 | return this.kimAttributeId; |
| 69 | |
} |
| 70 | |
public void setKimAttributeId(String kimAttributeId) { |
| 71 | 0 | this.kimAttributeId = kimAttributeId; |
| 72 | 0 | } |
| 73 | |
|
| 74 | |
|
| 75 | |
|
| 76 | |
public String toString() { |
| 77 | 0 | return new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE) |
| 78 | |
.append("attributeName", this.attributeName) |
| 79 | |
.append("componentName",this.componentName) |
| 80 | |
.append("kimAttributeId",this.kimAttributeId) |
| 81 | |
.append("namespaceCode", this.namespaceCode) |
| 82 | |
.append("sortCode",this.sortCode) |
| 83 | |
.append("attributeLabel",this.attributeLabel) |
| 84 | |
.toString(); |
| 85 | |
} |
| 86 | |
|
| 87 | |
} |