Package com.soffid.iam.model
Class ServerCertificateEntity
- java.lang.Object
-
- com.soffid.iam.model.ServerCertificateEntity
-
- Direct Known Subclasses:
ServerCertificateEntityImpl
public abstract class ServerCertificateEntity extends Object
Entity ServerCertificateEntity
-
-
Constructor Summary
Constructors Constructor Description ServerCertificateEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object object)
Returnstrue
if the argument is an ServerCertificateEntity instance and all identifiers for this entity equal the identifiers of the argument entity.byte[]
getCert()
Gets value for attribute certLong
getId()
Gets value for attribute idServerEntity
getServer()
Gets value for attribute serverDate
getSince()
Gets value for attribute sinceDate
getUntil()
Gets value for attribute untilint
hashCode()
Returns a hash code based on this entity's identifiers.void
setCert(byte[] cert)
Sets value for attribute certvoid
setId(Long id)
Sets value for attribute idvoid
setServer(ServerEntity server)
Sets value for attribute servervoid
setSince(Date since)
Sets value for attribute sincevoid
setUntil(Date until)
Sets value for attribute until
-
-
-
Method Detail
-
getServer
public ServerEntity getServer()
Gets value for attribute server
-
setServer
public void setServer(ServerEntity server)
Sets value for attribute server
-
getId
public Long getId()
Gets value for attribute id
-
setId
public void setId(Long id)
Sets value for attribute id
-
getCert
public byte[] getCert()
Gets value for attribute cert
-
setCert
public void setCert(byte[] cert)
Sets value for attribute cert
-
getSince
public Date getSince()
Gets value for attribute since
-
setSince
public void setSince(Date since)
Sets value for attribute since
-
getUntil
public Date getUntil()
Gets value for attribute until
-
setUntil
public void setUntil(Date until)
Sets value for attribute until
-
equals
public boolean equals(Object object)
Returnstrue
if the argument is an ServerCertificateEntity instance and all identifiers for this entity equal the identifiers of the argument entity. Returnsfalse
otherwise.
-
-