Package org.cxml
Class Route
- java.lang.Object
-
- org.cxml.Route
-
public class Route extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description Route()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<Contact>getContact()Gets the value of the contact property.java.lang.StringgetEndDate()Gets the value of the endDate property.java.lang.StringgetMethod()Gets the value of the method property.java.lang.StringgetStartDate()Gets the value of the startDate property.voidsetEndDate(java.lang.String value)Sets the value of the endDate property.voidsetMethod(java.lang.String value)Sets the value of the method property.voidsetStartDate(java.lang.String value)Sets the value of the startDate property.
-
-
-
Field Detail
-
method
protected java.lang.String method
-
startDate
protected java.lang.String startDate
-
endDate
protected java.lang.String endDate
-
contact
protected java.util.List<Contact> contact
-
-
Method Detail
-
getMethod
public java.lang.String getMethod()
Gets the value of the method property.- Returns:
- possible object is
String
-
setMethod
public void setMethod(java.lang.String value)
Sets the value of the method property.- Parameters:
value- allowed object isString
-
getStartDate
public java.lang.String getStartDate()
Gets the value of the startDate property.- Returns:
- possible object is
String
-
setStartDate
public void setStartDate(java.lang.String value)
Sets the value of the startDate property.- Parameters:
value- allowed object isString
-
getEndDate
public java.lang.String getEndDate()
Gets the value of the endDate property.- Returns:
- possible object is
String
-
setEndDate
public void setEndDate(java.lang.String value)
Sets the value of the endDate property.- Parameters:
value- allowed object isString
-
getContact
public java.util.List<Contact> getContact()
Gets the value of the contact 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 contact property.For example, to add a new item, do as follows:
getContact().add(newItem);Objects of the following type(s) are allowed in the list
Contact
-
-