package webctdbexport.db; // Generated 17-Jun-2011 11:38:57 by Hibernate Tools 3.4.0.CR1 import java.math.BigDecimal; import java.sql.Blob; import javax.persistence.Column; import javax.persistence.Embeddable; /** * SettingsVId generated by hbm2java */ @Embeddable public class SettingsVId implements java.io.Serializable { private String groupName; private BigDecimal groupId; private Byte groupType; private String groupLabel; private String groupJmxBean; private BigDecimal groupHelpId; private Boolean groupHiddenFlag; private String groupCategory; private String settingName; private BigDecimal settingId; private String settingLabel; private Byte dataType; private Byte presentationType; private Boolean inheritableFlag; private Boolean optionalFlag; private Boolean readOnlyFlag; private String dataRange; private String defaultValue; private Blob defaultValueBlob; private Boolean hiddenFlag; private BigDecimal lcId; private BigDecimal valueId; private String settingValue; private Blob settingValueBlob; private BigDecimal defaultValueFlag; private BigDecimal inheritedLcId; private BigDecimal lockedLcId; private BigDecimal lastmodifyTs; public SettingsVId() { } public SettingsVId(String groupName, BigDecimal groupId, Byte groupType, String groupLabel, String groupJmxBean, BigDecimal groupHelpId, Boolean groupHiddenFlag, String groupCategory, String settingName, BigDecimal settingId, String settingLabel, Byte dataType, Byte presentationType, Boolean inheritableFlag, Boolean optionalFlag, Boolean readOnlyFlag, String dataRange, String defaultValue, Blob defaultValueBlob, Boolean hiddenFlag, BigDecimal lcId, BigDecimal valueId, String settingValue, Blob settingValueBlob, BigDecimal defaultValueFlag, BigDecimal inheritedLcId, BigDecimal lockedLcId, BigDecimal lastmodifyTs) { this.groupName = groupName; this.groupId = groupId; this.groupType = groupType; this.groupLabel = groupLabel; this.groupJmxBean = groupJmxBean; this.groupHelpId = groupHelpId; this.groupHiddenFlag = groupHiddenFlag; this.groupCategory = groupCategory; this.settingName = settingName; this.settingId = settingId; this.settingLabel = settingLabel; this.dataType = dataType; this.presentationType = presentationType; this.inheritableFlag = inheritableFlag; this.optionalFlag = optionalFlag; this.readOnlyFlag = readOnlyFlag; this.dataRange = dataRange; this.defaultValue = defaultValue; this.defaultValueBlob = defaultValueBlob; this.hiddenFlag = hiddenFlag; this.lcId = lcId; this.valueId = valueId; this.settingValue = settingValue; this.settingValueBlob = settingValueBlob; this.defaultValueFlag = defaultValueFlag; this.inheritedLcId = inheritedLcId; this.lockedLcId = lockedLcId; this.lastmodifyTs = lastmodifyTs; } @Column(name="GROUP_NAME", nullable=false, length=800) public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } @Column(name="GROUP_ID", nullable=false, precision=20, scale=0) public BigDecimal getGroupId() { return this.groupId; } public void setGroupId(BigDecimal groupId) { this.groupId = groupId; } @Column(name="GROUP_TYPE", nullable=false, precision=2, scale=0) public Byte getGroupType() { return this.groupType; } public void setGroupType(Byte groupType) { this.groupType = groupType; } @Column(name="GROUP_LABEL", nullable=false, length=1000) public String getGroupLabel() { return this.groupLabel; } public void setGroupLabel(String groupLabel) { this.groupLabel = groupLabel; } @Column(name="GROUP_JMX_BEAN", nullable=false, length=1000) public String getGroupJmxBean() { return this.groupJmxBean; } public void setGroupJmxBean(String groupJmxBean) { this.groupJmxBean = groupJmxBean; } @Column(name="GROUP_HELP_ID", nullable=false, precision=20, scale=0) public BigDecimal getGroupHelpId() { return this.groupHelpId; } public void setGroupHelpId(BigDecimal groupHelpId) { this.groupHelpId = groupHelpId; } @Column(name="GROUP_HIDDEN_FLAG", nullable=false, precision=1, scale=0) public Boolean getGroupHiddenFlag() { return this.groupHiddenFlag; } public void setGroupHiddenFlag(Boolean groupHiddenFlag) { this.groupHiddenFlag = groupHiddenFlag; } @Column(name="GROUP_CATEGORY", nullable=false, length=800) public String getGroupCategory() { return this.groupCategory; } public void setGroupCategory(String groupCategory) { this.groupCategory = groupCategory; } @Column(name="SETTING_NAME", nullable=false, length=1000) public String getSettingName() { return this.settingName; } public void setSettingName(String settingName) { this.settingName = settingName; } @Column(name="SETTING_ID", nullable=false, precision=20, scale=0) public BigDecimal getSettingId() { return this.settingId; } public void setSettingId(BigDecimal settingId) { this.settingId = settingId; } @Column(name="SETTING_LABEL", nullable=false, length=1000) public String getSettingLabel() { return this.settingLabel; } public void setSettingLabel(String settingLabel) { this.settingLabel = settingLabel; } @Column(name="DATA_TYPE", nullable=false, precision=2, scale=0) public Byte getDataType() { return this.dataType; } public void setDataType(Byte dataType) { this.dataType = dataType; } @Column(name="PRESENTATION_TYPE", nullable=false, precision=2, scale=0) public Byte getPresentationType() { return this.presentationType; } public void setPresentationType(Byte presentationType) { this.presentationType = presentationType; } @Column(name="INHERITABLE_FLAG", nullable=false, precision=1, scale=0) public Boolean getInheritableFlag() { return this.inheritableFlag; } public void setInheritableFlag(Boolean inheritableFlag) { this.inheritableFlag = inheritableFlag; } @Column(name="OPTIONAL_FLAG", nullable=false, precision=1, scale=0) public Boolean getOptionalFlag() { return this.optionalFlag; } public void setOptionalFlag(Boolean optionalFlag) { this.optionalFlag = optionalFlag; } @Column(name="READ_ONLY_FLAG", nullable=false, precision=1, scale=0) public Boolean getReadOnlyFlag() { return this.readOnlyFlag; } public void setReadOnlyFlag(Boolean readOnlyFlag) { this.readOnlyFlag = readOnlyFlag; } @Column(name="DATA_RANGE", nullable=false, length=4000) public String getDataRange() { return this.dataRange; } public void setDataRange(String dataRange) { this.dataRange = dataRange; } @Column(name="DEFAULT_VALUE", nullable=false, length=1000) public String getDefaultValue() { return this.defaultValue; } public void setDefaultValue(String defaultValue) { this.defaultValue = defaultValue; } @Column(name="DEFAULT_VALUE_BLOB", nullable=false) public Blob getDefaultValueBlob() { return this.defaultValueBlob; } public void setDefaultValueBlob(Blob defaultValueBlob) { this.defaultValueBlob = defaultValueBlob; } @Column(name="HIDDEN_FLAG", nullable=false, precision=1, scale=0) public Boolean getHiddenFlag() { return this.hiddenFlag; } public void setHiddenFlag(Boolean hiddenFlag) { this.hiddenFlag = hiddenFlag; } @Column(name="LC_ID", nullable=false, precision=20, scale=0) public BigDecimal getLcId() { return this.lcId; } public void setLcId(BigDecimal lcId) { this.lcId = lcId; } @Column(name="VALUE_ID", nullable=false, precision=22, scale=0) public BigDecimal getValueId() { return this.valueId; } public void setValueId(BigDecimal valueId) { this.valueId = valueId; } @Column(name="SETTING_VALUE", nullable=false, length=1000) public String getSettingValue() { return this.settingValue; } public void setSettingValue(String settingValue) { this.settingValue = settingValue; } @Column(name="SETTING_VALUE_BLOB", nullable=false) public Blob getSettingValueBlob() { return this.settingValueBlob; } public void setSettingValueBlob(Blob settingValueBlob) { this.settingValueBlob = settingValueBlob; } @Column(name="DEFAULT_VALUE_FLAG", nullable=false, precision=22, scale=0) public BigDecimal getDefaultValueFlag() { return this.defaultValueFlag; } public void setDefaultValueFlag(BigDecimal defaultValueFlag) { this.defaultValueFlag = defaultValueFlag; } @Column(name="INHERITED_LC_ID", nullable=false, precision=22, scale=0) public BigDecimal getInheritedLcId() { return this.inheritedLcId; } public void setInheritedLcId(BigDecimal inheritedLcId) { this.inheritedLcId = inheritedLcId; } @Column(name="LOCKED_LC_ID", nullable=false, precision=22, scale=0) public BigDecimal getLockedLcId() { return this.lockedLcId; } public void setLockedLcId(BigDecimal lockedLcId) { this.lockedLcId = lockedLcId; } @Column(name="LASTMODIFY_TS", nullable=false, precision=22, scale=0) public BigDecimal getLastmodifyTs() { return this.lastmodifyTs; } public void setLastmodifyTs(BigDecimal lastmodifyTs) { this.lastmodifyTs = lastmodifyTs; } }