Package de.hybris.platform.jalo.type
Interface ComposedType.ComposedTypeImpl
-
- All Superinterfaces:
BridgeInterface
,ExposesPermissionFacade
,ExposesRemote
,ExtensibleItem.ExtensibleItemImpl
,Item.ItemImpl
,LocalizableItem.LocalizableItemImpl
,java.io.Serializable
,Type.TypeImpl
,TypeManagerManaged.TypeManagerManagedImpl
- All Known Implementing Classes:
ComposedTypeEJBImpl
- Enclosing class:
- ComposedType
public static interface ComposedType.ComposedTypeImpl extends Type.TypeImpl
Persistence layer interface. Do not use directly.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AttributeDescriptor
createAttributeDescriptor(PK pk, java.lang.String qualifier, Type type, int modifiers)
java.util.Set
getAllSubTypes()
java.util.Set
getAttributeDescriptorsIncludingPrivate()
java.lang.String
getDumpPropertyTable()
java.lang.String
getInheritancePathString()
int
getItemTypeCode()
java.lang.Class
getJaloClass()
java.lang.String
getJNDIName()
java.util.Set
getSubTypes()
ComposedType
getSuperType()
java.lang.String
getTable()
boolean
isAbstract()
boolean
isSingleton()
void
setDeclaredAttributeDescriptors(java.util.Set fds)
void
setJaloClass(java.lang.Class c)
void
setSingleton(boolean isSingleton)
-
Methods inherited from interface de.hybris.platform.util.BridgeInterface
getJaloObjectClass
-
Methods inherited from interface de.hybris.platform.util.ExposesPermissionFacade
getPermissionFacade
-
Methods inherited from interface de.hybris.platform.util.ExposesRemote
getRemote
-
Methods inherited from interface de.hybris.platform.jalo.ExtensibleItem.ExtensibleItemImpl
getAllProperties, getProperty, getPropertyNames, removeProperty, setAllProperties, setProperty
-
Methods inherited from interface de.hybris.platform.jalo.Item.ItemImpl
addPermission, checkItemPermission, clearPermission, getComposedType, getCreationTime, getHJMPTS, getModificationTime, getOwner, getPermissionMap, getPK, getPrincipalPermissions, getRestrictedPrincipals, getTypeKey, invalidateLocalCaches, isLocalCachingSupported, remove, setComposedType, setCreationTime, setModificationTime, setOwner, setPermissionMap
-
Methods inherited from interface de.hybris.platform.jalo.c2l.LocalizableItem.LocalizableItemImpl
getAllLocalizedProperties, getAllLocalizedProperties, getLocalizedProperty, getLocalizedPropertyNames, removeLocalizedProperty, setAllLocalizableProperties, setLocalizedProperty
-
Methods inherited from interface de.hybris.platform.jalo.type.Type.TypeImpl
getCode
-
-
-
-
Method Detail
-
getTable
java.lang.String getTable()
-
getSuperType
ComposedType getSuperType()
-
getSubTypes
java.util.Set getSubTypes()
-
setDeclaredAttributeDescriptors
void setDeclaredAttributeDescriptors(java.util.Set fds) throws JaloInvalidParameterException
- Throws:
JaloInvalidParameterException
-
getAttributeDescriptorsIncludingPrivate
java.util.Set getAttributeDescriptorsIncludingPrivate()
-
createAttributeDescriptor
AttributeDescriptor createAttributeDescriptor(PK pk, java.lang.String qualifier, Type type, int modifiers) throws JaloDuplicateQualifierException, JaloInvalidParameterException
-
isSingleton
boolean isSingleton()
-
setSingleton
void setSingleton(boolean isSingleton)
-
isAbstract
boolean isAbstract()
-
getJaloClass
java.lang.Class getJaloClass()
-
setJaloClass
void setJaloClass(java.lang.Class c)
-
getJNDIName
java.lang.String getJNDIName()
-
getDumpPropertyTable
java.lang.String getDumpPropertyTable()
-
getItemTypeCode
int getItemTypeCode()
-
getInheritancePathString
java.lang.String getInheritancePathString()
-
getAllSubTypes
java.util.Set getAllSubTypes()
-
-