Class UuidIdentifier
- java.lang.Object
-
- org.silverpeas.core.persistence.datasource.model.identifier.UuidIdentifier
-
- All Implemented Interfaces:
Serializable
,Comparable<EntityIdentifier>
,EntityIdentifier
,ResourceIdentifier
@Embeddable public class UuidIdentifier extends Object implements EntityIdentifier
- Author:
- Yohann Chastagnier
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UuidIdentifier()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
asString()
Gets the value of this identifier as a String.boolean
equals(Object obj)
static UuidIdentifier
from(String value)
UuidIdentifier
fromString(String id)
Sets the identifier's value from its given String representation.UuidIdentifier
generateNewId(String... parameters)
Generates a new UUID.String
getId()
int
hashCode()
String
toString()
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.silverpeas.core.persistence.datasource.model.EntityIdentifier
compareTo
-
-
-
-
Method Detail
-
from
public static UuidIdentifier from(String value)
-
getId
public String getId()
-
asString
public String asString()
Description copied from interface:ResourceIdentifier
Gets the value of this identifier as a String.- Specified by:
asString
in interfaceResourceIdentifier
- Returns:
- the String representation of this identifier.
-
fromString
public UuidIdentifier fromString(String id)
Description copied from interface:EntityIdentifier
Sets the identifier's value from its given String representation.- Specified by:
fromString
in interfaceEntityIdentifier
- Parameters:
id
- the encoded value of the identifier.- Returns:
- the identifier decoded from the specified String representation.
-
generateNewId
public UuidIdentifier generateNewId(String... parameters)
Generates a new UUID.- Specified by:
generateNewId
in interfaceEntityIdentifier
- Parameters:
parameters
- some parameters to set up the identifier generation. They aren't taken into account.- Returns:
- a new UUID.
-
-