be.personify.iam.model.util.SystemProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of personify-model Show documentation
Show all versions of personify-model Show documentation
a possible model for personify
package be.personify.iam.model.util;
import java.io.Serializable;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.EnumType;
import javax.persistence.Enumerated;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Index;
import javax.persistence.Table;
import be.personify.util.generator.MetaInfo;
@Entity
@MetaInfo( group="vault", frontendGroup="Utility", name="SystemProperty", description="A system property",
number=22,iconClass = "comment-alt")
@Table(name="system_property", indexes = {
@Index(name = "idx_system_property_key", columnList = "kkey", unique=true)
})
public class SystemProperty extends Persisted implements Serializable{
private static final long serialVersionUID = 1797157339855588526L;
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@MetaInfo(name="id", description="the id of the system property", showInSearchResultGrid = false, searchable = false)
private long id;
@Column(name="kkey")
@MetaInfo(name="key", description="the unique key of the system property")
private String key;
@Column(name="vvalue")
@MetaInfo(name="value", description="the value of the system property" )
private String value;
@Enumerated( EnumType.STRING )
@Column(name="ttype")
@MetaInfo(name="type", description="the type of the system property ( STRING/PASSWORD )")
private SystemPropertyType type;
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public SystemPropertyType getType() {
return type;
}
public void setType(SystemPropertyType type) {
this.type = type;
}
@Override
public int hashCode() {
final int prime = 31;
int result = super.hashCode();
result = prime * result + (int) (id ^ (id >>> 32));
result = prime * result + ((key == null) ? 0 : key.hashCode());
result = prime * result + ((type == null) ? 0 : type.hashCode());
result = prime * result + ((value == null) ? 0 : value.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (!super.equals(obj))
return false;
if (getClass() != obj.getClass())
return false;
SystemProperty other = (SystemProperty) obj;
if (id != other.id)
return false;
if (key == null) {
if (other.key != null)
return false;
} else if (!key.equals(other.key))
return false;
if (type != other.type)
return false;
if (value == null) {
if (other.value != null)
return false;
} else if (!value.equals(other.value))
return false;
return true;
}
}