Package de.hybris.platform.core
Interface ItemImplCreationResult
-
- All Known Implementing Classes:
ItemImplCreationResult.ExistingItemImpl,ItemImplCreationResult.FailedItemImpl,ItemImplCreationResult.MissingItemImpl
public interface ItemImplCreationResult
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classItemImplCreationResult.ExistingItemImplstatic classItemImplCreationResult.FailedItemImplstatic classItemImplCreationResult.MissingItemImpl
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static ItemImplCreationResultexisting(Item.ItemImpl impl)static ItemImplCreationResultfailed(PK pk, java.lang.Exception ex)booleanhasItemImpl()booleanisFailed()static ItemImplCreationResultmissing(PK pk)Item.ItemImpltoItemImpl()JaloSystemExceptiontoJaloSystemException()
-
-
-
Method Detail
-
existing
static ItemImplCreationResult existing(Item.ItemImpl impl)
-
missing
static ItemImplCreationResult missing(PK pk)
-
failed
static ItemImplCreationResult failed(PK pk, java.lang.Exception ex)
-
hasItemImpl
boolean hasItemImpl()
-
toJaloSystemException
JaloSystemException toJaloSystemException()
-
toItemImpl
Item.ItemImpl toItemImpl()
-
isFailed
boolean isFailed()
-
-