Package org.keycloak.models.map.common
Class StringKeyConvertor.StringKey
- java.lang.Object
-
- org.keycloak.models.map.common.StringKeyConvertor.StringKey
-
- All Implemented Interfaces:
StringKeyConvertor<String>
- Enclosing interface:
- StringKeyConvertor<K>
public static class StringKeyConvertor.StringKey extends Object implements StringKeyConvertor<String>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.keycloak.models.map.common.StringKeyConvertor
StringKeyConvertor.StringKey, StringKeyConvertor.ULongKey, StringKeyConvertor.UUIDKey
-
-
Field Summary
Fields Modifier and Type Field Description static StringKeyConvertor.StringKeyINSTANCE
-
Constructor Summary
Constructors Constructor Description StringKey()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringfromString(String key)Returns native representation of the key from String representationStringyieldNewUniqueKey()Returns a new unique primary key for the storage that thisStringKeyConvertorbelongs to.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.keycloak.models.map.common.StringKeyConvertor
fromStringSafe, keyToString
-
-
-
-
Field Detail
-
INSTANCE
public static final StringKeyConvertor.StringKey INSTANCE
-
-
Method Detail
-
fromString
public String fromString(String key)
Description copied from interface:StringKeyConvertorReturns native representation of the key from String representation- Specified by:
fromStringin interfaceStringKeyConvertor<String>- Returns:
- See above
-
yieldNewUniqueKey
public String yieldNewUniqueKey()
Description copied from interface:StringKeyConvertorReturns a new unique primary key for the storage that thisStringKeyConvertorbelongs to. The uniqueness needs to be guaranteed by e.g. using database sequences or using a random value that is proved sufficiently improbable to be repeated.- Specified by:
yieldNewUniqueKeyin interfaceStringKeyConvertor<String>- Returns:
-
-