Package com.soffid.iam.api.sso
Class Secret
- java.lang.Object
-
- com.soffid.iam.api.sso.Secret
-
- All Implemented Interfaces:
Serializable
public class Secret extends Object implements Serializable
ValueObject Secret- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
Gets value for attribute namePassword
getValue()
Gets value for attribute valuevoid
setName(String name)
Sets value for attribute namevoid
setValue(Password value)
Sets value for attribute valuestatic Secret
toSecret(Secret vo)
Creates a Secret value object based on a Secret object.static void
toSecret(Secret source, Secret target)
Updates a Secret value object based on a Secret object.static Secret[]
toSecretArray(Secret[] source)
Creates a Secret array on a Secret array.static AsyncList<Secret>
toSecretAsyncList(AsyncList<Secret> source)
Creates a Secret asynclist on a Secret collection.static PagedResult<Secret>
toSecretList(PagedResult<Secret> source)
Creates a Secret pagedResult on a Secret collection.static List<Secret>
toSecretList(Collection<Secret> source)
Creates a Secret list on a Secret collection.String
toString()
Returns a string representation of the value object.
-
-
-
Method Detail
-
getName
public String getName()
Gets value for attribute name
-
setName
public void setName(String name)
Sets value for attribute name
-
getValue
public Password getValue()
Gets value for attribute value
-
setValue
public void setValue(Password value)
Sets value for attribute value
-
toString
public String toString()
Returns a string representation of the value object.
-
toSecret
public static Secret toSecret(Secret vo)
Creates a Secret value object based on a Secret object.
-
toSecretList
public static List<Secret> toSecretList(Collection<Secret> source)
Creates a Secret list on a Secret collection.
-
toSecretList
public static PagedResult<Secret> toSecretList(PagedResult<Secret> source)
Creates a Secret pagedResult on a Secret collection.
-
toSecretAsyncList
public static AsyncList<Secret> toSecretAsyncList(AsyncList<Secret> source)
Creates a Secret asynclist on a Secret collection.
-
toSecretArray
public static Secret[] toSecretArray(Secret[] source)
Creates a Secret array on a Secret array.
-
-