Interface PartOfRelation
-
- All Known Implementing Classes:
PartOfRelationImpl
public interface PartOfRelationRepresents instance/ sub instance relation, which is named 'PartOf'
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetAuthor()java.lang.StringgetClassType()java.lang.StringgetInstId()java.lang.StringgetObjectKey()java.lang.StringgetObjectType()java.lang.StringgetParentInstId()java.lang.StringgetPosNr()voidsetAuthor(java.lang.String author)Sets authorvoidsetClassType(java.lang.String classType)Sets class type, one typical value is '300'voidsetInstId(java.lang.String instId)Sets child instance IDvoidsetObjectKey(java.lang.String objectKey)Sets object key, for material items this is the product ID.voidsetObjectType(java.lang.String objectType)Sets object type, product or an abstract product representativevoidsetParentInstId(java.lang.String parentInstId)Sets parent instance IDvoidsetPosNr(java.lang.String posNr)Sets position in the BOM
-
-
-
Method Detail
-
setAuthor
void setAuthor(java.lang.String author)
Sets author- Parameters:
author-
-
getAuthor
java.lang.String getAuthor()
- Returns:
- Author
-
setClassType
void setClassType(java.lang.String classType)
Sets class type, one typical value is '300'- Parameters:
classType-
-
getClassType
java.lang.String getClassType()
- Returns:
- class type
-
setObjectKey
void setObjectKey(java.lang.String objectKey)
Sets object key, for material items this is the product ID.- Parameters:
objectKey-
-
getObjectKey
java.lang.String getObjectKey()
- Returns:
- Object key.
-
setObjectType
void setObjectType(java.lang.String objectType)
Sets object type, product or an abstract product representative- Parameters:
objectType-
-
getObjectType
java.lang.String getObjectType()
- Returns:
- Object type
-
setPosNr
void setPosNr(java.lang.String posNr)
Sets position in the BOM- Parameters:
posNr-
-
getPosNr
java.lang.String getPosNr()
- Returns:
- Position number
-
setParentInstId
void setParentInstId(java.lang.String parentInstId)
Sets parent instance ID- Parameters:
parentInstId-
-
getParentInstId
java.lang.String getParentInstId()
- Returns:
- Parent instance ID
-
setInstId
void setInstId(java.lang.String instId)
Sets child instance ID- Parameters:
instId-
-
getInstId
java.lang.String getInstId()
- Returns:
- Child instance ID
-
-