Interface PartnerBase
-
- All Superinterfaces:
BusinessObject,java.lang.Cloneable,MessageListHolder,java.io.Serializable
- All Known Implementing Classes:
BillToImpl,PartnerBaseImpl,ShipToImpl
public interface PartnerBase extends BusinessObject, java.lang.Cloneable, java.io.Serializable
Represents the PartnerBase object.
-
-
Field Summary
-
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 PartnerBaseclone()AddressgetAddress()Returns the address of the partner.java.lang.StringgetId()Returns the Id of the partner.java.lang.StringgetShortAddress()Returns the short address of the partner.booleanisIdX()Returns value which indicates that address was set.voidsetAddress(Address address)Sets the fully qualified address for the partner.voidsetId(java.lang.String id)Sets the id of the partner.voidsetIdX(boolean idX)Sets flag which indicates that address was set.voidsetShortAddress(java.lang.String address)Sets the short address for the partner.-
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.core.common.message.MessageListHolder
addMessage, clearMessages, getMessageList
-
-
-
-
Method Detail
-
setAddress
void setAddress(Address address)
Sets the fully qualified address for the partner.- Parameters:
address- The address to be set
-
setShortAddress
void setShortAddress(java.lang.String address)
Sets the short address for the partner.- Parameters:
address- The short address for the partner
-
getShortAddress
java.lang.String getShortAddress()
Returns the short address of the partner.- Returns:
- shortAddress The short address of the partner
-
getAddress
Address getAddress()
Returns the address of the partner.- Returns:
- Address of the partner
-
setId
void setId(java.lang.String id)
Sets the id of the partner.- Parameters:
id- The Id of the partner
-
getId
java.lang.String getId()
Returns the Id of the partner.- Returns:
- Id The id of the partner
-
isIdX
boolean isIdX()
Returns value which indicates that address was set.- Returns:
- true, if address was set
-
setIdX
void setIdX(boolean idX)
Sets flag which indicates that address was set.- Parameters:
idX- Flag indicates whether address was set
-
clone
PartnerBase clone()
- Returns:
- clone
- See Also:
Object.clone()
-
-