Subversion Repositories XServices

Compare Revisions

No changes between revisions

Ignore whitespace Rev 29 → Rev 30

/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/StateChangeHistory.java
0,0 → 1,292
 
package net.brutex.sbm.wsclient;
 
import java.math.BigInteger;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
 
 
/**
* <p>Java class for StateChangeHistory complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="StateChangeHistory">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="newStateID" type="{http://www.w3.org/2001/XMLSchema}integer"/>
* &lt;element name="newStateName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="transitionID" type="{http://www.w3.org/2001/XMLSchema}integer"/>
* &lt;element name="transitionName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="time" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* &lt;element name="userID" type="{http://www.w3.org/2001/XMLSchema}integer"/>
* &lt;element name="userName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="ownerID" type="{http://www.w3.org/2001/XMLSchema}integer"/>
* &lt;element name="ownerName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "StateChangeHistory", propOrder = {
"newStateID",
"newStateName",
"transitionID",
"transitionName",
"time",
"userID",
"userName",
"ownerID",
"ownerName"
})
public class StateChangeHistory {
 
@XmlElement(required = true)
protected BigInteger newStateID;
@XmlElementRef(name = "newStateName", namespace = "urn:aewebservices71", type = JAXBElement.class)
protected JAXBElement<String> newStateName;
@XmlElement(required = true)
protected BigInteger transitionID;
@XmlElementRef(name = "transitionName", namespace = "urn:aewebservices71", type = JAXBElement.class)
protected JAXBElement<String> transitionName;
@XmlElement(required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar time;
@XmlElement(required = true)
protected BigInteger userID;
@XmlElementRef(name = "userName", namespace = "urn:aewebservices71", type = JAXBElement.class)
protected JAXBElement<String> userName;
@XmlElement(required = true)
protected BigInteger ownerID;
@XmlElementRef(name = "ownerName", namespace = "urn:aewebservices71", type = JAXBElement.class)
protected JAXBElement<String> ownerName;
 
/**
* Gets the value of the newStateID property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getNewStateID() {
return newStateID;
}
 
/**
* Sets the value of the newStateID property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setNewStateID(BigInteger value) {
this.newStateID = value;
}
 
/**
* Gets the value of the newStateName property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getNewStateName() {
return newStateName;
}
 
/**
* Sets the value of the newStateName property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setNewStateName(JAXBElement<String> value) {
this.newStateName = ((JAXBElement<String> ) value);
}
 
/**
* Gets the value of the transitionID property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getTransitionID() {
return transitionID;
}
 
/**
* Sets the value of the transitionID property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setTransitionID(BigInteger value) {
this.transitionID = value;
}
 
/**
* Gets the value of the transitionName property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getTransitionName() {
return transitionName;
}
 
/**
* Sets the value of the transitionName property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setTransitionName(JAXBElement<String> value) {
this.transitionName = ((JAXBElement<String> ) value);
}
 
/**
* Gets the value of the time property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getTime() {
return time;
}
 
/**
* Sets the value of the time property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setTime(XMLGregorianCalendar value) {
this.time = value;
}
 
/**
* Gets the value of the userID property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getUserID() {
return userID;
}
 
/**
* Sets the value of the userID property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setUserID(BigInteger value) {
this.userID = value;
}
 
/**
* Gets the value of the userName property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getUserName() {
return userName;
}
 
/**
* Sets the value of the userName property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setUserName(JAXBElement<String> value) {
this.userName = ((JAXBElement<String> ) value);
}
 
/**
* Gets the value of the ownerID property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getOwnerID() {
return ownerID;
}
 
/**
* Sets the value of the ownerID property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setOwnerID(BigInteger value) {
this.ownerID = value;
}
 
/**
* Gets the value of the ownerName property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getOwnerName() {
return ownerName;
}
 
/**
* Sets the value of the ownerName property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setOwnerName(JAXBElement<String> value) {
this.ownerName = ((JAXBElement<String> ) value);
}
 
}
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property