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 booleanequals(Object object)Returnstrueif the argument is an SecretEntity instance and all identifiers for this entity equal the identifiers of the argument entity.LonggetId()Gets value for attribute idbyte[]getSecrets()Gets value for attribute secretsServerEntitygetServer()Gets value for attribute serverUserEntitygetUser()Gets value for attribute userinthashCode()Returns a hash code based on this entity's identifiers.voidsetId(Long id)Sets value for attribute idvoidsetSecrets(byte[] secrets)Sets value for attribute secretsvoidsetServer(ServerEntity server)Sets value for attribute servervoidsetUser(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)
Returnstrueif the argument is an SecretEntity instance and all identifiers for this entity equal the identifiers of the argument entity. Returnsfalseotherwise.
-
-