Package org.cxml
Class Contract
- java.lang.Object
-
- org.cxml.Contract
-
public class Contract extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected Commentscommentsprotected java.lang.StringeffectiveDateprotected java.lang.StringexpirationDateprotected java.util.List<ItemSegment>itemSegmentprotected java.util.List<SupplierID>supplierID
-
Constructor Summary
Constructors Constructor Description Contract()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CommentsgetComments()Gets the value of the comments property.java.lang.StringgetEffectiveDate()Gets the value of the effectiveDate property.java.lang.StringgetExpirationDate()Gets the value of the expirationDate property.java.util.List<ItemSegment>getItemSegment()Gets the value of the itemSegment property.java.util.List<SupplierID>getSupplierID()Gets the value of the supplierID property.voidsetComments(Comments value)Sets the value of the comments property.voidsetEffectiveDate(java.lang.String value)Sets the value of the effectiveDate property.voidsetExpirationDate(java.lang.String value)Sets the value of the expirationDate property.
-
-
-
Field Detail
-
effectiveDate
protected java.lang.String effectiveDate
-
expirationDate
protected java.lang.String expirationDate
-
supplierID
protected java.util.List<SupplierID> supplierID
-
comments
protected Comments comments
-
itemSegment
protected java.util.List<ItemSegment> itemSegment
-
-
Method Detail
-
getEffectiveDate
public java.lang.String getEffectiveDate()
Gets the value of the effectiveDate property.- Returns:
- possible object is
String
-
setEffectiveDate
public void setEffectiveDate(java.lang.String value)
Sets the value of the effectiveDate property.- Parameters:
value- allowed object isString
-
getExpirationDate
public java.lang.String getExpirationDate()
Gets the value of the expirationDate property.- Returns:
- possible object is
String
-
setExpirationDate
public void setExpirationDate(java.lang.String value)
Sets the value of the expirationDate property.- Parameters:
value- allowed object isString
-
getSupplierID
public java.util.List<SupplierID> getSupplierID()
Gets the value of the supplierID property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the supplierID property.For example, to add a new item, do as follows:
getSupplierID().add(newItem);Objects of the following type(s) are allowed in the list
SupplierID
-
getComments
public Comments getComments()
Gets the value of the comments property.- Returns:
- possible object is
Comments
-
setComments
public void setComments(Comments value)
Sets the value of the comments property.- Parameters:
value- allowed object isComments
-
getItemSegment
public java.util.List<ItemSegment> getItemSegment()
Gets the value of the itemSegment property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the itemSegment property.For example, to add a new item, do as follows:
getItemSegment().add(newItem);Objects of the following type(s) are allowed in the list
ItemSegment
-
-