Package org.cyclos.entities.access
Class Password
- java.lang.Object
-
- org.cyclos.entities.SimpleEntity
-
- org.cyclos.entities.NetworkedEntity
-
- org.cyclos.entities.BaseEntity
-
- org.cyclos.entities.access.Password
-
- All Implemented Interfaces:
Cloneable,HasNetwork,ProcessableForProxying,IEntity
@Entity public class Password extends BaseEntity
Stores a user's password for a password type
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.cyclos.entities.SimpleEntity
SimpleEntity.EntityLoadNotifier
-
-
Constructor Summary
Constructors Constructor Description Password()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DategetBlockedUntil()DategetDate()NetworkgetNetwork()Returns the network this entity belongs toPasswordStatusgetStatus()PasswordTypegetType()BasicUsergetUser()StringgetValue()voidsetBlockedUntil(Date blockedUntil)voidsetDate(Date date)voidsetStatus(PasswordStatus status)voidsetType(PasswordType type)voidsetUser(BasicUser user)voidsetValue(String value)-
Methods inherited from class org.cyclos.entities.BaseEntity
getDataTranslationType, getVersion
-
Methods inherited from class org.cyclos.entities.NetworkedEntity
isGlobal
-
Methods inherited from class org.cyclos.entities.SimpleEntity
equals, getId, hashCode, id, ids, isPersistent, isTransient, register, setId, toShortString, toString, uniqueIds, uniqueIds
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.cyclos.entities.ProcessableForProxying
getProxyClass
-
-
-
-
Method Detail
-
getBlockedUntil
public Date getBlockedUntil()
-
getDate
public Date getDate()
-
getNetwork
public Network getNetwork()
Description copied from interface:HasNetworkReturns the network this entity belongs to
-
getStatus
public PasswordStatus getStatus()
-
getType
public PasswordType getType()
-
getUser
public BasicUser getUser()
-
getValue
public String getValue()
-
setBlockedUntil
public void setBlockedUntil(Date blockedUntil)
-
setDate
public void setDate(Date date)
-
setStatus
public void setStatus(PasswordStatus status)
-
setType
public void setType(PasswordType type)
-
setUser
public void setUser(BasicUser user)
-
setValue
public void setValue(String value)
-
-