Package com.soffid.iam.model
Class SecretEntity
- java.lang.Object
-
- com.soffid.iam.model.SecretEntity
-
- Direct Known Subclasses:
SecretEntityImpl
public abstract class SecretEntity extends Object
Entity SecretEntity
-
-
Constructor Summary
Constructors Constructor Description SecretEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object object)
Returnstrue
if the argument is an SecretEntity instance and all identifiers for this entity equal the identifiers of the argument entity.Long
getId()
Gets value for attribute idbyte[]
getSecrets()
Gets value for attribute secretsServerEntity
getServer()
Gets value for attribute serverUserEntity
getUser()
Gets value for attribute userint
hashCode()
Returns a hash code based on this entity's identifiers.void
setId(Long id)
Sets value for attribute idvoid
setSecrets(byte[] secrets)
Sets value for attribute secretsvoid
setServer(ServerEntity server)
Sets value for attribute servervoid
setUser(UserEntity user)
Sets value for attribute user
-
-
-
Method Detail
-
getServer
public ServerEntity getServer()
Gets value for attribute server
-
setServer
public void setServer(ServerEntity server)
Sets value for attribute server
-
getUser
public UserEntity getUser()
Gets value for attribute user
-
setUser
public void setUser(UserEntity user)
Sets value for attribute user
-
getId
public Long getId()
Gets value for attribute id
-
setId
public void setId(Long id)
Sets value for attribute id
-
getSecrets
public byte[] getSecrets()
Gets value for attribute secrets
-
setSecrets
public void setSecrets(byte[] secrets)
Sets value for attribute secrets
-
equals
public boolean equals(Object object)
Returnstrue
if the argument is an SecretEntity instance and all identifiers for this entity equal the identifiers of the argument entity. Returnsfalse
otherwise.
-
-