Interface EnumerationValueRemote
-
- All Superinterfaces:
EntityProxy
,ExtensibleItemRemote
,ItemRemote
,LocalizableItemRemote
- All Known Implementing Classes:
EnumerationValue_HJMPWrapper
,EnumerationValueEJB
public interface EnumerationValueRemote extends LocalizableItemRemote
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
disableEditing()
java.lang.String
getCode()
int
getSequenceNumber()
boolean
isEditable()
void
setCode(ComposedTypeRemote rem, java.lang.String code)
void
setCode(java.lang.String code)
void
setSequenceNumber(int sequenceNumber)
-
Methods inherited from interface de.hybris.platform.persistence.framework.EntityProxy
getPK
-
Methods inherited from interface de.hybris.platform.persistence.ExtensibleItemRemote
copyPropertiesFrom, getAllProperties, getProperty, getPropertyNames, getPropertyRaw, getPropertyTimestamp, getTypeInfoMap, removeProperty, setAllProperties, setProperty
-
Methods inherited from interface de.hybris.platform.persistence.ItemRemote
getComposedType, getCreationTime, getHJMPTS, getModifiedTime, getOwner, getPkString, getTypeKey, hasJNDIName, remove, setComposedType, setCreationTime, setModifiedTime, setOwner, setOwnerRef, wasModifiedSince
-
Methods inherited from interface de.hybris.platform.persistence.c2l.LocalizableItemRemote
copyLocalizablePropertiesFrom, getAllLocalizedProperties, getAllLocalizedProperties, getLocalizedProperty, getLocalizedPropertyNames, hintPropertyCache, removeLocalizedProperty, setAllLocalizedProperties, setLocalizedProperty
-
-
-
-
Method Detail
-
getCode
java.lang.String getCode()
-
setCode
void setCode(java.lang.String code) throws ConsistencyCheckException
- Throws:
ConsistencyCheckException
- if code is not unique or enumeration value is not editable
-
setCode
void setCode(ComposedTypeRemote rem, java.lang.String code) throws ConsistencyCheckException, EJBInvalidParameterException
- Throws:
ConsistencyCheckException
- if code is not unique or enumeration value is not editableEJBInvalidParameterException
-
getSequenceNumber
int getSequenceNumber()
-
setSequenceNumber
void setSequenceNumber(int sequenceNumber)
-
isEditable
boolean isEditable()
-
disableEditing
void disableEditing()
-
-