Interface ConnectedDocumentItem
-
- All Superinterfaces:
BusinessObject,java.lang.Cloneable,ConnectedObject,MessageListHolder,java.io.Serializable
- All Known Implementing Classes:
ConnectedDocumentItemImpl
public interface ConnectedDocumentItem extends ConnectedObject
Represents the ConnectedDocumentItem object, which is a ConnectedObject on item level.
-
-
Field Summary
-
Fields inherited from interface de.hybris.platform.sap.sapordermgmtbol.transaction.businessobject.interf.ConnectedObject
DOC_ORIGIN_CRM, IL_NO_TRANSFER_AND_UPDATE, IL_TRANSFER_AND_UPDATE, UNDEFINED
-
Fields inherited from interface de.hybris.platform.sap.core.common.message.MessageListHolder
INVALID, VALID
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetAppTyp()Returns the application type.java.util.DategetDate()Returns the date of the item (e.g.TechKeygetDocumentKey()Returns the document key.java.lang.StringgetDocumentOrigin()Returns the origin of the document.java.lang.StringgetPosNumber()Returns the Position Number of the connected Item.java.math.BigDecimalgetQuantity()Returns the quantity of the item (e.g.java.lang.StringgetTrackingURL()Returns the tracking URL for the delivery doc flow entry.java.lang.StringgetUnit()Returns the quantity unit.voidsetAppTyp(java.lang.String string)Sets the application typevoidsetDate(java.util.Date date)Sets the date of the item.voidsetDocumentKey(TechKey documentKey)Sets the document key.voidsetDocumentOrigin(java.lang.String string)Sets the origin of the document.voidsetPosNumber(java.lang.String posNumber)Set the Position Number of the connected Item.voidsetQuantity(java.math.BigDecimal quant)Sets the quantity of the item (e.g.voidsetTrackingURL(java.lang.String string)Sets the tracking URL for delivery doc flow entry.voidsetUnit(java.lang.String quantUnit)Sets the quantity unit.-
Methods inherited from interface de.hybris.platform.sap.core.bol.businessobject.BusinessObject
addExtensionData, clearMessages, clearOwnMessages, copyMessages, copyMessages, createUniqueHandle, destroy, getExtensionData, getExtensionDataValues, getExtensionMap, getHandle, getOwnMessageList, getSubObjectIterator, getTechKey, hasHandle, hasMessages, hasOwnMessages, init, isValid, logMessage, removeExtensionData, removeExtensionDataValues, setExtensionMap, setHandle, setInvalid, setTechKey, setValid
-
Methods inherited from interface de.hybris.platform.sap.sapordermgmtbol.transaction.businessobject.interf.ConnectedObject
clone, getBusObjectType, getDocItemNumber, getDocNumber, getDocType, getRefGuid, getTransferUpdateType, isDisplayable, setBusObjectType, setDisplayable, setDocItemNumber, setDocNumber, setDocType, setRefGuid, setTransferUpdateType
-
Methods inherited from interface de.hybris.platform.sap.core.common.message.MessageListHolder
addMessage, clearMessages, getMessageList
-
-
-
-
Method Detail
-
getDocumentKey
TechKey getDocumentKey()
Returns the document key.- Returns:
- Document key
-
setDocumentKey
void setDocumentKey(TechKey documentKey)
Sets the document key.- Parameters:
documentKey- Document key
-
setPosNumber
void setPosNumber(java.lang.String posNumber)
Set the Position Number of the connected Item.- Parameters:
posNumber- position number as String
-
getPosNumber
java.lang.String getPosNumber()
Returns the Position Number of the connected Item.- Returns:
- position number as String
-
getDate
java.util.Date getDate()
Returns the date of the item (e.g. delivery date).- Returns:
- Date of the item
-
setDate
void setDate(java.util.Date date)
Sets the date of the item.- Parameters:
date- Date of the item
-
getQuantity
java.math.BigDecimal getQuantity()
Returns the quantity of the item (e.g. delivered quantity).- Returns:
- Quantity
-
setQuantity
void setQuantity(java.math.BigDecimal quant)
Sets the quantity of the item (e.g. delivered quantity).- Parameters:
quant- Quantity
-
getUnit
java.lang.String getUnit()
Returns the quantity unit.- Returns:
- Quantity Unit
-
setUnit
void setUnit(java.lang.String quantUnit)
Sets the quantity unit.- Parameters:
quantUnit- Quantity Unit
-
getDocumentOrigin
java.lang.String getDocumentOrigin()
Returns the origin of the document.- Specified by:
getDocumentOriginin interfaceConnectedObject- Returns:
- Origin of the document
-
setDocumentOrigin
void setDocumentOrigin(java.lang.String string)
Sets the origin of the document.- Specified by:
setDocumentOriginin interfaceConnectedObject- Parameters:
string- Origin of the document
-
getAppTyp
java.lang.String getAppTyp()
Returns the application type.- Returns:
- Application type
-
setAppTyp
void setAppTyp(java.lang.String string)
Sets the application type- Parameters:
string- Application type
-
getTrackingURL
java.lang.String getTrackingURL()
Returns the tracking URL for the delivery doc flow entry.- Returns:
- Tracking URL
-
setTrackingURL
void setTrackingURL(java.lang.String string)
Sets the tracking URL for delivery doc flow entry.- Parameters:
string- Tracking URL
-
-