Package de.hybris.bootstrap.ddl.pk
Interface PkFactory
-
- All Known Implementing Classes:
DbTypeSystemDecoratorForPkFactory,DefaultPkFactory
public interface PkFactoryFactory for generating PK for types during system initialization process.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PKcreateNewPK(int tc)PKcreateNewPK(YComposedType type)java.util.Map<java.lang.String,java.lang.Long>getCurrentNumberSeries()PKgetOrCreatePK(YAtomicType yAtomicType)PKgetOrCreatePK(YCollectionType yCollectionType)PKgetOrCreatePK(YComposedType yComposedType)PKgetOrCreatePK(YComposedType yComposedType, YAttributeDescriptor yAttributeDescriptor)PKgetOrCreatePK(YEnumValue yEnumValue)PKgetOrCreatePK(YMapType yMapType)
-
-
-
Method Detail
-
getCurrentNumberSeries
java.util.Map<java.lang.String,java.lang.Long> getCurrentNumberSeries()
-
createNewPK
PK createNewPK(int tc)
-
createNewPK
PK createNewPK(YComposedType type)
-
getOrCreatePK
PK getOrCreatePK(YComposedType yComposedType, YAttributeDescriptor yAttributeDescriptor)
-
getOrCreatePK
PK getOrCreatePK(YComposedType yComposedType)
-
getOrCreatePK
PK getOrCreatePK(YEnumValue yEnumValue)
-
getOrCreatePK
PK getOrCreatePK(YAtomicType yAtomicType)
-
getOrCreatePK
PK getOrCreatePK(YCollectionType yCollectionType)
-
-