/sbm4mylyn/trunk/src/generate-wsstubs.ant |
---|
0,0 → 1,25 |
<?xml version="1.0"?> |
<project name="cxf wsdl2java" basedir="."> |
<property name="cxf.home" location ="/opt/apache-cxf-2.2.8"/> |
<path id="cxf.classpath"> |
<fileset dir="${cxf.home}/lib"> |
<include name="*.jar"/> |
</fileset> |
</path> |
<target name="cxfWSDLToJava"> |
<java classname="org.apache.cxf.tools.wsdlto.WSDLToJava" fork="true"> |
<arg value="-client"/> |
<arg value="-verbose"/> |
<arg value="-d"/> |
<arg value="/home/brian/workspace/net.brutex.sbm.mylyn.ui/src/"/> |
<arg value="-p"/> |
<arg value="net.brutex.sbm.wsclient"/> |
<arg value="aewebservices71.wsdl"/> |
<classpath> |
<path refid="cxf.classpath"/> |
</classpath> |
</java> |
</target> |
</project> |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/GetSolutions.java |
---|
0,0 → 1,65 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElementRef; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"auth" |
}) |
@XmlRootElement(name = "GetSolutions") |
public class GetSolutions { |
@XmlElementRef(name = "auth", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<Auth> auth; |
/** |
* Gets the value of the auth property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public JAXBElement<Auth> getAuth() { |
return auth; |
} |
/** |
* Sets the value of the auth property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public void setAuth(JAXBElement<Auth> value) { |
this.auth = ((JAXBElement<Auth> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/GetNoteLoggerInfoResponse.java |
---|
0,0 → 1,65 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElementRef; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="return" type="{urn:aewebservices71}NoteLoggerInfo" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"_return" |
}) |
@XmlRootElement(name = "GetNoteLoggerInfoResponse") |
public class GetNoteLoggerInfoResponse { |
@XmlElementRef(name = "return", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<NoteLoggerInfo> _return; |
/** |
* Gets the value of the return property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link NoteLoggerInfo }{@code >} |
* |
*/ |
public JAXBElement<NoteLoggerInfo> getReturn() { |
return _return; |
} |
/** |
* Sets the value of the return property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link NoteLoggerInfo }{@code >} |
* |
*/ |
public void setReturn(JAXBElement<NoteLoggerInfo> value) { |
this._return = ((JAXBElement<NoteLoggerInfo> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/DeleteItemResponse.java |
---|
0,0 → 1,34 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "") |
@XmlRootElement(name = "DeleteItemResponse") |
public class DeleteItemResponse { |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/ExportResponse.java |
---|
0,0 → 1,65 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElementRef; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="return" type="{urn:aewebservices71}FileContents" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"_return" |
}) |
@XmlRootElement(name = "ExportResponse") |
public class ExportResponse { |
@XmlElementRef(name = "return", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<FileContents> _return; |
/** |
* Gets the value of the return property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link FileContents }{@code >} |
* |
*/ |
public JAXBElement<FileContents> getReturn() { |
return _return; |
} |
/** |
* Sets the value of the return property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link FileContents }{@code >} |
* |
*/ |
public void setReturn(JAXBElement<FileContents> value) { |
this._return = ((JAXBElement<FileContents> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/GetSolutionsWithUniqueNameResponse.java |
---|
0,0 → 1,71 |
package net.brutex.sbm.wsclient; |
import java.util.ArrayList; |
import java.util.List; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElement; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="return" type="{urn:aewebservices71}SolutionWithUniqueName" maxOccurs="unbounded" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"_return" |
}) |
@XmlRootElement(name = "GetSolutionsWithUniqueNameResponse") |
public class GetSolutionsWithUniqueNameResponse { |
@XmlElement(name = "return") |
protected List<SolutionWithUniqueName> _return; |
/** |
* Gets the value of the return property. |
* |
* <p> |
* 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 <CODE>set</CODE> method for the return property. |
* |
* <p> |
* For example, to add a new item, do as follows: |
* <pre> |
* getReturn().add(newItem); |
* </pre> |
* |
* |
* <p> |
* Objects of the following type(s) are allowed in the list |
* {@link SolutionWithUniqueName } |
* |
* |
*/ |
public List<SolutionWithUniqueName> getReturn() { |
if (_return == null) { |
_return = new ArrayList<SolutionWithUniqueName>(); |
} |
return this._return; |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/DeleteItems.java |
---|
0,0 → 1,99 |
package net.brutex.sbm.wsclient; |
import java.util.ArrayList; |
import java.util.List; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElementRef; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/> |
* <element name="itemIdList" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"auth", |
"itemIdList" |
}) |
@XmlRootElement(name = "DeleteItems") |
public class DeleteItems { |
@XmlElementRef(name = "auth", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<Auth> auth; |
protected List<String> itemIdList; |
/** |
* Gets the value of the auth property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public JAXBElement<Auth> getAuth() { |
return auth; |
} |
/** |
* Sets the value of the auth property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public void setAuth(JAXBElement<Auth> value) { |
this.auth = ((JAXBElement<Auth> ) value); |
} |
/** |
* Gets the value of the itemIdList property. |
* |
* <p> |
* 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 <CODE>set</CODE> method for the itemIdList property. |
* |
* <p> |
* For example, to add a new item, do as follows: |
* <pre> |
* getItemIdList().add(newItem); |
* </pre> |
* |
* |
* <p> |
* Objects of the following type(s) are allowed in the list |
* {@link String } |
* |
* |
*/ |
public List<String> getItemIdList() { |
if (itemIdList == null) { |
itemIdList = new ArrayList<String>(); |
} |
return this.itemIdList; |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/SolutionData.java |
---|
0,0 → 1,233 |
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.XmlType; |
/** |
* <p>Java class for SolutionData complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType name="SolutionData"> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="solutionID" type="{http://www.w3.org/2001/XMLSchema}integer"/> |
* <element name="solutionUUID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="displayName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="type" type="{urn:aewebservices71}Solution-Type"/> |
* <element name="prefix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "SolutionData", propOrder = { |
"solutionID", |
"solutionUUID", |
"name", |
"displayName", |
"type", |
"prefix", |
"description" |
}) |
public class SolutionData { |
@XmlElement(required = true) |
protected BigInteger solutionID; |
@XmlElementRef(name = "solutionUUID", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> solutionUUID; |
@XmlElementRef(name = "name", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> name; |
@XmlElementRef(name = "displayName", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> displayName; |
@XmlElement(required = true) |
protected SolutionType type; |
@XmlElementRef(name = "prefix", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> prefix; |
@XmlElementRef(name = "description", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> description; |
/** |
* Gets the value of the solutionID property. |
* |
* @return |
* possible object is |
* {@link BigInteger } |
* |
*/ |
public BigInteger getSolutionID() { |
return solutionID; |
} |
/** |
* Sets the value of the solutionID property. |
* |
* @param value |
* allowed object is |
* {@link BigInteger } |
* |
*/ |
public void setSolutionID(BigInteger value) { |
this.solutionID = value; |
} |
/** |
* Gets the value of the solutionUUID property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getSolutionUUID() { |
return solutionUUID; |
} |
/** |
* Sets the value of the solutionUUID property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setSolutionUUID(JAXBElement<String> value) { |
this.solutionUUID = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the name property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getName() { |
return name; |
} |
/** |
* Sets the value of the name property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setName(JAXBElement<String> value) { |
this.name = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the displayName property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getDisplayName() { |
return displayName; |
} |
/** |
* Sets the value of the displayName property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setDisplayName(JAXBElement<String> value) { |
this.displayName = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the type property. |
* |
* @return |
* possible object is |
* {@link SolutionType } |
* |
*/ |
public SolutionType getType() { |
return type; |
} |
/** |
* Sets the value of the type property. |
* |
* @param value |
* allowed object is |
* {@link SolutionType } |
* |
*/ |
public void setType(SolutionType value) { |
this.type = value; |
} |
/** |
* Gets the value of the prefix property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getPrefix() { |
return prefix; |
} |
/** |
* Sets the value of the prefix property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setPrefix(JAXBElement<String> value) { |
this.prefix = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the description property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getDescription() { |
return description; |
} |
/** |
* Sets the value of the description property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setDescription(JAXBElement<String> value) { |
this.description = ((JAXBElement<String> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/GetStateChangeHistoryResult.java |
---|
0,0 → 1,96 |
package net.brutex.sbm.wsclient; |
import java.util.ArrayList; |
import java.util.List; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for GetStateChangeHistoryResult complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType name="GetStateChangeHistoryResult"> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="queryRange" type="{urn:aewebservices71}QueryRange"/> |
* <element name="stateChangeHistoryList" type="{urn:aewebservices71}StateChangeHistory" maxOccurs="unbounded" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "GetStateChangeHistoryResult", propOrder = { |
"queryRange", |
"stateChangeHistoryList" |
}) |
public class GetStateChangeHistoryResult { |
@XmlElement(required = true) |
protected QueryRange queryRange; |
protected List<StateChangeHistory> stateChangeHistoryList; |
/** |
* Gets the value of the queryRange property. |
* |
* @return |
* possible object is |
* {@link QueryRange } |
* |
*/ |
public QueryRange getQueryRange() { |
return queryRange; |
} |
/** |
* Sets the value of the queryRange property. |
* |
* @param value |
* allowed object is |
* {@link QueryRange } |
* |
*/ |
public void setQueryRange(QueryRange value) { |
this.queryRange = value; |
} |
/** |
* Gets the value of the stateChangeHistoryList property. |
* |
* <p> |
* 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 <CODE>set</CODE> method for the stateChangeHistoryList property. |
* |
* <p> |
* For example, to add a new item, do as follows: |
* <pre> |
* getStateChangeHistoryList().add(newItem); |
* </pre> |
* |
* |
* <p> |
* Objects of the following type(s) are allowed in the list |
* {@link StateChangeHistory } |
* |
* |
*/ |
public List<StateChangeHistory> getStateChangeHistoryList() { |
if (stateChangeHistoryList == null) { |
stateChangeHistoryList = new ArrayList<StateChangeHistory>(); |
} |
return this.stateChangeHistoryList; |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/IsUserValidResponse.java |
---|
0,0 → 1,56 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElement; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="return" type="{http://www.w3.org/2001/XMLSchema}boolean"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"_return" |
}) |
@XmlRootElement(name = "IsUserValidResponse") |
public class IsUserValidResponse { |
@XmlElement(name = "return") |
protected boolean _return; |
/** |
* Gets the value of the return property. |
* |
*/ |
public boolean isReturn() { |
return _return; |
} |
/** |
* Sets the value of the return property. |
* |
*/ |
public void setReturn(boolean value) { |
this._return = value; |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/CreatePrimaryItems.java |
---|
0,0 → 1,184 |
package net.brutex.sbm.wsclient; |
import java.math.BigInteger; |
import java.util.ArrayList; |
import java.util.List; |
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.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/> |
* <element name="projectID" type="{http://www.w3.org/2001/XMLSchema}integer"/> |
* <element name="itemList" type="{urn:aewebservices71}TTItem" maxOccurs="unbounded" minOccurs="0"/> |
* <element name="submitTransID" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/> |
* <element name="responseOptions" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"auth", |
"projectID", |
"itemList", |
"submitTransID", |
"responseOptions" |
}) |
@XmlRootElement(name = "CreatePrimaryItems") |
public class CreatePrimaryItems { |
@XmlElementRef(name = "auth", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<Auth> auth; |
@XmlElement(required = true) |
protected BigInteger projectID; |
protected List<TTItem> itemList; |
protected BigInteger submitTransID; |
@XmlElementRef(name = "responseOptions", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> responseOptions; |
/** |
* Gets the value of the auth property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public JAXBElement<Auth> getAuth() { |
return auth; |
} |
/** |
* Sets the value of the auth property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public void setAuth(JAXBElement<Auth> value) { |
this.auth = ((JAXBElement<Auth> ) value); |
} |
/** |
* Gets the value of the projectID property. |
* |
* @return |
* possible object is |
* {@link BigInteger } |
* |
*/ |
public BigInteger getProjectID() { |
return projectID; |
} |
/** |
* Sets the value of the projectID property. |
* |
* @param value |
* allowed object is |
* {@link BigInteger } |
* |
*/ |
public void setProjectID(BigInteger value) { |
this.projectID = value; |
} |
/** |
* Gets the value of the itemList property. |
* |
* <p> |
* 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 <CODE>set</CODE> method for the itemList property. |
* |
* <p> |
* For example, to add a new item, do as follows: |
* <pre> |
* getItemList().add(newItem); |
* </pre> |
* |
* |
* <p> |
* Objects of the following type(s) are allowed in the list |
* {@link TTItem } |
* |
* |
*/ |
public List<TTItem> getItemList() { |
if (itemList == null) { |
itemList = new ArrayList<TTItem>(); |
} |
return this.itemList; |
} |
/** |
* Gets the value of the submitTransID property. |
* |
* @return |
* possible object is |
* {@link BigInteger } |
* |
*/ |
public BigInteger getSubmitTransID() { |
return submitTransID; |
} |
/** |
* Sets the value of the submitTransID property. |
* |
* @param value |
* allowed object is |
* {@link BigInteger } |
* |
*/ |
public void setSubmitTransID(BigInteger value) { |
this.submitTransID = value; |
} |
/** |
* Gets the value of the responseOptions property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getResponseOptions() { |
return responseOptions; |
} |
/** |
* Sets the value of the responseOptions property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setResponseOptions(JAXBElement<String> value) { |
this.responseOptions = ((JAXBElement<String> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/Import.java |
---|
0,0 → 1,225 |
package net.brutex.sbm.wsclient; |
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.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/> |
* <element name="xmlInFile" type="{urn:aewebservices71}FileContents"/> |
* <element name="adminRepositoryID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="importResponseEndPoint" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="importResponseID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="xmlImportOptions" type="{urn:aewebservices71}FileContents" minOccurs="0"/> |
* <element name="validateOnly" type="{http://www.w3.org/2001/XMLSchema}boolean"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"auth", |
"xmlInFile", |
"adminRepositoryID", |
"importResponseEndPoint", |
"importResponseID", |
"xmlImportOptions", |
"validateOnly" |
}) |
@XmlRootElement(name = "Import") |
public class Import { |
@XmlElementRef(name = "auth", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<Auth> auth; |
@XmlElement(required = true) |
protected FileContents xmlInFile; |
@XmlElementRef(name = "adminRepositoryID", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> adminRepositoryID; |
@XmlElementRef(name = "importResponseEndPoint", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> importResponseEndPoint; |
@XmlElementRef(name = "importResponseID", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> importResponseID; |
@XmlElementRef(name = "xmlImportOptions", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<FileContents> xmlImportOptions; |
protected boolean validateOnly; |
/** |
* Gets the value of the auth property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public JAXBElement<Auth> getAuth() { |
return auth; |
} |
/** |
* Sets the value of the auth property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public void setAuth(JAXBElement<Auth> value) { |
this.auth = ((JAXBElement<Auth> ) value); |
} |
/** |
* Gets the value of the xmlInFile property. |
* |
* @return |
* possible object is |
* {@link FileContents } |
* |
*/ |
public FileContents getXmlInFile() { |
return xmlInFile; |
} |
/** |
* Sets the value of the xmlInFile property. |
* |
* @param value |
* allowed object is |
* {@link FileContents } |
* |
*/ |
public void setXmlInFile(FileContents value) { |
this.xmlInFile = value; |
} |
/** |
* Gets the value of the adminRepositoryID property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getAdminRepositoryID() { |
return adminRepositoryID; |
} |
/** |
* Sets the value of the adminRepositoryID property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setAdminRepositoryID(JAXBElement<String> value) { |
this.adminRepositoryID = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the importResponseEndPoint property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getImportResponseEndPoint() { |
return importResponseEndPoint; |
} |
/** |
* Sets the value of the importResponseEndPoint property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setImportResponseEndPoint(JAXBElement<String> value) { |
this.importResponseEndPoint = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the importResponseID property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getImportResponseID() { |
return importResponseID; |
} |
/** |
* Sets the value of the importResponseID property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setImportResponseID(JAXBElement<String> value) { |
this.importResponseID = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the xmlImportOptions property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link FileContents }{@code >} |
* |
*/ |
public JAXBElement<FileContents> getXmlImportOptions() { |
return xmlImportOptions; |
} |
/** |
* Sets the value of the xmlImportOptions property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link FileContents }{@code >} |
* |
*/ |
public void setXmlImportOptions(JAXBElement<FileContents> value) { |
this.xmlImportOptions = ((JAXBElement<FileContents> ) value); |
} |
/** |
* Gets the value of the validateOnly property. |
* |
*/ |
public boolean isValidateOnly() { |
return validateOnly; |
} |
/** |
* Sets the value of the validateOnly property. |
* |
*/ |
public void setValidateOnly(boolean value) { |
this.validateOnly = value; |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/GetSubmitProjects.java |
---|
0,0 → 1,93 |
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.XmlElementRef; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/> |
* <element name="tableID" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"auth", |
"tableID" |
}) |
@XmlRootElement(name = "GetSubmitProjects") |
public class GetSubmitProjects { |
@XmlElementRef(name = "auth", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<Auth> auth; |
protected BigInteger tableID; |
/** |
* Gets the value of the auth property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public JAXBElement<Auth> getAuth() { |
return auth; |
} |
/** |
* Sets the value of the auth property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public void setAuth(JAXBElement<Auth> value) { |
this.auth = ((JAXBElement<Auth> ) value); |
} |
/** |
* Gets the value of the tableID property. |
* |
* @return |
* possible object is |
* {@link BigInteger } |
* |
*/ |
public BigInteger getTableID() { |
return tableID; |
} |
/** |
* Sets the value of the tableID property. |
* |
* @param value |
* allowed object is |
* {@link BigInteger } |
* |
*/ |
public void setTableID(BigInteger value) { |
this.tableID = value; |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/RunReportResponse.java |
---|
0,0 → 1,65 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElementRef; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="return" type="{urn:aewebservices71}RunReportResult" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"_return" |
}) |
@XmlRootElement(name = "RunReportResponse") |
public class RunReportResponse { |
@XmlElementRef(name = "return", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<RunReportResult> _return; |
/** |
* Gets the value of the return property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link RunReportResult }{@code >} |
* |
*/ |
public JAXBElement<RunReportResult> getReturn() { |
return _return; |
} |
/** |
* Sets the value of the return property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link RunReportResult }{@code >} |
* |
*/ |
public void setReturn(JAXBElement<RunReportResult> value) { |
this._return = ((JAXBElement<RunReportResult> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/Field.java |
---|
0,0 → 1,177 |
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.XmlType; |
/** |
* <p>Java class for Field complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType name="Field"> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="fieldID" type="{http://www.w3.org/2001/XMLSchema}integer"/> |
* <element name="fieldUUID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="displayName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="fieldType" type="{urn:aewebservices71}Field-Type"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "Field", propOrder = { |
"fieldID", |
"fieldUUID", |
"name", |
"displayName", |
"fieldType" |
}) |
public class Field { |
@XmlElement(required = true) |
protected BigInteger fieldID; |
@XmlElementRef(name = "fieldUUID", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> fieldUUID; |
@XmlElementRef(name = "name", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> name; |
@XmlElementRef(name = "displayName", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> displayName; |
@XmlElement(required = true) |
protected FieldType fieldType; |
/** |
* Gets the value of the fieldID property. |
* |
* @return |
* possible object is |
* {@link BigInteger } |
* |
*/ |
public BigInteger getFieldID() { |
return fieldID; |
} |
/** |
* Sets the value of the fieldID property. |
* |
* @param value |
* allowed object is |
* {@link BigInteger } |
* |
*/ |
public void setFieldID(BigInteger value) { |
this.fieldID = value; |
} |
/** |
* Gets the value of the fieldUUID property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getFieldUUID() { |
return fieldUUID; |
} |
/** |
* Sets the value of the fieldUUID property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setFieldUUID(JAXBElement<String> value) { |
this.fieldUUID = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the name property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getName() { |
return name; |
} |
/** |
* Sets the value of the name property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setName(JAXBElement<String> value) { |
this.name = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the displayName property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getDisplayName() { |
return displayName; |
} |
/** |
* Sets the value of the displayName property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setDisplayName(JAXBElement<String> value) { |
this.displayName = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the fieldType property. |
* |
* @return |
* possible object is |
* {@link FieldType } |
* |
*/ |
public FieldType getFieldType() { |
return fieldType; |
} |
/** |
* Sets the value of the fieldType property. |
* |
* @param value |
* allowed object is |
* {@link FieldType } |
* |
*/ |
public void setFieldType(FieldType value) { |
this.fieldType = value; |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/DeleteAttachmentResponse.java |
---|
0,0 → 1,34 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "") |
@XmlRootElement(name = "DeleteAttachmentResponse") |
public class DeleteAttachmentResponse { |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/ObjectFactory.java |
---|
0,0 → 1,3733 |
package net.brutex.sbm.wsclient; |
import java.math.BigInteger; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlElementDecl; |
import javax.xml.bind.annotation.XmlRegistry; |
import javax.xml.datatype.XMLGregorianCalendar; |
import javax.xml.namespace.QName; |
/** |
* This object contains factory methods for each |
* Java content interface and Java element interface |
* generated in the net.brutex.sbm.wsclient package. |
* <p>An ObjectFactory allows you to programatically |
* construct new instances of the Java representation |
* for XML content. The Java representation of XML |
* content can consist of schema derived interfaces |
* and classes representing the binding of schema |
* type definitions, element declarations and model |
* groups. Factory methods for each of these are |
* provided in this class. |
* |
*/ |
@XmlRegistry |
public class ObjectFactory { |
private final static QName _AEWebservicesFault_QNAME = new QName("urn:aewebservices71", "AEWebservicesFault"); |
private final static QName _StateChangeHistoryTransitionName_QNAME = new QName("urn:aewebservices71", "transitionName"); |
private final static QName _StateChangeHistoryUserName_QNAME = new QName("urn:aewebservices71", "userName"); |
private final static QName _StateChangeHistoryOwnerName_QNAME = new QName("urn:aewebservices71", "ownerName"); |
private final static QName _StateChangeHistoryNewStateName_QNAME = new QName("urn:aewebservices71", "newStateName"); |
private final static QName _HasUserPrivilegePrivilegeName_QNAME = new QName("urn:aewebservices71", "privilegeName"); |
private final static QName _HasUserPrivilegeAuth_QNAME = new QName("urn:aewebservices71", "auth"); |
private final static QName _HasUserPrivilegeObjectId_QNAME = new QName("urn:aewebservices71", "objectId"); |
private final static QName _HasUserPrivilegeLoginId_QNAME = new QName("urn:aewebservices71", "loginId"); |
private final static QName _PrivilegeType_QNAME = new QName("urn:aewebservices71", "type"); |
private final static QName _PrivilegeObjectUUID_QNAME = new QName("urn:aewebservices71", "objectUUID"); |
private final static QName _PrivilegeName_QNAME = new QName("urn:aewebservices71", "name"); |
private final static QName _GenerateUUIDResponseReturn_QNAME = new QName("urn:aewebservices71", "return"); |
private final static QName _UserWithPreferencesEmailCC_QNAME = new QName("urn:aewebservices71", "emailCC"); |
private final static QName _UserWithPreferencesUuid_QNAME = new QName("urn:aewebservices71", "uuid"); |
private final static QName _UserWithPreferencesEmail_QNAME = new QName("urn:aewebservices71", "email"); |
private final static QName _UserWithPreferencesUserId_QNAME = new QName("urn:aewebservices71", "userId"); |
private final static QName _UserWithPreferencesNamespaceName_QNAME = new QName("urn:aewebservices71", "namespaceName"); |
private final static QName _UserWithPreferencesTimezone_QNAME = new QName("urn:aewebservices71", "timezone"); |
private final static QName _TransitionToStateID_QNAME = new QName("urn:aewebservices71", "toStateID"); |
private final static QName _TransitionTransitionUUID_QNAME = new QName("urn:aewebservices71", "transitionUUID"); |
private final static QName _TransitionFromStateID_QNAME = new QName("urn:aewebservices71", "fromStateID"); |
private final static QName _TransitionToStateUUID_QNAME = new QName("urn:aewebservices71", "toStateUUID"); |
private final static QName _TransitionToState_QNAME = new QName("urn:aewebservices71", "toState"); |
private final static QName _TransitionFromStateUUID_QNAME = new QName("urn:aewebservices71", "fromStateUUID"); |
private final static QName _TransitionFromState_QNAME = new QName("urn:aewebservices71", "fromState"); |
private final static QName _TransitionFullyQualifiedPostIssueProjectName_QNAME = new QName("urn:aewebservices71", "fullyQualifiedPostIssueProjectName"); |
private final static QName _FileAttachmentUrl_QNAME = new QName("urn:aewebservices71", "url"); |
private final static QName _FileAttachmentFileName_QNAME = new QName("urn:aewebservices71", "fileName"); |
private final static QName _GetUserPrivilegesPrivilegeType_QNAME = new QName("urn:aewebservices71", "privilegeType"); |
private final static QName _DeleteItemsByQueryQueryWhereClause_QNAME = new QName("urn:aewebservices71", "queryWhereClause"); |
private final static QName _UserExtendedPhoneNumber_QNAME = new QName("urn:aewebservices71", "phoneNumber"); |
private final static QName _UserExtendedLocale_QNAME = new QName("urn:aewebservices71", "locale"); |
private final static QName _OrderByFirstFieldName_QNAME = new QName("urn:aewebservices71", "firstFieldName"); |
private final static QName _OrderBySecondFieldName_QNAME = new QName("urn:aewebservices71", "secondFieldName"); |
private final static QName _GetSubmitProjectsWithNameTableDBName_QNAME = new QName("urn:aewebservices71", "tableDBName"); |
private final static QName _ExportXmlExportOptions_QNAME = new QName("urn:aewebservices71", "xmlExportOptions"); |
private final static QName _ExportApplicationID_QNAME = new QName("urn:aewebservices71", "applicationID"); |
private final static QName _DeleteItemSItemID_QNAME = new QName("urn:aewebservices71", "sItemID"); |
private final static QName _GetAvailableQuickTransitionsAttributeName_QNAME = new QName("urn:aewebservices71", "attributeName"); |
private final static QName _GetAvailableQuickTransitionsItemID_QNAME = new QName("urn:aewebservices71", "itemID"); |
private final static QName _GetTablesWithNameSolutionName_QNAME = new QName("urn:aewebservices71", "solutionName"); |
private final static QName _ReportDefinitionOrderBy_QNAME = new QName("urn:aewebservices71", "orderBy"); |
private final static QName _ReportInfoProjectName_QNAME = new QName("urn:aewebservices71", "projectName"); |
private final static QName _ReportInfoModifiedBy_QNAME = new QName("urn:aewebservices71", "modifiedBy"); |
private final static QName _ReportInfoProjectUUID_QNAME = new QName("urn:aewebservices71", "projectUUID"); |
private final static QName _UpdateItemResponseOptions_QNAME = new QName("urn:aewebservices71", "responseOptions"); |
private final static QName _UpdateItemItem_QNAME = new QName("urn:aewebservices71", "item"); |
private final static QName _SolutionDataDisplayName_QNAME = new QName("urn:aewebservices71", "displayName"); |
private final static QName _SolutionDataSolutionUUID_QNAME = new QName("urn:aewebservices71", "solutionUUID"); |
private final static QName _SolutionDataPrefix_QNAME = new QName("urn:aewebservices71", "prefix"); |
private final static QName _SolutionDataDescription_QNAME = new QName("urn:aewebservices71", "description"); |
private final static QName _SolutionWithUniqueNameUniqueName_QNAME = new QName("urn:aewebservices71", "uniqueName"); |
private final static QName _GetStateChangeHistoryQueryRange_QNAME = new QName("urn:aewebservices71", "queryRange"); |
private final static QName _CreateFileAttachmentAttachmentContents_QNAME = new QName("urn:aewebservices71", "attachmentContents"); |
private final static QName _AuthPassword_QNAME = new QName("urn:aewebservices71", "password"); |
private final static QName _AuthHostname_QNAME = new QName("urn:aewebservices71", "hostname"); |
private final static QName _AuthLoginAsUserId_QNAME = new QName("urn:aewebservices71", "loginAsUserId"); |
private final static QName _FieldFieldUUID_QNAME = new QName("urn:aewebservices71", "fieldUUID"); |
private final static QName _CreatePrimaryItemWithNameFullyQualifiedProjectName_QNAME = new QName("urn:aewebservices71", "fullyQualifiedProjectName"); |
private final static QName _CreatePrimaryItemWithNameSubmitTransName_QNAME = new QName("urn:aewebservices71", "submitTransName"); |
private final static QName _NoteNote_QNAME = new QName("urn:aewebservices71", "note"); |
private final static QName _NoteTitle_QNAME = new QName("urn:aewebservices71", "title"); |
private final static QName _TTItemClassificationUUID_QNAME = new QName("urn:aewebservices71", "classificationUUID"); |
private final static QName _TTItemGenericItem_QNAME = new QName("urn:aewebservices71", "genericItem"); |
private final static QName _TTItemModifiedDate_QNAME = new QName("urn:aewebservices71", "modifiedDate"); |
private final static QName _TTItemState_QNAME = new QName("urn:aewebservices71", "state"); |
private final static QName _TTItemItemType_QNAME = new QName("urn:aewebservices71", "itemType"); |
private final static QName _TTItemActiveInactive_QNAME = new QName("urn:aewebservices71", "activeInactive"); |
private final static QName _TTItemCreateDate_QNAME = new QName("urn:aewebservices71", "createDate"); |
private final static QName _TTItemOwner_QNAME = new QName("urn:aewebservices71", "owner"); |
private final static QName _TTItemCreatedBy_QNAME = new QName("urn:aewebservices71", "createdBy"); |
private final static QName _TTItemClassification_QNAME = new QName("urn:aewebservices71", "classification"); |
private final static QName _NoteLoggerInfoEmailAddress_QNAME = new QName("urn:aewebservices71", "emailAddress"); |
private final static QName _ReportsFilterReportName_QNAME = new QName("urn:aewebservices71", "reportName"); |
private final static QName _ReportsFilterAuthorID_QNAME = new QName("urn:aewebservices71", "authorID"); |
private final static QName _ReportsFilterTableName_QNAME = new QName("urn:aewebservices71", "tableName"); |
private final static QName _ImportStatusImportUUID_QNAME = new QName("urn:aewebservices71", "importUUID"); |
private final static QName _ReportResultItemId_QNAME = new QName("urn:aewebservices71", "itemId"); |
private final static QName _ReportResultItemURL_QNAME = new QName("urn:aewebservices71", "itemURL"); |
private final static QName _ReportResultItemName_QNAME = new QName("urn:aewebservices71", "itemName"); |
private final static QName _GetItemsByQueryOrderByClause_QNAME = new QName("urn:aewebservices71", "orderByClause"); |
private final static QName _ImportImportResponseID_QNAME = new QName("urn:aewebservices71", "importResponseID"); |
private final static QName _ImportImportResponseEndPoint_QNAME = new QName("urn:aewebservices71", "importResponseEndPoint"); |
private final static QName _ImportAdminRepositoryID_QNAME = new QName("urn:aewebservices71", "adminRepositoryID"); |
private final static QName _ImportXmlImportOptions_QNAME = new QName("urn:aewebservices71", "xmlImportOptions"); |
private final static QName _TableDataTableUUID_QNAME = new QName("urn:aewebservices71", "tableUUID"); |
private final static QName _RunReportReportUUID_QNAME = new QName("urn:aewebservices71", "reportUUID"); |
private final static QName _ImportCurrentStatusCurrentStep_QNAME = new QName("urn:aewebservices71", "currentStep"); |
private final static QName _ValueDisplayValue_QNAME = new QName("urn:aewebservices71", "displayValue"); |
private final static QName _ValueInternalValue_QNAME = new QName("urn:aewebservices71", "internalValue"); |
private final static QName _GetReportsReportsFilter_QNAME = new QName("urn:aewebservices71", "reportsFilter"); |
private final static QName _ProjectDataFullyQualifiedName_QNAME = new QName("urn:aewebservices71", "fullyQualifiedName"); |
private final static QName _DeleteMashupSMashupName_QNAME = new QName("urn:aewebservices71", "sMashupName"); |
private final static QName _ItemItemUUID_QNAME = new QName("urn:aewebservices71", "itemUUID"); |
private final static QName _NameValueValue_QNAME = new QName("urn:aewebservices71", "value"); |
private final static QName _NameValueSetValueMethod_QNAME = new QName("urn:aewebservices71", "setValueMethod"); |
private final static QName _NameValueSetValueBy_QNAME = new QName("urn:aewebservices71", "setValueBy"); |
private final static QName _ExtraValueValueType_QNAME = new QName("urn:aewebservices71", "valueType"); |
private final static QName _ApplicationDataAppDefUUID_QNAME = new QName("urn:aewebservices71", "appDefUUID"); |
private final static QName _ApplicationDataRevision_QNAME = new QName("urn:aewebservices71", "revision"); |
private final static QName _ApplicationDataApplicationUUID_QNAME = new QName("urn:aewebservices71", "applicationUUID"); |
/** |
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: net.brutex.sbm.wsclient |
* |
*/ |
public ObjectFactory() { |
} |
/** |
* Create an instance of {@link StateChangeHistory } |
* |
*/ |
public StateChangeHistory createStateChangeHistory() { |
return new StateChangeHistory(); |
} |
/** |
* Create an instance of {@link HasUserPrivilege } |
* |
*/ |
public HasUserPrivilege createHasUserPrivilege() { |
return new HasUserPrivilege(); |
} |
/** |
* Create an instance of {@link GetSubmitProjects } |
* |
*/ |
public GetSubmitProjects createGetSubmitProjects() { |
return new GetSubmitProjects(); |
} |
/** |
* Create an instance of {@link GetReportsResult } |
* |
*/ |
public GetReportsResult createGetReportsResult() { |
return new GetReportsResult(); |
} |
/** |
* Create an instance of {@link GetTablesResponse } |
* |
*/ |
public GetTablesResponse createGetTablesResponse() { |
return new GetTablesResponse(); |
} |
/** |
* Create an instance of {@link Privilege } |
* |
*/ |
public Privilege createPrivilege() { |
return new Privilege(); |
} |
/** |
* Create an instance of {@link DeleteItemsResponse } |
* |
*/ |
public DeleteItemsResponse createDeleteItemsResponse() { |
return new DeleteItemsResponse(); |
} |
/** |
* Create an instance of {@link GenerateUUIDResponse } |
* |
*/ |
public GenerateUUIDResponse createGenerateUUIDResponse() { |
return new GenerateUUIDResponse(); |
} |
/** |
* Create an instance of {@link GetUserPrivilegesResponse } |
* |
*/ |
public GetUserPrivilegesResponse createGetUserPrivilegesResponse() { |
return new GetUserPrivilegesResponse(); |
} |
/** |
* Create an instance of {@link CreateAuxItemsResponse } |
* |
*/ |
public CreateAuxItemsResponse createCreateAuxItemsResponse() { |
return new CreateAuxItemsResponse(); |
} |
/** |
* Create an instance of {@link UpdateItemResponse } |
* |
*/ |
public UpdateItemResponse createUpdateItemResponse() { |
return new UpdateItemResponse(); |
} |
/** |
* Create an instance of {@link UserWithPreferences } |
* |
*/ |
public UserWithPreferences createUserWithPreferences() { |
return new UserWithPreferences(); |
} |
/** |
* Create an instance of {@link GetVersion } |
* |
*/ |
public GetVersion createGetVersion() { |
return new GetVersion(); |
} |
/** |
* Create an instance of {@link GetAvailableTransitionsResponse } |
* |
*/ |
public GetAvailableTransitionsResponse createGetAvailableTransitionsResponse() { |
return new GetAvailableTransitionsResponse(); |
} |
/** |
* Create an instance of {@link GetAvailableQuickTransitionsResponse } |
* |
*/ |
public GetAvailableQuickTransitionsResponse createGetAvailableQuickTransitionsResponse() { |
return new GetAvailableQuickTransitionsResponse(); |
} |
/** |
* Create an instance of {@link Transition } |
* |
*/ |
public Transition createTransition() { |
return new Transition(); |
} |
/** |
* Create an instance of {@link GetUserResponse } |
* |
*/ |
public GetUserResponse createGetUserResponse() { |
return new GetUserResponse(); |
} |
/** |
* Create an instance of {@link GetAvailableTransitionsWithStateIDsResponse } |
* |
*/ |
public GetAvailableTransitionsWithStateIDsResponse createGetAvailableTransitionsWithStateIDsResponse() { |
return new GetAvailableTransitionsWithStateIDsResponse(); |
} |
/** |
* Create an instance of {@link GetSolutionsWithUniqueNameResponse } |
* |
*/ |
public GetSolutionsWithUniqueNameResponse createGetSolutionsWithUniqueNameResponse() { |
return new GetSolutionsWithUniqueNameResponse(); |
} |
/** |
* Create an instance of {@link GetItemsResponse } |
* |
*/ |
public GetItemsResponse createGetItemsResponse() { |
return new GetItemsResponse(); |
} |
/** |
* Create an instance of {@link GetFileAttachmentResponse } |
* |
*/ |
public GetFileAttachmentResponse createGetFileAttachmentResponse() { |
return new GetFileAttachmentResponse(); |
} |
/** |
* Create an instance of {@link FileContents } |
* |
*/ |
public FileContents createFileContents() { |
return new FileContents(); |
} |
/** |
* Create an instance of {@link FileAttachment } |
* |
*/ |
public FileAttachment createFileAttachment() { |
return new FileAttachment(); |
} |
/** |
* Create an instance of {@link GetUserPrivileges } |
* |
*/ |
public GetUserPrivileges createGetUserPrivileges() { |
return new GetUserPrivileges(); |
} |
/** |
* Create an instance of {@link DeleteItemsByQuery } |
* |
*/ |
public DeleteItemsByQuery createDeleteItemsByQuery() { |
return new DeleteItemsByQuery(); |
} |
/** |
* Create an instance of {@link UserExtended } |
* |
*/ |
public UserExtended createUserExtended() { |
return new UserExtended(); |
} |
/** |
* Create an instance of {@link OrderBy } |
* |
*/ |
public OrderBy createOrderBy() { |
return new OrderBy(); |
} |
/** |
* Create an instance of {@link GetSolutions } |
* |
*/ |
public GetSolutions createGetSolutions() { |
return new GetSolutions(); |
} |
/** |
* Create an instance of {@link GetSubmitProjectsWithName } |
* |
*/ |
public GetSubmitProjectsWithName createGetSubmitProjectsWithName() { |
return new GetSubmitProjectsWithName(); |
} |
/** |
* Create an instance of {@link Export } |
* |
*/ |
public Export createExport() { |
return new Export(); |
} |
/** |
* Create an instance of {@link GetUserExtended } |
* |
*/ |
public GetUserExtended createGetUserExtended() { |
return new GetUserExtended(); |
} |
/** |
* Create an instance of {@link CreatePrimaryItemsWithNameResponse } |
* |
*/ |
public CreatePrimaryItemsWithNameResponse createCreatePrimaryItemsWithNameResponse() { |
return new CreatePrimaryItemsWithNameResponse(); |
} |
/** |
* Create an instance of {@link GetApplicationsResponse } |
* |
*/ |
public GetApplicationsResponse createGetApplicationsResponse() { |
return new GetApplicationsResponse(); |
} |
/** |
* Create an instance of {@link DeleteItem } |
* |
*/ |
public DeleteItem createDeleteItem() { |
return new DeleteItem(); |
} |
/** |
* Create an instance of {@link GetAvailableQuickTransitions } |
* |
*/ |
public GetAvailableQuickTransitions createGetAvailableQuickTransitions() { |
return new GetAvailableQuickTransitions(); |
} |
/** |
* Create an instance of {@link ReportDefinition } |
* |
*/ |
public ReportDefinition createReportDefinition() { |
return new ReportDefinition(); |
} |
/** |
* Create an instance of {@link GetTablesWithName } |
* |
*/ |
public GetTablesWithName createGetTablesWithName() { |
return new GetTablesWithName(); |
} |
/** |
* Create an instance of {@link ReportInfo } |
* |
*/ |
public ReportInfo createReportInfo() { |
return new ReportInfo(); |
} |
/** |
* Create an instance of {@link UpdateItem } |
* |
*/ |
public UpdateItem createUpdateItem() { |
return new UpdateItem(); |
} |
/** |
* Create an instance of {@link DeleteAttachment } |
* |
*/ |
public DeleteAttachment createDeleteAttachment() { |
return new DeleteAttachment(); |
} |
/** |
* Create an instance of {@link GetItemsByQueryResponse } |
* |
*/ |
public GetItemsByQueryResponse createGetItemsByQueryResponse() { |
return new GetItemsByQueryResponse(); |
} |
/** |
* Create an instance of {@link SolutionData } |
* |
*/ |
public SolutionData createSolutionData() { |
return new SolutionData(); |
} |
/** |
* Create an instance of {@link GetAvailableSubmitTransitionsWithNameResponse } |
* |
*/ |
public GetAvailableSubmitTransitionsWithNameResponse createGetAvailableSubmitTransitionsWithNameResponse() { |
return new GetAvailableSubmitTransitionsWithNameResponse(); |
} |
/** |
* Create an instance of {@link GetUser } |
* |
*/ |
public GetUser createGetUser() { |
return new GetUser(); |
} |
/** |
* Create an instance of {@link SolutionWithUniqueName } |
* |
*/ |
public SolutionWithUniqueName createSolutionWithUniqueName() { |
return new SolutionWithUniqueName(); |
} |
/** |
* Create an instance of {@link GetStateChangeHistory } |
* |
*/ |
public GetStateChangeHistory createGetStateChangeHistory() { |
return new GetStateChangeHistory(); |
} |
/** |
* Create an instance of {@link CreateFileAttachment } |
* |
*/ |
public CreateFileAttachment createCreateFileAttachment() { |
return new CreateFileAttachment(); |
} |
/** |
* Create an instance of {@link URLAttachment } |
* |
*/ |
public URLAttachment createURLAttachment() { |
return new URLAttachment(); |
} |
/** |
* Create an instance of {@link GetApplications } |
* |
*/ |
public GetApplications createGetApplications() { |
return new GetApplications(); |
} |
/** |
* Create an instance of {@link UpdateItemsResponse } |
* |
*/ |
public UpdateItemsResponse createUpdateItemsResponse() { |
return new UpdateItemsResponse(); |
} |
/** |
* Create an instance of {@link UpdateItemWithNameResponse } |
* |
*/ |
public UpdateItemWithNameResponse createUpdateItemWithNameResponse() { |
return new UpdateItemWithNameResponse(); |
} |
/** |
* Create an instance of {@link GetNoteLoggerInfoResponse } |
* |
*/ |
public GetNoteLoggerInfoResponse createGetNoteLoggerInfoResponse() { |
return new GetNoteLoggerInfoResponse(); |
} |
/** |
* Create an instance of {@link CreateFileAttachmentResponse } |
* |
*/ |
public CreateFileAttachmentResponse createCreateFileAttachmentResponse() { |
return new CreateFileAttachmentResponse(); |
} |
/** |
* Create an instance of {@link GetItems } |
* |
*/ |
public GetItems createGetItems() { |
return new GetItems(); |
} |
/** |
* Create an instance of {@link Auth } |
* |
*/ |
public Auth createAuth() { |
return new Auth(); |
} |
/** |
* Create an instance of {@link GetAvailableSubmitTransitions } |
* |
*/ |
public GetAvailableSubmitTransitions createGetAvailableSubmitTransitions() { |
return new GetAvailableSubmitTransitions(); |
} |
/** |
* Create an instance of {@link Field } |
* |
*/ |
public Field createField() { |
return new Field(); |
} |
/** |
* Create an instance of {@link Note } |
* |
*/ |
public Note createNote() { |
return new Note(); |
} |
/** |
* Create an instance of {@link CreatePrimaryItemWithName } |
* |
*/ |
public CreatePrimaryItemWithName createCreatePrimaryItemWithName() { |
return new CreatePrimaryItemWithName(); |
} |
/** |
* Create an instance of {@link CreateAuxItemResponse } |
* |
*/ |
public CreateAuxItemResponse createCreateAuxItemResponse() { |
return new CreateAuxItemResponse(); |
} |
/** |
* Create an instance of {@link TTItem } |
* |
*/ |
public TTItem createTTItem() { |
return new TTItem(); |
} |
/** |
* Create an instance of {@link GetFileAttachment } |
* |
*/ |
public GetFileAttachment createGetFileAttachment() { |
return new GetFileAttachment(); |
} |
/** |
* Create an instance of {@link CreatePrimaryItemsResponse } |
* |
*/ |
public CreatePrimaryItemsResponse createCreatePrimaryItemsResponse() { |
return new CreatePrimaryItemsResponse(); |
} |
/** |
* Create an instance of {@link GetTablesWithNameResponse } |
* |
*/ |
public GetTablesWithNameResponse createGetTablesWithNameResponse() { |
return new GetTablesWithNameResponse(); |
} |
/** |
* Create an instance of {@link ItemLink } |
* |
*/ |
public ItemLink createItemLink() { |
return new ItemLink(); |
} |
/** |
* Create an instance of {@link CreateAuxItemWithNameResponse } |
* |
*/ |
public CreateAuxItemWithNameResponse createCreateAuxItemWithNameResponse() { |
return new CreateAuxItemWithNameResponse(); |
} |
/** |
* Create an instance of {@link CreatePrimaryItems } |
* |
*/ |
public CreatePrimaryItems createCreatePrimaryItems() { |
return new CreatePrimaryItems(); |
} |
/** |
* Create an instance of {@link GetSubmitProjectsResponse } |
* |
*/ |
public GetSubmitProjectsResponse createGetSubmitProjectsResponse() { |
return new GetSubmitProjectsResponse(); |
} |
/** |
* Create an instance of {@link ReportsFilter } |
* |
*/ |
public ReportsFilter createReportsFilter() { |
return new ReportsFilter(); |
} |
/** |
* Create an instance of {@link NoteLoggerInfo } |
* |
*/ |
public NoteLoggerInfo createNoteLoggerInfo() { |
return new NoteLoggerInfo(); |
} |
/** |
* Create an instance of {@link CreatePrimaryItem } |
* |
*/ |
public CreatePrimaryItem createCreatePrimaryItem() { |
return new CreatePrimaryItem(); |
} |
/** |
* Create an instance of {@link UpdateFileAttachmentResponse } |
* |
*/ |
public UpdateFileAttachmentResponse createUpdateFileAttachmentResponse() { |
return new UpdateFileAttachmentResponse(); |
} |
/** |
* Create an instance of {@link ImportStatus } |
* |
*/ |
public ImportStatus createImportStatus() { |
return new ImportStatus(); |
} |
/** |
* Create an instance of {@link LogoutResponse } |
* |
*/ |
public LogoutResponse createLogoutResponse() { |
return new LogoutResponse(); |
} |
/** |
* Create an instance of {@link ReportResult } |
* |
*/ |
public ReportResult createReportResult() { |
return new ReportResult(); |
} |
/** |
* Create an instance of {@link GetItemsByQuery } |
* |
*/ |
public GetItemsByQuery createGetItemsByQuery() { |
return new GetItemsByQuery(); |
} |
/** |
* Create an instance of {@link CreatePrimaryItemsWithName } |
* |
*/ |
public CreatePrimaryItemsWithName createCreatePrimaryItemsWithName() { |
return new CreatePrimaryItemsWithName(); |
} |
/** |
* Create an instance of {@link GetUserWithPreferencesResponse } |
* |
*/ |
public GetUserWithPreferencesResponse createGetUserWithPreferencesResponse() { |
return new GetUserWithPreferencesResponse(); |
} |
/** |
* Create an instance of {@link DeleteItemsByQueryResponse } |
* |
*/ |
public DeleteItemsByQueryResponse createDeleteItemsByQueryResponse() { |
return new DeleteItemsByQueryResponse(); |
} |
/** |
* Create an instance of {@link DeleteItemResponse } |
* |
*/ |
public DeleteItemResponse createDeleteItemResponse() { |
return new DeleteItemResponse(); |
} |
/** |
* Create an instance of {@link CreatePrimaryItemWithNameResponse } |
* |
*/ |
public CreatePrimaryItemWithNameResponse createCreatePrimaryItemWithNameResponse() { |
return new CreatePrimaryItemWithNameResponse(); |
} |
/** |
* Create an instance of {@link GetTables } |
* |
*/ |
public GetTables createGetTables() { |
return new GetTables(); |
} |
/** |
* Create an instance of {@link UpdateItemsWithNameResponse } |
* |
*/ |
public UpdateItemsWithNameResponse createUpdateItemsWithNameResponse() { |
return new UpdateItemsWithNameResponse(); |
} |
/** |
* Create an instance of {@link Import } |
* |
*/ |
public Import createImport() { |
return new Import(); |
} |
/** |
* Create an instance of {@link TableData } |
* |
*/ |
public TableData createTableData() { |
return new TableData(); |
} |
/** |
* Create an instance of {@link User } |
* |
*/ |
public User createUser() { |
return new User(); |
} |
/** |
* Create an instance of {@link ExportResponse } |
* |
*/ |
public ExportResponse createExportResponse() { |
return new ExportResponse(); |
} |
/** |
* Create an instance of {@link RunReport } |
* |
*/ |
public RunReport createRunReport() { |
return new RunReport(); |
} |
/** |
* Create an instance of {@link GetNoteLoggerInfo } |
* |
*/ |
public GetNoteLoggerInfo createGetNoteLoggerInfo() { |
return new GetNoteLoggerInfo(); |
} |
/** |
* Create an instance of {@link CreateAuxItems } |
* |
*/ |
public CreateAuxItems createCreateAuxItems() { |
return new CreateAuxItems(); |
} |
/** |
* Create an instance of {@link GetUserExtendedResponse } |
* |
*/ |
public GetUserExtendedResponse createGetUserExtendedResponse() { |
return new GetUserExtendedResponse(); |
} |
/** |
* Create an instance of {@link DeleteItemsByQueryWithName } |
* |
*/ |
public DeleteItemsByQueryWithName createDeleteItemsByQueryWithName() { |
return new DeleteItemsByQueryWithName(); |
} |
/** |
* Create an instance of {@link CreateAuxItemWithName } |
* |
*/ |
public CreateAuxItemWithName createCreateAuxItemWithName() { |
return new CreateAuxItemWithName(); |
} |
/** |
* Create an instance of {@link UpdateFileAttachment } |
* |
*/ |
public UpdateFileAttachment createUpdateFileAttachment() { |
return new UpdateFileAttachment(); |
} |
/** |
* Create an instance of {@link GetReportsResponse } |
* |
*/ |
public GetReportsResponse createGetReportsResponse() { |
return new GetReportsResponse(); |
} |
/** |
* Create an instance of {@link FileAttachmentContents } |
* |
*/ |
public FileAttachmentContents createFileAttachmentContents() { |
return new FileAttachmentContents(); |
} |
/** |
* Create an instance of {@link GenerateUUID } |
* |
*/ |
public GenerateUUID createGenerateUUID() { |
return new GenerateUUID(); |
} |
/** |
* Create an instance of {@link ImportCurrentStatus } |
* |
*/ |
public ImportCurrentStatus createImportCurrentStatus() { |
return new ImportCurrentStatus(); |
} |
/** |
* Create an instance of {@link UpdateItems } |
* |
*/ |
public UpdateItems createUpdateItems() { |
return new UpdateItems(); |
} |
/** |
* Create an instance of {@link CreateAuxItem } |
* |
*/ |
public CreateAuxItem createCreateAuxItem() { |
return new CreateAuxItem(); |
} |
/** |
* Create an instance of {@link GetAvailableSubmitTransitionsWithName } |
* |
*/ |
public GetAvailableSubmitTransitionsWithName createGetAvailableSubmitTransitionsWithName() { |
return new GetAvailableSubmitTransitionsWithName(); |
} |
/** |
* Create an instance of {@link Value } |
* |
*/ |
public Value createValue() { |
return new Value(); |
} |
/** |
* Create an instance of {@link IsUserValid } |
* |
*/ |
public IsUserValid createIsUserValid() { |
return new IsUserValid(); |
} |
/** |
* Create an instance of {@link GetReports } |
* |
*/ |
public GetReports createGetReports() { |
return new GetReports(); |
} |
/** |
* Create an instance of {@link ProjectData } |
* |
*/ |
public ProjectData createProjectData() { |
return new ProjectData(); |
} |
/** |
* Create an instance of {@link QueryRange } |
* |
*/ |
public QueryRange createQueryRange() { |
return new QueryRange(); |
} |
/** |
* Create an instance of {@link GetItem } |
* |
*/ |
public GetItem createGetItem() { |
return new GetItem(); |
} |
/** |
* Create an instance of {@link DeleteAttachmentResponse } |
* |
*/ |
public DeleteAttachmentResponse createDeleteAttachmentResponse() { |
return new DeleteAttachmentResponse(); |
} |
/** |
* Create an instance of {@link GetUserWithPreferences } |
* |
*/ |
public GetUserWithPreferences createGetUserWithPreferences() { |
return new GetUserWithPreferences(); |
} |
/** |
* Create an instance of {@link DeleteItems } |
* |
*/ |
public DeleteItems createDeleteItems() { |
return new DeleteItems(); |
} |
/** |
* Create an instance of {@link RunReportResponse } |
* |
*/ |
public RunReportResponse createRunReportResponse() { |
return new RunReportResponse(); |
} |
/** |
* Create an instance of {@link ImportResponse } |
* |
*/ |
public ImportResponse createImportResponse() { |
return new ImportResponse(); |
} |
/** |
* Create an instance of {@link CreateAuxItemsWithNameResponse } |
* |
*/ |
public CreateAuxItemsWithNameResponse createCreateAuxItemsWithNameResponse() { |
return new CreateAuxItemsWithNameResponse(); |
} |
/** |
* Create an instance of {@link HasUserPrivilegeResponse } |
* |
*/ |
public HasUserPrivilegeResponse createHasUserPrivilegeResponse() { |
return new HasUserPrivilegeResponse(); |
} |
/** |
* Create an instance of {@link GetSolutionsWithUniqueName } |
* |
*/ |
public GetSolutionsWithUniqueName createGetSolutionsWithUniqueName() { |
return new GetSolutionsWithUniqueName(); |
} |
/** |
* Create an instance of {@link Logout } |
* |
*/ |
public Logout createLogout() { |
return new Logout(); |
} |
/** |
* Create an instance of {@link UpdateItemWithName } |
* |
*/ |
public UpdateItemWithName createUpdateItemWithName() { |
return new UpdateItemWithName(); |
} |
/** |
* Create an instance of {@link GetItemsByQueryWithName } |
* |
*/ |
public GetItemsByQueryWithName createGetItemsByQueryWithName() { |
return new GetItemsByQueryWithName(); |
} |
/** |
* Create an instance of {@link GetItemsByQueryWithNameResponse } |
* |
*/ |
public GetItemsByQueryWithNameResponse createGetItemsByQueryWithNameResponse() { |
return new GetItemsByQueryWithNameResponse(); |
} |
/** |
* Create an instance of {@link Item } |
* |
*/ |
public Item createItem() { |
return new Item(); |
} |
/** |
* Create an instance of {@link DeleteMashup } |
* |
*/ |
public DeleteMashup createDeleteMashup() { |
return new DeleteMashup(); |
} |
/** |
* Create an instance of {@link ImportStatusResponse } |
* |
*/ |
public ImportStatusResponse createImportStatusResponse() { |
return new ImportStatusResponse(); |
} |
/** |
* Create an instance of {@link GetAvailableTransitions } |
* |
*/ |
public GetAvailableTransitions createGetAvailableTransitions() { |
return new GetAvailableTransitions(); |
} |
/** |
* Create an instance of {@link GetStateChangeHistoryResult } |
* |
*/ |
public GetStateChangeHistoryResult createGetStateChangeHistoryResult() { |
return new GetStateChangeHistoryResult(); |
} |
/** |
* Create an instance of {@link GetItemResponse } |
* |
*/ |
public GetItemResponse createGetItemResponse() { |
return new GetItemResponse(); |
} |
/** |
* Create an instance of {@link DeleteItemsByQueryWithNameResponse } |
* |
*/ |
public DeleteItemsByQueryWithNameResponse createDeleteItemsByQueryWithNameResponse() { |
return new DeleteItemsByQueryWithNameResponse(); |
} |
/** |
* Create an instance of {@link GetVersionResponse } |
* |
*/ |
public GetVersionResponse createGetVersionResponse() { |
return new GetVersionResponse(); |
} |
/** |
* Create an instance of {@link GetSubmitProjectsWithNameResponse } |
* |
*/ |
public GetSubmitProjectsWithNameResponse createGetSubmitProjectsWithNameResponse() { |
return new GetSubmitProjectsWithNameResponse(); |
} |
/** |
* Create an instance of {@link CreateAuxItemsWithName } |
* |
*/ |
public CreateAuxItemsWithName createCreateAuxItemsWithName() { |
return new CreateAuxItemsWithName(); |
} |
/** |
* Create an instance of {@link DeleteMashupResponse } |
* |
*/ |
public DeleteMashupResponse createDeleteMashupResponse() { |
return new DeleteMashupResponse(); |
} |
/** |
* Create an instance of {@link IsUserValidResponse } |
* |
*/ |
public IsUserValidResponse createIsUserValidResponse() { |
return new IsUserValidResponse(); |
} |
/** |
* Create an instance of {@link GetAvailableSubmitTransitionsResponse } |
* |
*/ |
public GetAvailableSubmitTransitionsResponse createGetAvailableSubmitTransitionsResponse() { |
return new GetAvailableSubmitTransitionsResponse(); |
} |
/** |
* Create an instance of {@link NameValue } |
* |
*/ |
public NameValue createNameValue() { |
return new NameValue(); |
} |
/** |
* Create an instance of {@link UpdateItemsWithName } |
* |
*/ |
public UpdateItemsWithName createUpdateItemsWithName() { |
return new UpdateItemsWithName(); |
} |
/** |
* Create an instance of {@link GetSolutionsResponse } |
* |
*/ |
public GetSolutionsResponse createGetSolutionsResponse() { |
return new GetSolutionsResponse(); |
} |
/** |
* Create an instance of {@link GetAvailableTransitionsWithStateIDs } |
* |
*/ |
public GetAvailableTransitionsWithStateIDs createGetAvailableTransitionsWithStateIDs() { |
return new GetAvailableTransitionsWithStateIDs(); |
} |
/** |
* Create an instance of {@link ExtraValue } |
* |
*/ |
public ExtraValue createExtraValue() { |
return new ExtraValue(); |
} |
/** |
* Create an instance of {@link RunReportResult } |
* |
*/ |
public RunReportResult createRunReportResult() { |
return new RunReportResult(); |
} |
/** |
* Create an instance of {@link CreatePrimaryItemResponse } |
* |
*/ |
public CreatePrimaryItemResponse createCreatePrimaryItemResponse() { |
return new CreatePrimaryItemResponse(); |
} |
/** |
* Create an instance of {@link ApplicationData } |
* |
*/ |
public ApplicationData createApplicationData() { |
return new ApplicationData(); |
} |
/** |
* Create an instance of {@link GetStateChangeHistoryResponse } |
* |
*/ |
public GetStateChangeHistoryResponse createGetStateChangeHistoryResponse() { |
return new GetStateChangeHistoryResponse(); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "AEWebservicesFault") |
public JAXBElement<String> createAEWebservicesFault(String value) { |
return new JAXBElement<String>(_AEWebservicesFault_QNAME, String.class, null, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "transitionName", scope = StateChangeHistory.class) |
public JAXBElement<String> createStateChangeHistoryTransitionName(String value) { |
return new JAXBElement<String>(_StateChangeHistoryTransitionName_QNAME, String.class, StateChangeHistory.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "userName", scope = StateChangeHistory.class) |
public JAXBElement<String> createStateChangeHistoryUserName(String value) { |
return new JAXBElement<String>(_StateChangeHistoryUserName_QNAME, String.class, StateChangeHistory.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "ownerName", scope = StateChangeHistory.class) |
public JAXBElement<String> createStateChangeHistoryOwnerName(String value) { |
return new JAXBElement<String>(_StateChangeHistoryOwnerName_QNAME, String.class, StateChangeHistory.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "newStateName", scope = StateChangeHistory.class) |
public JAXBElement<String> createStateChangeHistoryNewStateName(String value) { |
return new JAXBElement<String>(_StateChangeHistoryNewStateName_QNAME, String.class, StateChangeHistory.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "privilegeName", scope = HasUserPrivilege.class) |
public JAXBElement<String> createHasUserPrivilegePrivilegeName(String value) { |
return new JAXBElement<String>(_HasUserPrivilegePrivilegeName_QNAME, String.class, HasUserPrivilege.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = HasUserPrivilege.class) |
public JAXBElement<Auth> createHasUserPrivilegeAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, HasUserPrivilege.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "objectId", scope = HasUserPrivilege.class) |
public JAXBElement<String> createHasUserPrivilegeObjectId(String value) { |
return new JAXBElement<String>(_HasUserPrivilegeObjectId_QNAME, String.class, HasUserPrivilege.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "loginId", scope = HasUserPrivilege.class) |
public JAXBElement<String> createHasUserPrivilegeLoginId(String value) { |
return new JAXBElement<String>(_HasUserPrivilegeLoginId_QNAME, String.class, HasUserPrivilege.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = GetSubmitProjects.class) |
public JAXBElement<Auth> createGetSubmitProjectsAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, GetSubmitProjects.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "type", scope = Privilege.class) |
public JAXBElement<String> createPrivilegeType(String value) { |
return new JAXBElement<String>(_PrivilegeType_QNAME, String.class, Privilege.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "objectUUID", scope = Privilege.class) |
public JAXBElement<String> createPrivilegeObjectUUID(String value) { |
return new JAXBElement<String>(_PrivilegeObjectUUID_QNAME, String.class, Privilege.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "name", scope = Privilege.class) |
public JAXBElement<String> createPrivilegeName(String value) { |
return new JAXBElement<String>(_PrivilegeName_QNAME, String.class, Privilege.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "return", scope = GenerateUUIDResponse.class) |
public JAXBElement<String> createGenerateUUIDResponseReturn(String value) { |
return new JAXBElement<String>(_GenerateUUIDResponseReturn_QNAME, String.class, GenerateUUIDResponse.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link TTItem }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "return", scope = UpdateItemResponse.class) |
public JAXBElement<TTItem> createUpdateItemResponseReturn(TTItem value) { |
return new JAXBElement<TTItem>(_GenerateUUIDResponseReturn_QNAME, TTItem.class, UpdateItemResponse.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "emailCC", scope = UserWithPreferences.class) |
public JAXBElement<String> createUserWithPreferencesEmailCC(String value) { |
return new JAXBElement<String>(_UserWithPreferencesEmailCC_QNAME, String.class, UserWithPreferences.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "userName", scope = UserWithPreferences.class) |
public JAXBElement<String> createUserWithPreferencesUserName(String value) { |
return new JAXBElement<String>(_StateChangeHistoryUserName_QNAME, String.class, UserWithPreferences.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "uuid", scope = UserWithPreferences.class) |
public JAXBElement<String> createUserWithPreferencesUuid(String value) { |
return new JAXBElement<String>(_UserWithPreferencesUuid_QNAME, String.class, UserWithPreferences.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "email", scope = UserWithPreferences.class) |
public JAXBElement<String> createUserWithPreferencesEmail(String value) { |
return new JAXBElement<String>(_UserWithPreferencesEmail_QNAME, String.class, UserWithPreferences.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "userId", scope = UserWithPreferences.class) |
public JAXBElement<String> createUserWithPreferencesUserId(String value) { |
return new JAXBElement<String>(_UserWithPreferencesUserId_QNAME, String.class, UserWithPreferences.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "namespaceName", scope = UserWithPreferences.class) |
public JAXBElement<String> createUserWithPreferencesNamespaceName(String value) { |
return new JAXBElement<String>(_UserWithPreferencesNamespaceName_QNAME, String.class, UserWithPreferences.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "timezone", scope = UserWithPreferences.class) |
public JAXBElement<String> createUserWithPreferencesTimezone(String value) { |
return new JAXBElement<String>(_UserWithPreferencesTimezone_QNAME, String.class, UserWithPreferences.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "toStateID", scope = Transition.class) |
public JAXBElement<BigInteger> createTransitionToStateID(BigInteger value) { |
return new JAXBElement<BigInteger>(_TransitionToStateID_QNAME, BigInteger.class, Transition.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "transitionUUID", scope = Transition.class) |
public JAXBElement<String> createTransitionTransitionUUID(String value) { |
return new JAXBElement<String>(_TransitionTransitionUUID_QNAME, String.class, Transition.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "fromStateID", scope = Transition.class) |
public JAXBElement<BigInteger> createTransitionFromStateID(BigInteger value) { |
return new JAXBElement<BigInteger>(_TransitionFromStateID_QNAME, BigInteger.class, Transition.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "toStateUUID", scope = Transition.class) |
public JAXBElement<String> createTransitionToStateUUID(String value) { |
return new JAXBElement<String>(_TransitionToStateUUID_QNAME, String.class, Transition.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "name", scope = Transition.class) |
public JAXBElement<String> createTransitionName(String value) { |
return new JAXBElement<String>(_PrivilegeName_QNAME, String.class, Transition.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "toState", scope = Transition.class) |
public JAXBElement<String> createTransitionToState(String value) { |
return new JAXBElement<String>(_TransitionToState_QNAME, String.class, Transition.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "fromStateUUID", scope = Transition.class) |
public JAXBElement<String> createTransitionFromStateUUID(String value) { |
return new JAXBElement<String>(_TransitionFromStateUUID_QNAME, String.class, Transition.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "fromState", scope = Transition.class) |
public JAXBElement<String> createTransitionFromState(String value) { |
return new JAXBElement<String>(_TransitionFromState_QNAME, String.class, Transition.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "fullyQualifiedPostIssueProjectName", scope = Transition.class) |
public JAXBElement<String> createTransitionFullyQualifiedPostIssueProjectName(String value) { |
return new JAXBElement<String>(_TransitionFullyQualifiedPostIssueProjectName_QNAME, String.class, Transition.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link User }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "return", scope = GetUserResponse.class) |
public JAXBElement<User> createGetUserResponseReturn(User value) { |
return new JAXBElement<User>(_GenerateUUIDResponseReturn_QNAME, User.class, GetUserResponse.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link FileAttachmentContents }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "return", scope = GetFileAttachmentResponse.class) |
public JAXBElement<FileAttachmentContents> createGetFileAttachmentResponseReturn(FileAttachmentContents value) { |
return new JAXBElement<FileAttachmentContents>(_GenerateUUIDResponseReturn_QNAME, FileAttachmentContents.class, GetFileAttachmentResponse.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "url", scope = FileAttachment.class) |
public JAXBElement<String> createFileAttachmentUrl(String value) { |
return new JAXBElement<String>(_FileAttachmentUrl_QNAME, String.class, FileAttachment.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "fileName", scope = FileAttachment.class) |
public JAXBElement<String> createFileAttachmentFileName(String value) { |
return new JAXBElement<String>(_FileAttachmentFileName_QNAME, String.class, FileAttachment.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "name", scope = FileAttachment.class) |
public JAXBElement<String> createFileAttachmentName(String value) { |
return new JAXBElement<String>(_PrivilegeName_QNAME, String.class, FileAttachment.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = GetUserPrivileges.class) |
public JAXBElement<Auth> createGetUserPrivilegesAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, GetUserPrivileges.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "objectId", scope = GetUserPrivileges.class) |
public JAXBElement<String> createGetUserPrivilegesObjectId(String value) { |
return new JAXBElement<String>(_HasUserPrivilegeObjectId_QNAME, String.class, GetUserPrivileges.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "loginId", scope = GetUserPrivileges.class) |
public JAXBElement<String> createGetUserPrivilegesLoginId(String value) { |
return new JAXBElement<String>(_HasUserPrivilegeLoginId_QNAME, String.class, GetUserPrivileges.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "privilegeType", scope = GetUserPrivileges.class) |
public JAXBElement<String> createGetUserPrivilegesPrivilegeType(String value) { |
return new JAXBElement<String>(_GetUserPrivilegesPrivilegeType_QNAME, String.class, GetUserPrivileges.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = DeleteItemsByQuery.class) |
public JAXBElement<Auth> createDeleteItemsByQueryAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, DeleteItemsByQuery.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "queryWhereClause", scope = DeleteItemsByQuery.class) |
public JAXBElement<String> createDeleteItemsByQueryQueryWhereClause(String value) { |
return new JAXBElement<String>(_DeleteItemsByQueryQueryWhereClause_QNAME, String.class, DeleteItemsByQuery.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "phoneNumber", scope = UserExtended.class) |
public JAXBElement<String> createUserExtendedPhoneNumber(String value) { |
return new JAXBElement<String>(_UserExtendedPhoneNumber_QNAME, String.class, UserExtended.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "locale", scope = UserExtended.class) |
public JAXBElement<String> createUserExtendedLocale(String value) { |
return new JAXBElement<String>(_UserExtendedLocale_QNAME, String.class, UserExtended.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = GetSolutions.class) |
public JAXBElement<Auth> createGetSolutionsAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, GetSolutions.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "firstFieldName", scope = OrderBy.class) |
public JAXBElement<String> createOrderByFirstFieldName(String value) { |
return new JAXBElement<String>(_OrderByFirstFieldName_QNAME, String.class, OrderBy.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "secondFieldName", scope = OrderBy.class) |
public JAXBElement<String> createOrderBySecondFieldName(String value) { |
return new JAXBElement<String>(_OrderBySecondFieldName_QNAME, String.class, OrderBy.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "tableDBName", scope = GetSubmitProjectsWithName.class) |
public JAXBElement<String> createGetSubmitProjectsWithNameTableDBName(String value) { |
return new JAXBElement<String>(_GetSubmitProjectsWithNameTableDBName_QNAME, String.class, GetSubmitProjectsWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = GetSubmitProjectsWithName.class) |
public JAXBElement<Auth> createGetSubmitProjectsWithNameAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, GetSubmitProjectsWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link FileContents }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "xmlExportOptions", scope = Export.class) |
public JAXBElement<FileContents> createExportXmlExportOptions(FileContents value) { |
return new JAXBElement<FileContents>(_ExportXmlExportOptions_QNAME, FileContents.class, Export.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = Export.class) |
public JAXBElement<Auth> createExportAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, Export.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "applicationID", scope = Export.class) |
public JAXBElement<String> createExportApplicationID(String value) { |
return new JAXBElement<String>(_ExportApplicationID_QNAME, String.class, Export.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = GetUserExtended.class) |
public JAXBElement<Auth> createGetUserExtendedAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, GetUserExtended.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "userId", scope = GetUserExtended.class) |
public JAXBElement<String> createGetUserExtendedUserId(String value) { |
return new JAXBElement<String>(_UserWithPreferencesUserId_QNAME, String.class, GetUserExtended.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = DeleteItem.class) |
public JAXBElement<Auth> createDeleteItemAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, DeleteItem.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "sItemID", scope = DeleteItem.class) |
public JAXBElement<String> createDeleteItemSItemID(String value) { |
return new JAXBElement<String>(_DeleteItemSItemID_QNAME, String.class, DeleteItem.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = GetAvailableQuickTransitions.class) |
public JAXBElement<Auth> createGetAvailableQuickTransitionsAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, GetAvailableQuickTransitions.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "attributeName", scope = GetAvailableQuickTransitions.class) |
public JAXBElement<String> createGetAvailableQuickTransitionsAttributeName(String value) { |
return new JAXBElement<String>(_GetAvailableQuickTransitionsAttributeName_QNAME, String.class, GetAvailableQuickTransitions.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "itemID", scope = GetAvailableQuickTransitions.class) |
public JAXBElement<String> createGetAvailableQuickTransitionsItemID(String value) { |
return new JAXBElement<String>(_GetAvailableQuickTransitionsItemID_QNAME, String.class, GetAvailableQuickTransitions.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = GetTablesWithName.class) |
public JAXBElement<Auth> createGetTablesWithNameAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, GetTablesWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "solutionName", scope = GetTablesWithName.class) |
public JAXBElement<String> createGetTablesWithNameSolutionName(String value) { |
return new JAXBElement<String>(_GetTablesWithNameSolutionName_QNAME, String.class, GetTablesWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link OrderBy }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "orderBy", scope = ReportDefinition.class) |
public JAXBElement<OrderBy> createReportDefinitionOrderBy(OrderBy value) { |
return new JAXBElement<OrderBy>(_ReportDefinitionOrderBy_QNAME, OrderBy.class, ReportDefinition.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "projectName", scope = ReportInfo.class) |
public JAXBElement<String> createReportInfoProjectName(String value) { |
return new JAXBElement<String>(_ReportInfoProjectName_QNAME, String.class, ReportInfo.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "modifiedBy", scope = ReportInfo.class) |
public JAXBElement<String> createReportInfoModifiedBy(String value) { |
return new JAXBElement<String>(_ReportInfoModifiedBy_QNAME, String.class, ReportInfo.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "projectUUID", scope = ReportInfo.class) |
public JAXBElement<String> createReportInfoProjectUUID(String value) { |
return new JAXBElement<String>(_ReportInfoProjectUUID_QNAME, String.class, ReportInfo.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "responseOptions", scope = UpdateItem.class) |
public JAXBElement<String> createUpdateItemResponseOptions(String value) { |
return new JAXBElement<String>(_UpdateItemResponseOptions_QNAME, String.class, UpdateItem.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = UpdateItem.class) |
public JAXBElement<Auth> createUpdateItemAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, UpdateItem.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link TTItem }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "item", scope = UpdateItem.class) |
public JAXBElement<TTItem> createUpdateItemItem(TTItem value) { |
return new JAXBElement<TTItem>(_UpdateItemItem_QNAME, TTItem.class, UpdateItem.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = DeleteAttachment.class) |
public JAXBElement<Auth> createDeleteAttachmentAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, DeleteAttachment.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "displayName", scope = SolutionData.class) |
public JAXBElement<String> createSolutionDataDisplayName(String value) { |
return new JAXBElement<String>(_SolutionDataDisplayName_QNAME, String.class, SolutionData.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "solutionUUID", scope = SolutionData.class) |
public JAXBElement<String> createSolutionDataSolutionUUID(String value) { |
return new JAXBElement<String>(_SolutionDataSolutionUUID_QNAME, String.class, SolutionData.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "prefix", scope = SolutionData.class) |
public JAXBElement<String> createSolutionDataPrefix(String value) { |
return new JAXBElement<String>(_SolutionDataPrefix_QNAME, String.class, SolutionData.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "name", scope = SolutionData.class) |
public JAXBElement<String> createSolutionDataName(String value) { |
return new JAXBElement<String>(_PrivilegeName_QNAME, String.class, SolutionData.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "description", scope = SolutionData.class) |
public JAXBElement<String> createSolutionDataDescription(String value) { |
return new JAXBElement<String>(_SolutionDataDescription_QNAME, String.class, SolutionData.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = GetUser.class) |
public JAXBElement<Auth> createGetUserAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, GetUser.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "userId", scope = GetUser.class) |
public JAXBElement<String> createGetUserUserId(String value) { |
return new JAXBElement<String>(_UserWithPreferencesUserId_QNAME, String.class, GetUser.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "displayName", scope = SolutionWithUniqueName.class) |
public JAXBElement<String> createSolutionWithUniqueNameDisplayName(String value) { |
return new JAXBElement<String>(_SolutionDataDisplayName_QNAME, String.class, SolutionWithUniqueName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "solutionUUID", scope = SolutionWithUniqueName.class) |
public JAXBElement<String> createSolutionWithUniqueNameSolutionUUID(String value) { |
return new JAXBElement<String>(_SolutionDataSolutionUUID_QNAME, String.class, SolutionWithUniqueName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "uniqueName", scope = SolutionWithUniqueName.class) |
public JAXBElement<String> createSolutionWithUniqueNameUniqueName(String value) { |
return new JAXBElement<String>(_SolutionWithUniqueNameUniqueName_QNAME, String.class, SolutionWithUniqueName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "prefix", scope = SolutionWithUniqueName.class) |
public JAXBElement<String> createSolutionWithUniqueNamePrefix(String value) { |
return new JAXBElement<String>(_SolutionDataPrefix_QNAME, String.class, SolutionWithUniqueName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "name", scope = SolutionWithUniqueName.class) |
public JAXBElement<String> createSolutionWithUniqueNameName(String value) { |
return new JAXBElement<String>(_PrivilegeName_QNAME, String.class, SolutionWithUniqueName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "description", scope = SolutionWithUniqueName.class) |
public JAXBElement<String> createSolutionWithUniqueNameDescription(String value) { |
return new JAXBElement<String>(_SolutionDataDescription_QNAME, String.class, SolutionWithUniqueName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = GetStateChangeHistory.class) |
public JAXBElement<Auth> createGetStateChangeHistoryAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, GetStateChangeHistory.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link QueryRange }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "queryRange", scope = GetStateChangeHistory.class) |
public JAXBElement<QueryRange> createGetStateChangeHistoryQueryRange(QueryRange value) { |
return new JAXBElement<QueryRange>(_GetStateChangeHistoryQueryRange_QNAME, QueryRange.class, GetStateChangeHistory.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "itemID", scope = GetStateChangeHistory.class) |
public JAXBElement<String> createGetStateChangeHistoryItemID(String value) { |
return new JAXBElement<String>(_GetAvailableQuickTransitionsItemID_QNAME, String.class, GetStateChangeHistory.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = CreateFileAttachment.class) |
public JAXBElement<Auth> createCreateFileAttachmentAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, CreateFileAttachment.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link FileAttachmentContents }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "attachmentContents", scope = CreateFileAttachment.class) |
public JAXBElement<FileAttachmentContents> createCreateFileAttachmentAttachmentContents(FileAttachmentContents value) { |
return new JAXBElement<FileAttachmentContents>(_CreateFileAttachmentAttachmentContents_QNAME, FileAttachmentContents.class, CreateFileAttachment.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "itemID", scope = CreateFileAttachment.class) |
public JAXBElement<String> createCreateFileAttachmentItemID(String value) { |
return new JAXBElement<String>(_GetAvailableQuickTransitionsItemID_QNAME, String.class, CreateFileAttachment.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = GetApplications.class) |
public JAXBElement<Auth> createGetApplicationsAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, GetApplications.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "url", scope = URLAttachment.class) |
public JAXBElement<String> createURLAttachmentUrl(String value) { |
return new JAXBElement<String>(_FileAttachmentUrl_QNAME, String.class, URLAttachment.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "name", scope = URLAttachment.class) |
public JAXBElement<String> createURLAttachmentName(String value) { |
return new JAXBElement<String>(_PrivilegeName_QNAME, String.class, URLAttachment.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link TTItem }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "return", scope = UpdateItemWithNameResponse.class) |
public JAXBElement<TTItem> createUpdateItemWithNameResponseReturn(TTItem value) { |
return new JAXBElement<TTItem>(_GenerateUUIDResponseReturn_QNAME, TTItem.class, UpdateItemWithNameResponse.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link NoteLoggerInfo }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "return", scope = GetNoteLoggerInfoResponse.class) |
public JAXBElement<NoteLoggerInfo> createGetNoteLoggerInfoResponseReturn(NoteLoggerInfo value) { |
return new JAXBElement<NoteLoggerInfo>(_GenerateUUIDResponseReturn_QNAME, NoteLoggerInfo.class, GetNoteLoggerInfoResponse.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link FileAttachment }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "return", scope = CreateFileAttachmentResponse.class) |
public JAXBElement<FileAttachment> createCreateFileAttachmentResponseReturn(FileAttachment value) { |
return new JAXBElement<FileAttachment>(_GenerateUUIDResponseReturn_QNAME, FileAttachment.class, CreateFileAttachmentResponse.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "responseOptions", scope = GetItems.class) |
public JAXBElement<String> createGetItemsResponseOptions(String value) { |
return new JAXBElement<String>(_UpdateItemResponseOptions_QNAME, String.class, GetItems.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = GetItems.class) |
public JAXBElement<Auth> createGetItemsAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, GetItems.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "password", scope = Auth.class) |
public JAXBElement<String> createAuthPassword(String value) { |
return new JAXBElement<String>(_AuthPassword_QNAME, String.class, Auth.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "hostname", scope = Auth.class) |
public JAXBElement<String> createAuthHostname(String value) { |
return new JAXBElement<String>(_AuthHostname_QNAME, String.class, Auth.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "loginAsUserId", scope = Auth.class) |
public JAXBElement<String> createAuthLoginAsUserId(String value) { |
return new JAXBElement<String>(_AuthLoginAsUserId_QNAME, String.class, Auth.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "userId", scope = Auth.class) |
public JAXBElement<String> createAuthUserId(String value) { |
return new JAXBElement<String>(_UserWithPreferencesUserId_QNAME, String.class, Auth.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = GetAvailableSubmitTransitions.class) |
public JAXBElement<Auth> createGetAvailableSubmitTransitionsAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, GetAvailableSubmitTransitions.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "attributeName", scope = GetAvailableSubmitTransitions.class) |
public JAXBElement<String> createGetAvailableSubmitTransitionsAttributeName(String value) { |
return new JAXBElement<String>(_GetAvailableQuickTransitionsAttributeName_QNAME, String.class, GetAvailableSubmitTransitions.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "displayName", scope = Field.class) |
public JAXBElement<String> createFieldDisplayName(String value) { |
return new JAXBElement<String>(_SolutionDataDisplayName_QNAME, String.class, Field.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "name", scope = Field.class) |
public JAXBElement<String> createFieldName(String value) { |
return new JAXBElement<String>(_PrivilegeName_QNAME, String.class, Field.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "fieldUUID", scope = Field.class) |
public JAXBElement<String> createFieldFieldUUID(String value) { |
return new JAXBElement<String>(_FieldFieldUUID_QNAME, String.class, Field.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "responseOptions", scope = CreatePrimaryItemWithName.class) |
public JAXBElement<String> createCreatePrimaryItemWithNameResponseOptions(String value) { |
return new JAXBElement<String>(_UpdateItemResponseOptions_QNAME, String.class, CreatePrimaryItemWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = CreatePrimaryItemWithName.class) |
public JAXBElement<Auth> createCreatePrimaryItemWithNameAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, CreatePrimaryItemWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "fullyQualifiedProjectName", scope = CreatePrimaryItemWithName.class) |
public JAXBElement<String> createCreatePrimaryItemWithNameFullyQualifiedProjectName(String value) { |
return new JAXBElement<String>(_CreatePrimaryItemWithNameFullyQualifiedProjectName_QNAME, String.class, CreatePrimaryItemWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "submitTransName", scope = CreatePrimaryItemWithName.class) |
public JAXBElement<String> createCreatePrimaryItemWithNameSubmitTransName(String value) { |
return new JAXBElement<String>(_CreatePrimaryItemWithNameSubmitTransName_QNAME, String.class, CreatePrimaryItemWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link TTItem }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "item", scope = CreatePrimaryItemWithName.class) |
public JAXBElement<TTItem> createCreatePrimaryItemWithNameItem(TTItem value) { |
return new JAXBElement<TTItem>(_UpdateItemItem_QNAME, TTItem.class, CreatePrimaryItemWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "note", scope = Note.class) |
public JAXBElement<String> createNoteNote(String value) { |
return new JAXBElement<String>(_NoteNote_QNAME, String.class, Note.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "title", scope = Note.class) |
public JAXBElement<String> createNoteTitle(String value) { |
return new JAXBElement<String>(_NoteTitle_QNAME, String.class, Note.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link TTItem }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "return", scope = CreateAuxItemResponse.class) |
public JAXBElement<TTItem> createCreateAuxItemResponseReturn(TTItem value) { |
return new JAXBElement<TTItem>(_GenerateUUIDResponseReturn_QNAME, TTItem.class, CreateAuxItemResponse.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "classificationUUID", scope = TTItem.class) |
public JAXBElement<String> createTTItemClassificationUUID(String value) { |
return new JAXBElement<String>(_TTItemClassificationUUID_QNAME, String.class, TTItem.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "url", scope = TTItem.class) |
public JAXBElement<String> createTTItemUrl(String value) { |
return new JAXBElement<String>(_FileAttachmentUrl_QNAME, String.class, TTItem.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Item }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "genericItem", scope = TTItem.class) |
public JAXBElement<Item> createTTItemGenericItem(Item value) { |
return new JAXBElement<Item>(_TTItemGenericItem_QNAME, Item.class, TTItem.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link XMLGregorianCalendar }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "modifiedDate", scope = TTItem.class) |
public JAXBElement<XMLGregorianCalendar> createTTItemModifiedDate(XMLGregorianCalendar value) { |
return new JAXBElement<XMLGregorianCalendar>(_TTItemModifiedDate_QNAME, XMLGregorianCalendar.class, TTItem.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "state", scope = TTItem.class) |
public JAXBElement<String> createTTItemState(String value) { |
return new JAXBElement<String>(_TTItemState_QNAME, String.class, TTItem.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "itemType", scope = TTItem.class) |
public JAXBElement<String> createTTItemItemType(String value) { |
return new JAXBElement<String>(_TTItemItemType_QNAME, String.class, TTItem.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "modifiedBy", scope = TTItem.class) |
public JAXBElement<String> createTTItemModifiedBy(String value) { |
return new JAXBElement<String>(_ReportInfoModifiedBy_QNAME, String.class, TTItem.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "activeInactive", scope = TTItem.class) |
public JAXBElement<String> createTTItemActiveInactive(String value) { |
return new JAXBElement<String>(_TTItemActiveInactive_QNAME, String.class, TTItem.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link XMLGregorianCalendar }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "createDate", scope = TTItem.class) |
public JAXBElement<XMLGregorianCalendar> createTTItemCreateDate(XMLGregorianCalendar value) { |
return new JAXBElement<XMLGregorianCalendar>(_TTItemCreateDate_QNAME, XMLGregorianCalendar.class, TTItem.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "owner", scope = TTItem.class) |
public JAXBElement<String> createTTItemOwner(String value) { |
return new JAXBElement<String>(_TTItemOwner_QNAME, String.class, TTItem.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "createdBy", scope = TTItem.class) |
public JAXBElement<String> createTTItemCreatedBy(String value) { |
return new JAXBElement<String>(_TTItemCreatedBy_QNAME, String.class, TTItem.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "classification", scope = TTItem.class) |
public JAXBElement<String> createTTItemClassification(String value) { |
return new JAXBElement<String>(_TTItemClassification_QNAME, String.class, TTItem.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "description", scope = TTItem.class) |
public JAXBElement<String> createTTItemDescription(String value) { |
return new JAXBElement<String>(_SolutionDataDescription_QNAME, String.class, TTItem.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "title", scope = TTItem.class) |
public JAXBElement<String> createTTItemTitle(String value) { |
return new JAXBElement<String>(_NoteTitle_QNAME, String.class, TTItem.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = GetFileAttachment.class) |
public JAXBElement<Auth> createGetFileAttachmentAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, GetFileAttachment.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "itemID", scope = GetFileAttachment.class) |
public JAXBElement<String> createGetFileAttachmentItemID(String value) { |
return new JAXBElement<String>(_GetAvailableQuickTransitionsItemID_QNAME, String.class, GetFileAttachment.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link TTItem }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "return", scope = CreateAuxItemWithNameResponse.class) |
public JAXBElement<TTItem> createCreateAuxItemWithNameResponseReturn(TTItem value) { |
return new JAXBElement<TTItem>(_GenerateUUIDResponseReturn_QNAME, TTItem.class, CreateAuxItemWithNameResponse.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "itemID", scope = ItemLink.class) |
public JAXBElement<String> createItemLinkItemID(String value) { |
return new JAXBElement<String>(_GetAvailableQuickTransitionsItemID_QNAME, String.class, ItemLink.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "responseOptions", scope = CreatePrimaryItems.class) |
public JAXBElement<String> createCreatePrimaryItemsResponseOptions(String value) { |
return new JAXBElement<String>(_UpdateItemResponseOptions_QNAME, String.class, CreatePrimaryItems.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = CreatePrimaryItems.class) |
public JAXBElement<Auth> createCreatePrimaryItemsAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, CreatePrimaryItems.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "emailAddress", scope = NoteLoggerInfo.class) |
public JAXBElement<String> createNoteLoggerInfoEmailAddress(String value) { |
return new JAXBElement<String>(_NoteLoggerInfoEmailAddress_QNAME, String.class, NoteLoggerInfo.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "reportName", scope = ReportsFilter.class) |
public JAXBElement<String> createReportsFilterReportName(String value) { |
return new JAXBElement<String>(_ReportsFilterReportName_QNAME, String.class, ReportsFilter.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "projectName", scope = ReportsFilter.class) |
public JAXBElement<String> createReportsFilterProjectName(String value) { |
return new JAXBElement<String>(_ReportInfoProjectName_QNAME, String.class, ReportsFilter.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "authorID", scope = ReportsFilter.class) |
public JAXBElement<String> createReportsFilterAuthorID(String value) { |
return new JAXBElement<String>(_ReportsFilterAuthorID_QNAME, String.class, ReportsFilter.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "solutionName", scope = ReportsFilter.class) |
public JAXBElement<String> createReportsFilterSolutionName(String value) { |
return new JAXBElement<String>(_GetTablesWithNameSolutionName_QNAME, String.class, ReportsFilter.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "tableName", scope = ReportsFilter.class) |
public JAXBElement<String> createReportsFilterTableName(String value) { |
return new JAXBElement<String>(_ReportsFilterTableName_QNAME, String.class, ReportsFilter.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "projectUUID", scope = ReportsFilter.class) |
public JAXBElement<String> createReportsFilterProjectUUID(String value) { |
return new JAXBElement<String>(_ReportInfoProjectUUID_QNAME, String.class, ReportsFilter.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link FileAttachment }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "return", scope = UpdateFileAttachmentResponse.class) |
public JAXBElement<FileAttachment> createUpdateFileAttachmentResponseReturn(FileAttachment value) { |
return new JAXBElement<FileAttachment>(_GenerateUUIDResponseReturn_QNAME, FileAttachment.class, UpdateFileAttachmentResponse.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "responseOptions", scope = CreatePrimaryItem.class) |
public JAXBElement<String> createCreatePrimaryItemResponseOptions(String value) { |
return new JAXBElement<String>(_UpdateItemResponseOptions_QNAME, String.class, CreatePrimaryItem.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = CreatePrimaryItem.class) |
public JAXBElement<Auth> createCreatePrimaryItemAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, CreatePrimaryItem.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link TTItem }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "item", scope = CreatePrimaryItem.class) |
public JAXBElement<TTItem> createCreatePrimaryItemItem(TTItem value) { |
return new JAXBElement<TTItem>(_UpdateItemItem_QNAME, TTItem.class, CreatePrimaryItem.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = ImportStatus.class) |
public JAXBElement<Auth> createImportStatusAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, ImportStatus.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "importUUID", scope = ImportStatus.class) |
public JAXBElement<String> createImportStatusImportUUID(String value) { |
return new JAXBElement<String>(_ImportStatusImportUUID_QNAME, String.class, ImportStatus.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "itemId", scope = ReportResult.class) |
public JAXBElement<String> createReportResultItemId(String value) { |
return new JAXBElement<String>(_ReportResultItemId_QNAME, String.class, ReportResult.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "itemURL", scope = ReportResult.class) |
public JAXBElement<String> createReportResultItemURL(String value) { |
return new JAXBElement<String>(_ReportResultItemURL_QNAME, String.class, ReportResult.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "itemName", scope = ReportResult.class) |
public JAXBElement<String> createReportResultItemName(String value) { |
return new JAXBElement<String>(_ReportResultItemName_QNAME, String.class, ReportResult.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "responseOptions", scope = GetItemsByQuery.class) |
public JAXBElement<String> createGetItemsByQueryResponseOptions(String value) { |
return new JAXBElement<String>(_UpdateItemResponseOptions_QNAME, String.class, GetItemsByQuery.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = GetItemsByQuery.class) |
public JAXBElement<Auth> createGetItemsByQueryAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, GetItemsByQuery.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "orderByClause", scope = GetItemsByQuery.class) |
public JAXBElement<String> createGetItemsByQueryOrderByClause(String value) { |
return new JAXBElement<String>(_GetItemsByQueryOrderByClause_QNAME, String.class, GetItemsByQuery.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "queryWhereClause", scope = GetItemsByQuery.class) |
public JAXBElement<String> createGetItemsByQueryQueryWhereClause(String value) { |
return new JAXBElement<String>(_DeleteItemsByQueryQueryWhereClause_QNAME, String.class, GetItemsByQuery.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "responseOptions", scope = CreatePrimaryItemsWithName.class) |
public JAXBElement<String> createCreatePrimaryItemsWithNameResponseOptions(String value) { |
return new JAXBElement<String>(_UpdateItemResponseOptions_QNAME, String.class, CreatePrimaryItemsWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = CreatePrimaryItemsWithName.class) |
public JAXBElement<Auth> createCreatePrimaryItemsWithNameAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, CreatePrimaryItemsWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "fullyQualifiedProjectName", scope = CreatePrimaryItemsWithName.class) |
public JAXBElement<String> createCreatePrimaryItemsWithNameFullyQualifiedProjectName(String value) { |
return new JAXBElement<String>(_CreatePrimaryItemWithNameFullyQualifiedProjectName_QNAME, String.class, CreatePrimaryItemsWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "submitTransName", scope = CreatePrimaryItemsWithName.class) |
public JAXBElement<String> createCreatePrimaryItemsWithNameSubmitTransName(String value) { |
return new JAXBElement<String>(_CreatePrimaryItemWithNameSubmitTransName_QNAME, String.class, CreatePrimaryItemsWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link UserWithPreferences }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "return", scope = GetUserWithPreferencesResponse.class) |
public JAXBElement<UserWithPreferences> createGetUserWithPreferencesResponseReturn(UserWithPreferences value) { |
return new JAXBElement<UserWithPreferences>(_GenerateUUIDResponseReturn_QNAME, UserWithPreferences.class, GetUserWithPreferencesResponse.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link TTItem }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "return", scope = CreatePrimaryItemWithNameResponse.class) |
public JAXBElement<TTItem> createCreatePrimaryItemWithNameResponseReturn(TTItem value) { |
return new JAXBElement<TTItem>(_GenerateUUIDResponseReturn_QNAME, TTItem.class, CreatePrimaryItemWithNameResponse.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = GetTables.class) |
public JAXBElement<Auth> createGetTablesAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, GetTables.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "importResponseID", scope = Import.class) |
public JAXBElement<String> createImportImportResponseID(String value) { |
return new JAXBElement<String>(_ImportImportResponseID_QNAME, String.class, Import.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "importResponseEndPoint", scope = Import.class) |
public JAXBElement<String> createImportImportResponseEndPoint(String value) { |
return new JAXBElement<String>(_ImportImportResponseEndPoint_QNAME, String.class, Import.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "adminRepositoryID", scope = Import.class) |
public JAXBElement<String> createImportAdminRepositoryID(String value) { |
return new JAXBElement<String>(_ImportAdminRepositoryID_QNAME, String.class, Import.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = Import.class) |
public JAXBElement<Auth> createImportAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, Import.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link FileContents }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "xmlImportOptions", scope = Import.class) |
public JAXBElement<FileContents> createImportXmlImportOptions(FileContents value) { |
return new JAXBElement<FileContents>(_ImportXmlImportOptions_QNAME, FileContents.class, Import.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "emailCC", scope = User.class) |
public JAXBElement<String> createUserEmailCC(String value) { |
return new JAXBElement<String>(_UserWithPreferencesEmailCC_QNAME, String.class, User.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "userName", scope = User.class) |
public JAXBElement<String> createUserUserName(String value) { |
return new JAXBElement<String>(_StateChangeHistoryUserName_QNAME, String.class, User.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "uuid", scope = User.class) |
public JAXBElement<String> createUserUuid(String value) { |
return new JAXBElement<String>(_UserWithPreferencesUuid_QNAME, String.class, User.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "email", scope = User.class) |
public JAXBElement<String> createUserEmail(String value) { |
return new JAXBElement<String>(_UserWithPreferencesEmail_QNAME, String.class, User.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "userId", scope = User.class) |
public JAXBElement<String> createUserUserId(String value) { |
return new JAXBElement<String>(_UserWithPreferencesUserId_QNAME, String.class, User.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "namespaceName", scope = User.class) |
public JAXBElement<String> createUserNamespaceName(String value) { |
return new JAXBElement<String>(_UserWithPreferencesNamespaceName_QNAME, String.class, User.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "timezone", scope = User.class) |
public JAXBElement<String> createUserTimezone(String value) { |
return new JAXBElement<String>(_UserWithPreferencesTimezone_QNAME, String.class, User.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "displayName", scope = TableData.class) |
public JAXBElement<String> createTableDataDisplayName(String value) { |
return new JAXBElement<String>(_SolutionDataDisplayName_QNAME, String.class, TableData.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "name", scope = TableData.class) |
public JAXBElement<String> createTableDataName(String value) { |
return new JAXBElement<String>(_PrivilegeName_QNAME, String.class, TableData.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "description", scope = TableData.class) |
public JAXBElement<String> createTableDataDescription(String value) { |
return new JAXBElement<String>(_SolutionDataDescription_QNAME, String.class, TableData.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "tableUUID", scope = TableData.class) |
public JAXBElement<String> createTableDataTableUUID(String value) { |
return new JAXBElement<String>(_TableDataTableUUID_QNAME, String.class, TableData.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "projectName", scope = RunReport.class) |
public JAXBElement<String> createRunReportProjectName(String value) { |
return new JAXBElement<String>(_ReportInfoProjectName_QNAME, String.class, RunReport.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "reportName", scope = RunReport.class) |
public JAXBElement<String> createRunReportReportName(String value) { |
return new JAXBElement<String>(_ReportsFilterReportName_QNAME, String.class, RunReport.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = RunReport.class) |
public JAXBElement<Auth> createRunReportAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, RunReport.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link QueryRange }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "queryRange", scope = RunReport.class) |
public JAXBElement<QueryRange> createRunReportQueryRange(QueryRange value) { |
return new JAXBElement<QueryRange>(_GetStateChangeHistoryQueryRange_QNAME, QueryRange.class, RunReport.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "solutionName", scope = RunReport.class) |
public JAXBElement<String> createRunReportSolutionName(String value) { |
return new JAXBElement<String>(_GetTablesWithNameSolutionName_QNAME, String.class, RunReport.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "reportUUID", scope = RunReport.class) |
public JAXBElement<String> createRunReportReportUUID(String value) { |
return new JAXBElement<String>(_RunReportReportUUID_QNAME, String.class, RunReport.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "tableName", scope = RunReport.class) |
public JAXBElement<String> createRunReportTableName(String value) { |
return new JAXBElement<String>(_ReportsFilterTableName_QNAME, String.class, RunReport.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "projectUUID", scope = RunReport.class) |
public JAXBElement<String> createRunReportProjectUUID(String value) { |
return new JAXBElement<String>(_ReportInfoProjectUUID_QNAME, String.class, RunReport.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link FileContents }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "return", scope = ExportResponse.class) |
public JAXBElement<FileContents> createExportResponseReturn(FileContents value) { |
return new JAXBElement<FileContents>(_GenerateUUIDResponseReturn_QNAME, FileContents.class, ExportResponse.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = GetNoteLoggerInfo.class) |
public JAXBElement<Auth> createGetNoteLoggerInfoAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, GetNoteLoggerInfo.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "responseOptions", scope = CreateAuxItems.class) |
public JAXBElement<String> createCreateAuxItemsResponseOptions(String value) { |
return new JAXBElement<String>(_UpdateItemResponseOptions_QNAME, String.class, CreateAuxItems.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = CreateAuxItems.class) |
public JAXBElement<Auth> createCreateAuxItemsAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, CreateAuxItems.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link UserExtended }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "return", scope = GetUserExtendedResponse.class) |
public JAXBElement<UserExtended> createGetUserExtendedResponseReturn(UserExtended value) { |
return new JAXBElement<UserExtended>(_GenerateUUIDResponseReturn_QNAME, UserExtended.class, GetUserExtendedResponse.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "responseOptions", scope = CreateAuxItemWithName.class) |
public JAXBElement<String> createCreateAuxItemWithNameResponseOptions(String value) { |
return new JAXBElement<String>(_UpdateItemResponseOptions_QNAME, String.class, CreateAuxItemWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "tableDBName", scope = CreateAuxItemWithName.class) |
public JAXBElement<String> createCreateAuxItemWithNameTableDBName(String value) { |
return new JAXBElement<String>(_GetSubmitProjectsWithNameTableDBName_QNAME, String.class, CreateAuxItemWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = CreateAuxItemWithName.class) |
public JAXBElement<Auth> createCreateAuxItemWithNameAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, CreateAuxItemWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link TTItem }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "item", scope = CreateAuxItemWithName.class) |
public JAXBElement<TTItem> createCreateAuxItemWithNameItem(TTItem value) { |
return new JAXBElement<TTItem>(_UpdateItemItem_QNAME, TTItem.class, CreateAuxItemWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "tableDBName", scope = DeleteItemsByQueryWithName.class) |
public JAXBElement<String> createDeleteItemsByQueryWithNameTableDBName(String value) { |
return new JAXBElement<String>(_GetSubmitProjectsWithNameTableDBName_QNAME, String.class, DeleteItemsByQueryWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = DeleteItemsByQueryWithName.class) |
public JAXBElement<Auth> createDeleteItemsByQueryWithNameAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, DeleteItemsByQueryWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "queryWhereClause", scope = DeleteItemsByQueryWithName.class) |
public JAXBElement<String> createDeleteItemsByQueryWithNameQueryWhereClause(String value) { |
return new JAXBElement<String>(_DeleteItemsByQueryQueryWhereClause_QNAME, String.class, DeleteItemsByQueryWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = UpdateFileAttachment.class) |
public JAXBElement<Auth> createUpdateFileAttachmentAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, UpdateFileAttachment.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link FileAttachmentContents }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "attachmentContents", scope = UpdateFileAttachment.class) |
public JAXBElement<FileAttachmentContents> createUpdateFileAttachmentAttachmentContents(FileAttachmentContents value) { |
return new JAXBElement<FileAttachmentContents>(_CreateFileAttachmentAttachmentContents_QNAME, FileAttachmentContents.class, UpdateFileAttachment.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "itemID", scope = UpdateFileAttachment.class) |
public JAXBElement<String> createUpdateFileAttachmentItemID(String value) { |
return new JAXBElement<String>(_GetAvailableQuickTransitionsItemID_QNAME, String.class, UpdateFileAttachment.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = GenerateUUID.class) |
public JAXBElement<Auth> createGenerateUUIDAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, GenerateUUID.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "currentStep", scope = ImportCurrentStatus.class) |
public JAXBElement<String> createImportCurrentStatusCurrentStep(String value) { |
return new JAXBElement<String>(_ImportCurrentStatusCurrentStep_QNAME, String.class, ImportCurrentStatus.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "responseOptions", scope = UpdateItems.class) |
public JAXBElement<String> createUpdateItemsResponseOptions(String value) { |
return new JAXBElement<String>(_UpdateItemResponseOptions_QNAME, String.class, UpdateItems.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = UpdateItems.class) |
public JAXBElement<Auth> createUpdateItemsAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, UpdateItems.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "responseOptions", scope = CreateAuxItem.class) |
public JAXBElement<String> createCreateAuxItemResponseOptions(String value) { |
return new JAXBElement<String>(_UpdateItemResponseOptions_QNAME, String.class, CreateAuxItem.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = CreateAuxItem.class) |
public JAXBElement<Auth> createCreateAuxItemAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, CreateAuxItem.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link TTItem }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "item", scope = CreateAuxItem.class) |
public JAXBElement<TTItem> createCreateAuxItemItem(TTItem value) { |
return new JAXBElement<TTItem>(_UpdateItemItem_QNAME, TTItem.class, CreateAuxItem.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = GetAvailableSubmitTransitionsWithName.class) |
public JAXBElement<Auth> createGetAvailableSubmitTransitionsWithNameAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, GetAvailableSubmitTransitionsWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "fullyQualifiedProjectName", scope = GetAvailableSubmitTransitionsWithName.class) |
public JAXBElement<String> createGetAvailableSubmitTransitionsWithNameFullyQualifiedProjectName(String value) { |
return new JAXBElement<String>(_CreatePrimaryItemWithNameFullyQualifiedProjectName_QNAME, String.class, GetAvailableSubmitTransitionsWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "attributeName", scope = GetAvailableSubmitTransitionsWithName.class) |
public JAXBElement<String> createGetAvailableSubmitTransitionsWithNameAttributeName(String value) { |
return new JAXBElement<String>(_GetAvailableQuickTransitionsAttributeName_QNAME, String.class, GetAvailableSubmitTransitionsWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "displayValue", scope = Value.class) |
public JAXBElement<String> createValueDisplayValue(String value) { |
return new JAXBElement<String>(_ValueDisplayValue_QNAME, String.class, Value.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "uuid", scope = Value.class) |
public JAXBElement<String> createValueUuid(String value) { |
return new JAXBElement<String>(_UserWithPreferencesUuid_QNAME, String.class, Value.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "internalValue", scope = Value.class) |
public JAXBElement<String> createValueInternalValue(String value) { |
return new JAXBElement<String>(_ValueInternalValue_QNAME, String.class, Value.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = IsUserValid.class) |
public JAXBElement<Auth> createIsUserValidAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, IsUserValid.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "loginId", scope = IsUserValid.class) |
public JAXBElement<String> createIsUserValidLoginId(String value) { |
return new JAXBElement<String>(_HasUserPrivilegeLoginId_QNAME, String.class, IsUserValid.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link ReportsFilter }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "reportsFilter", scope = GetReports.class) |
public JAXBElement<ReportsFilter> createGetReportsReportsFilter(ReportsFilter value) { |
return new JAXBElement<ReportsFilter>(_GetReportsReportsFilter_QNAME, ReportsFilter.class, GetReports.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = GetReports.class) |
public JAXBElement<Auth> createGetReportsAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, GetReports.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link QueryRange }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "queryRange", scope = GetReports.class) |
public JAXBElement<QueryRange> createGetReportsQueryRange(QueryRange value) { |
return new JAXBElement<QueryRange>(_GetStateChangeHistoryQueryRange_QNAME, QueryRange.class, GetReports.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "fullyQualifiedName", scope = ProjectData.class) |
public JAXBElement<String> createProjectDataFullyQualifiedName(String value) { |
return new JAXBElement<String>(_ProjectDataFullyQualifiedName_QNAME, String.class, ProjectData.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "name", scope = ProjectData.class) |
public JAXBElement<String> createProjectDataName(String value) { |
return new JAXBElement<String>(_PrivilegeName_QNAME, String.class, ProjectData.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "description", scope = ProjectData.class) |
public JAXBElement<String> createProjectDataDescription(String value) { |
return new JAXBElement<String>(_SolutionDataDescription_QNAME, String.class, ProjectData.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "projectUUID", scope = ProjectData.class) |
public JAXBElement<String> createProjectDataProjectUUID(String value) { |
return new JAXBElement<String>(_ReportInfoProjectUUID_QNAME, String.class, ProjectData.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "responseOptions", scope = GetItem.class) |
public JAXBElement<String> createGetItemResponseOptions(String value) { |
return new JAXBElement<String>(_UpdateItemResponseOptions_QNAME, String.class, GetItem.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = GetItem.class) |
public JAXBElement<Auth> createGetItemAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, GetItem.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "itemID", scope = GetItem.class) |
public JAXBElement<String> createGetItemItemID(String value) { |
return new JAXBElement<String>(_GetAvailableQuickTransitionsItemID_QNAME, String.class, GetItem.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = GetUserWithPreferences.class) |
public JAXBElement<Auth> createGetUserWithPreferencesAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, GetUserWithPreferences.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "userId", scope = GetUserWithPreferences.class) |
public JAXBElement<String> createGetUserWithPreferencesUserId(String value) { |
return new JAXBElement<String>(_UserWithPreferencesUserId_QNAME, String.class, GetUserWithPreferences.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = DeleteItems.class) |
public JAXBElement<Auth> createDeleteItemsAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, DeleteItems.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "return", scope = ImportResponse.class) |
public JAXBElement<String> createImportResponseReturn(String value) { |
return new JAXBElement<String>(_GenerateUUIDResponseReturn_QNAME, String.class, ImportResponse.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link RunReportResult }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "return", scope = RunReportResponse.class) |
public JAXBElement<RunReportResult> createRunReportResponseReturn(RunReportResult value) { |
return new JAXBElement<RunReportResult>(_GenerateUUIDResponseReturn_QNAME, RunReportResult.class, RunReportResponse.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = GetSolutionsWithUniqueName.class) |
public JAXBElement<Auth> createGetSolutionsWithUniqueNameAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, GetSolutionsWithUniqueName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = Logout.class) |
public JAXBElement<Auth> createLogoutAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, Logout.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "responseOptions", scope = GetItemsByQueryWithName.class) |
public JAXBElement<String> createGetItemsByQueryWithNameResponseOptions(String value) { |
return new JAXBElement<String>(_UpdateItemResponseOptions_QNAME, String.class, GetItemsByQueryWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "tableDBName", scope = GetItemsByQueryWithName.class) |
public JAXBElement<String> createGetItemsByQueryWithNameTableDBName(String value) { |
return new JAXBElement<String>(_GetSubmitProjectsWithNameTableDBName_QNAME, String.class, GetItemsByQueryWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = GetItemsByQueryWithName.class) |
public JAXBElement<Auth> createGetItemsByQueryWithNameAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, GetItemsByQueryWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "orderByClause", scope = GetItemsByQueryWithName.class) |
public JAXBElement<String> createGetItemsByQueryWithNameOrderByClause(String value) { |
return new JAXBElement<String>(_GetItemsByQueryOrderByClause_QNAME, String.class, GetItemsByQueryWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "queryWhereClause", scope = GetItemsByQueryWithName.class) |
public JAXBElement<String> createGetItemsByQueryWithNameQueryWhereClause(String value) { |
return new JAXBElement<String>(_DeleteItemsByQueryQueryWhereClause_QNAME, String.class, GetItemsByQueryWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "responseOptions", scope = UpdateItemWithName.class) |
public JAXBElement<String> createUpdateItemWithNameResponseOptions(String value) { |
return new JAXBElement<String>(_UpdateItemResponseOptions_QNAME, String.class, UpdateItemWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "transitionName", scope = UpdateItemWithName.class) |
public JAXBElement<String> createUpdateItemWithNameTransitionName(String value) { |
return new JAXBElement<String>(_StateChangeHistoryTransitionName_QNAME, String.class, UpdateItemWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = UpdateItemWithName.class) |
public JAXBElement<Auth> createUpdateItemWithNameAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, UpdateItemWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link TTItem }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "item", scope = UpdateItemWithName.class) |
public JAXBElement<TTItem> createUpdateItemWithNameItem(TTItem value) { |
return new JAXBElement<TTItem>(_UpdateItemItem_QNAME, TTItem.class, UpdateItemWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = DeleteMashup.class) |
public JAXBElement<Auth> createDeleteMashupAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, DeleteMashup.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "sMashupName", scope = DeleteMashup.class) |
public JAXBElement<String> createDeleteMashupSMashupName(String value) { |
return new JAXBElement<String>(_DeleteMashupSMashupName_QNAME, String.class, DeleteMashup.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "itemUUID", scope = Item.class) |
public JAXBElement<String> createItemItemUUID(String value) { |
return new JAXBElement<String>(_ItemItemUUID_QNAME, String.class, Item.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "itemID", scope = Item.class) |
public JAXBElement<String> createItemItemID(String value) { |
return new JAXBElement<String>(_GetAvailableQuickTransitionsItemID_QNAME, String.class, Item.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "itemName", scope = Item.class) |
public JAXBElement<String> createItemItemName(String value) { |
return new JAXBElement<String>(_ReportResultItemName_QNAME, String.class, Item.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link ImportCurrentStatus }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "return", scope = ImportStatusResponse.class) |
public JAXBElement<ImportCurrentStatus> createImportStatusResponseReturn(ImportCurrentStatus value) { |
return new JAXBElement<ImportCurrentStatus>(_GenerateUUIDResponseReturn_QNAME, ImportCurrentStatus.class, ImportStatusResponse.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = GetAvailableTransitions.class) |
public JAXBElement<Auth> createGetAvailableTransitionsAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, GetAvailableTransitions.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "attributeName", scope = GetAvailableTransitions.class) |
public JAXBElement<String> createGetAvailableTransitionsAttributeName(String value) { |
return new JAXBElement<String>(_GetAvailableQuickTransitionsAttributeName_QNAME, String.class, GetAvailableTransitions.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "itemID", scope = GetAvailableTransitions.class) |
public JAXBElement<String> createGetAvailableTransitionsItemID(String value) { |
return new JAXBElement<String>(_GetAvailableQuickTransitionsItemID_QNAME, String.class, GetAvailableTransitions.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link TTItem }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "return", scope = GetItemResponse.class) |
public JAXBElement<TTItem> createGetItemResponseReturn(TTItem value) { |
return new JAXBElement<TTItem>(_GenerateUUIDResponseReturn_QNAME, TTItem.class, GetItemResponse.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "responseOptions", scope = CreateAuxItemsWithName.class) |
public JAXBElement<String> createCreateAuxItemsWithNameResponseOptions(String value) { |
return new JAXBElement<String>(_UpdateItemResponseOptions_QNAME, String.class, CreateAuxItemsWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "tableDBName", scope = CreateAuxItemsWithName.class) |
public JAXBElement<String> createCreateAuxItemsWithNameTableDBName(String value) { |
return new JAXBElement<String>(_GetSubmitProjectsWithNameTableDBName_QNAME, String.class, CreateAuxItemsWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = CreateAuxItemsWithName.class) |
public JAXBElement<Auth> createCreateAuxItemsWithNameAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, CreateAuxItemsWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "return", scope = GetVersionResponse.class) |
public JAXBElement<String> createGetVersionResponseReturn(String value) { |
return new JAXBElement<String>(_GenerateUUIDResponseReturn_QNAME, String.class, GetVersionResponse.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Value }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "value", scope = NameValue.class) |
public JAXBElement<Value> createNameValueValue(Value value) { |
return new JAXBElement<Value>(_NameValueValue_QNAME, Value.class, NameValue.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "uuid", scope = NameValue.class) |
public JAXBElement<String> createNameValueUuid(String value) { |
return new JAXBElement<String>(_UserWithPreferencesUuid_QNAME, String.class, NameValue.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link SetValueMethod }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "setValueMethod", scope = NameValue.class) |
public JAXBElement<SetValueMethod> createNameValueSetValueMethod(SetValueMethod value) { |
return new JAXBElement<SetValueMethod>(_NameValueSetValueMethod_QNAME, SetValueMethod.class, NameValue.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "name", scope = NameValue.class) |
public JAXBElement<String> createNameValueName(String value) { |
return new JAXBElement<String>(_PrivilegeName_QNAME, String.class, NameValue.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link SetValueBy }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "setValueBy", scope = NameValue.class) |
public JAXBElement<SetValueBy> createNameValueSetValueBy(SetValueBy value) { |
return new JAXBElement<SetValueBy>(_NameValueSetValueBy_QNAME, SetValueBy.class, NameValue.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "responseOptions", scope = UpdateItemsWithName.class) |
public JAXBElement<String> createUpdateItemsWithNameResponseOptions(String value) { |
return new JAXBElement<String>(_UpdateItemResponseOptions_QNAME, String.class, UpdateItemsWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "transitionName", scope = UpdateItemsWithName.class) |
public JAXBElement<String> createUpdateItemsWithNameTransitionName(String value) { |
return new JAXBElement<String>(_StateChangeHistoryTransitionName_QNAME, String.class, UpdateItemsWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = UpdateItemsWithName.class) |
public JAXBElement<Auth> createUpdateItemsWithNameAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, UpdateItemsWithName.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link Auth }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "auth", scope = GetAvailableTransitionsWithStateIDs.class) |
public JAXBElement<Auth> createGetAvailableTransitionsWithStateIDsAuth(Auth value) { |
return new JAXBElement<Auth>(_HasUserPrivilegeAuth_QNAME, Auth.class, GetAvailableTransitionsWithStateIDs.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "attributeName", scope = GetAvailableTransitionsWithStateIDs.class) |
public JAXBElement<String> createGetAvailableTransitionsWithStateIDsAttributeName(String value) { |
return new JAXBElement<String>(_GetAvailableQuickTransitionsAttributeName_QNAME, String.class, GetAvailableTransitionsWithStateIDs.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "itemID", scope = GetAvailableTransitionsWithStateIDs.class) |
public JAXBElement<String> createGetAvailableTransitionsWithStateIDsItemID(String value) { |
return new JAXBElement<String>(_GetAvailableQuickTransitionsItemID_QNAME, String.class, GetAvailableTransitionsWithStateIDs.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "value", scope = ExtraValue.class) |
public JAXBElement<String> createExtraValueValue(String value) { |
return new JAXBElement<String>(_NameValueValue_QNAME, String.class, ExtraValue.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "valueType", scope = ExtraValue.class) |
public JAXBElement<String> createExtraValueValueType(String value) { |
return new JAXBElement<String>(_ExtraValueValueType_QNAME, String.class, ExtraValue.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link TTItem }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "return", scope = CreatePrimaryItemResponse.class) |
public JAXBElement<TTItem> createCreatePrimaryItemResponseReturn(TTItem value) { |
return new JAXBElement<TTItem>(_GenerateUUIDResponseReturn_QNAME, TTItem.class, CreatePrimaryItemResponse.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "name", scope = ApplicationData.class) |
public JAXBElement<String> createApplicationDataName(String value) { |
return new JAXBElement<String>(_PrivilegeName_QNAME, String.class, ApplicationData.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "appDefUUID", scope = ApplicationData.class) |
public JAXBElement<String> createApplicationDataAppDefUUID(String value) { |
return new JAXBElement<String>(_ApplicationDataAppDefUUID_QNAME, String.class, ApplicationData.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "description", scope = ApplicationData.class) |
public JAXBElement<String> createApplicationDataDescription(String value) { |
return new JAXBElement<String>(_SolutionDataDescription_QNAME, String.class, ApplicationData.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "revision", scope = ApplicationData.class) |
public JAXBElement<String> createApplicationDataRevision(String value) { |
return new JAXBElement<String>(_ApplicationDataRevision_QNAME, String.class, ApplicationData.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "applicationUUID", scope = ApplicationData.class) |
public JAXBElement<String> createApplicationDataApplicationUUID(String value) { |
return new JAXBElement<String>(_ApplicationDataApplicationUUID_QNAME, String.class, ApplicationData.class, value); |
} |
/** |
* Create an instance of {@link JAXBElement }{@code <}{@link GetStateChangeHistoryResult }{@code >}} |
* |
*/ |
@XmlElementDecl(namespace = "urn:aewebservices71", name = "return", scope = GetStateChangeHistoryResponse.class) |
public JAXBElement<GetStateChangeHistoryResult> createGetStateChangeHistoryResponseReturn(GetStateChangeHistoryResult value) { |
return new JAXBElement<GetStateChangeHistoryResult>(_GenerateUUIDResponseReturn_QNAME, GetStateChangeHistoryResult.class, GetStateChangeHistoryResponse.class, value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/GetItemsByQueryWithName.java |
---|
0,0 → 1,205 |
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.XmlElementRef; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/> |
* <element name="tableDBName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="queryWhereClause" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="orderByClause" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="maxReturnSize" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/> |
* <element name="responseOptions" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"auth", |
"tableDBName", |
"queryWhereClause", |
"orderByClause", |
"maxReturnSize", |
"responseOptions" |
}) |
@XmlRootElement(name = "GetItemsByQueryWithName") |
public class GetItemsByQueryWithName { |
@XmlElementRef(name = "auth", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<Auth> auth; |
@XmlElementRef(name = "tableDBName", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> tableDBName; |
@XmlElementRef(name = "queryWhereClause", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> queryWhereClause; |
@XmlElementRef(name = "orderByClause", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> orderByClause; |
protected BigInteger maxReturnSize; |
@XmlElementRef(name = "responseOptions", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> responseOptions; |
/** |
* Gets the value of the auth property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public JAXBElement<Auth> getAuth() { |
return auth; |
} |
/** |
* Sets the value of the auth property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public void setAuth(JAXBElement<Auth> value) { |
this.auth = ((JAXBElement<Auth> ) value); |
} |
/** |
* Gets the value of the tableDBName property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getTableDBName() { |
return tableDBName; |
} |
/** |
* Sets the value of the tableDBName property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setTableDBName(JAXBElement<String> value) { |
this.tableDBName = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the queryWhereClause property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getQueryWhereClause() { |
return queryWhereClause; |
} |
/** |
* Sets the value of the queryWhereClause property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setQueryWhereClause(JAXBElement<String> value) { |
this.queryWhereClause = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the orderByClause property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getOrderByClause() { |
return orderByClause; |
} |
/** |
* Sets the value of the orderByClause property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setOrderByClause(JAXBElement<String> value) { |
this.orderByClause = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the maxReturnSize property. |
* |
* @return |
* possible object is |
* {@link BigInteger } |
* |
*/ |
public BigInteger getMaxReturnSize() { |
return maxReturnSize; |
} |
/** |
* Sets the value of the maxReturnSize property. |
* |
* @param value |
* allowed object is |
* {@link BigInteger } |
* |
*/ |
public void setMaxReturnSize(BigInteger value) { |
this.maxReturnSize = value; |
} |
/** |
* Gets the value of the responseOptions property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getResponseOptions() { |
return responseOptions; |
} |
/** |
* Sets the value of the responseOptions property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setResponseOptions(JAXBElement<String> value) { |
this.responseOptions = ((JAXBElement<String> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/GenerateUUIDResponse.java |
---|
0,0 → 1,65 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElementRef; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="return" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"_return" |
}) |
@XmlRootElement(name = "GenerateUUIDResponse") |
public class GenerateUUIDResponse { |
@XmlElementRef(name = "return", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> _return; |
/** |
* Gets the value of the return property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getReturn() { |
return _return; |
} |
/** |
* Sets the value of the return property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setReturn(JAXBElement<String> value) { |
this._return = ((JAXBElement<String> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/CreateAuxItem.java |
---|
0,0 → 1,151 |
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.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/> |
* <element name="tableID" type="{http://www.w3.org/2001/XMLSchema}integer"/> |
* <element name="item" type="{urn:aewebservices71}TTItem" minOccurs="0"/> |
* <element name="responseOptions" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"auth", |
"tableID", |
"item", |
"responseOptions" |
}) |
@XmlRootElement(name = "CreateAuxItem") |
public class CreateAuxItem { |
@XmlElementRef(name = "auth", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<Auth> auth; |
@XmlElement(required = true) |
protected BigInteger tableID; |
@XmlElementRef(name = "item", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<TTItem> item; |
@XmlElementRef(name = "responseOptions", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> responseOptions; |
/** |
* Gets the value of the auth property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public JAXBElement<Auth> getAuth() { |
return auth; |
} |
/** |
* Sets the value of the auth property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public void setAuth(JAXBElement<Auth> value) { |
this.auth = ((JAXBElement<Auth> ) value); |
} |
/** |
* Gets the value of the tableID property. |
* |
* @return |
* possible object is |
* {@link BigInteger } |
* |
*/ |
public BigInteger getTableID() { |
return tableID; |
} |
/** |
* Sets the value of the tableID property. |
* |
* @param value |
* allowed object is |
* {@link BigInteger } |
* |
*/ |
public void setTableID(BigInteger value) { |
this.tableID = value; |
} |
/** |
* Gets the value of the item property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link TTItem }{@code >} |
* |
*/ |
public JAXBElement<TTItem> getItem() { |
return item; |
} |
/** |
* Sets the value of the item property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link TTItem }{@code >} |
* |
*/ |
public void setItem(JAXBElement<TTItem> value) { |
this.item = ((JAXBElement<TTItem> ) value); |
} |
/** |
* Gets the value of the responseOptions property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getResponseOptions() { |
return responseOptions; |
} |
/** |
* Sets the value of the responseOptions property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setResponseOptions(JAXBElement<String> value) { |
this.responseOptions = ((JAXBElement<String> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/DeleteItemsByQueryWithNameResponse.java |
---|
0,0 → 1,34 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "") |
@XmlRootElement(name = "DeleteItemsByQueryWithNameResponse") |
public class DeleteItemsByQueryWithNameResponse { |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/CreateAuxItemsResponse.java |
---|
0,0 → 1,71 |
package net.brutex.sbm.wsclient; |
import java.util.ArrayList; |
import java.util.List; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElement; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="return" type="{urn:aewebservices71}TTItem" maxOccurs="unbounded" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"_return" |
}) |
@XmlRootElement(name = "CreateAuxItemsResponse") |
public class CreateAuxItemsResponse { |
@XmlElement(name = "return") |
protected List<TTItem> _return; |
/** |
* Gets the value of the return property. |
* |
* <p> |
* 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 <CODE>set</CODE> method for the return property. |
* |
* <p> |
* For example, to add a new item, do as follows: |
* <pre> |
* getReturn().add(newItem); |
* </pre> |
* |
* |
* <p> |
* Objects of the following type(s) are allowed in the list |
* {@link TTItem } |
* |
* |
*/ |
public List<TTItem> getReturn() { |
if (_return == null) { |
_return = new ArrayList<TTItem>(); |
} |
return this._return; |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/CreatePrimaryItemWithNameResponse.java |
---|
0,0 → 1,65 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElementRef; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="return" type="{urn:aewebservices71}TTItem" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"_return" |
}) |
@XmlRootElement(name = "CreatePrimaryItemWithNameResponse") |
public class CreatePrimaryItemWithNameResponse { |
@XmlElementRef(name = "return", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<TTItem> _return; |
/** |
* Gets the value of the return property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link TTItem }{@code >} |
* |
*/ |
public JAXBElement<TTItem> getReturn() { |
return _return; |
} |
/** |
* Sets the value of the return property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link TTItem }{@code >} |
* |
*/ |
public void setReturn(JAXBElement<TTItem> value) { |
this._return = ((JAXBElement<TTItem> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/GetVersionResponse.java |
---|
0,0 → 1,65 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElementRef; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="return" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"_return" |
}) |
@XmlRootElement(name = "GetVersionResponse") |
public class GetVersionResponse { |
@XmlElementRef(name = "return", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> _return; |
/** |
* Gets the value of the return property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getReturn() { |
return _return; |
} |
/** |
* Sets the value of the return property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setReturn(JAXBElement<String> value) { |
this._return = ((JAXBElement<String> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/Aewebservices71PortType.java |
---|
0,0 → 1,728 |
package net.brutex.sbm.wsclient; |
import javax.jws.WebMethod; |
import javax.jws.WebParam; |
import javax.jws.WebResult; |
import javax.jws.WebService; |
import javax.xml.bind.annotation.XmlSeeAlso; |
import javax.xml.ws.RequestWrapper; |
import javax.xml.ws.ResponseWrapper; |
/** |
* This class was generated by Apache CXF 2.2.8 |
* Sun May 30 10:35:30 CEST 2010 |
* Generated source version: 2.2.8 |
* |
*/ |
@WebService(targetNamespace = "http://localhost:80/gsoap/aewebservices71.wsdl", name = "aewebservices71PortType") |
@XmlSeeAlso({ObjectFactory.class}) |
public interface Aewebservices71PortType { |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "GetNoteLoggerInfo", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetNoteLoggerInfo") |
@WebMethod(operationName = "GetNoteLoggerInfo") |
@ResponseWrapper(localName = "GetNoteLoggerInfoResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetNoteLoggerInfoResponse") |
public net.brutex.sbm.wsclient.NoteLoggerInfo getNoteLoggerInfo( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "HasUserPrivilege", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.HasUserPrivilege") |
@WebMethod(operationName = "HasUserPrivilege") |
@ResponseWrapper(localName = "HasUserPrivilegeResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.HasUserPrivilegeResponse") |
public boolean hasUserPrivilege( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "privilegeName", targetNamespace = "urn:aewebservices71") |
java.lang.String privilegeName, |
@WebParam(name = "objectId", targetNamespace = "urn:aewebservices71") |
java.lang.String objectId, |
@WebParam(name = "loginId", targetNamespace = "urn:aewebservices71") |
java.lang.String loginId |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "GetAvailableSubmitTransitions", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetAvailableSubmitTransitions") |
@WebMethod(operationName = "GetAvailableSubmitTransitions") |
@ResponseWrapper(localName = "GetAvailableSubmitTransitionsResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetAvailableSubmitTransitionsResponse") |
public java.util.List<net.brutex.sbm.wsclient.Transition> getAvailableSubmitTransitions( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "projectId", targetNamespace = "urn:aewebservices71") |
java.math.BigInteger projectId, |
@WebParam(name = "attributeName", targetNamespace = "urn:aewebservices71") |
java.lang.String attributeName |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "UpdateItemsWithName", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.UpdateItemsWithName") |
@WebMethod(operationName = "UpdateItemsWithName") |
@ResponseWrapper(localName = "UpdateItemsWithNameResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.UpdateItemsWithNameResponse") |
public java.util.List<net.brutex.sbm.wsclient.TTItem> updateItemsWithName( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "itemList", targetNamespace = "urn:aewebservices71") |
java.util.List<net.brutex.sbm.wsclient.TTItem> itemList, |
@WebParam(name = "transitionName", targetNamespace = "urn:aewebservices71") |
java.lang.String transitionName, |
@WebParam(name = "responseOptions", targetNamespace = "urn:aewebservices71") |
java.lang.String responseOptions |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "CreatePrimaryItemWithName", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.CreatePrimaryItemWithName") |
@WebMethod(operationName = "CreatePrimaryItemWithName") |
@ResponseWrapper(localName = "CreatePrimaryItemWithNameResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.CreatePrimaryItemWithNameResponse") |
public net.brutex.sbm.wsclient.TTItem createPrimaryItemWithName( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "fullyQualifiedProjectName", targetNamespace = "urn:aewebservices71") |
java.lang.String fullyQualifiedProjectName, |
@WebParam(name = "item", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.TTItem item, |
@WebParam(name = "submitTransName", targetNamespace = "urn:aewebservices71") |
java.lang.String submitTransName, |
@WebParam(name = "responseOptions", targetNamespace = "urn:aewebservices71") |
java.lang.String responseOptions |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "GetUser", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetUser") |
@WebMethod(operationName = "GetUser") |
@ResponseWrapper(localName = "GetUserResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetUserResponse") |
public net.brutex.sbm.wsclient.User getUser( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "userId", targetNamespace = "urn:aewebservices71") |
java.lang.String userId |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "GetStateChangeHistory", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetStateChangeHistory") |
@WebMethod(operationName = "GetStateChangeHistory") |
@ResponseWrapper(localName = "GetStateChangeHistoryResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetStateChangeHistoryResponse") |
public net.brutex.sbm.wsclient.GetStateChangeHistoryResult getStateChangeHistory( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "itemID", targetNamespace = "urn:aewebservices71") |
java.lang.String itemID, |
@WebParam(name = "queryRange", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.QueryRange queryRange |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "GetUserPrivileges", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetUserPrivileges") |
@WebMethod(operationName = "GetUserPrivileges") |
@ResponseWrapper(localName = "GetUserPrivilegesResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetUserPrivilegesResponse") |
public java.util.List<net.brutex.sbm.wsclient.Privilege> getUserPrivileges( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "privilegeType", targetNamespace = "urn:aewebservices71") |
java.lang.String privilegeType, |
@WebParam(name = "objectId", targetNamespace = "urn:aewebservices71") |
java.lang.String objectId, |
@WebParam(name = "loginId", targetNamespace = "urn:aewebservices71") |
java.lang.String loginId |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "CreateAuxItem", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.CreateAuxItem") |
@WebMethod(operationName = "CreateAuxItem") |
@ResponseWrapper(localName = "CreateAuxItemResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.CreateAuxItemResponse") |
public net.brutex.sbm.wsclient.TTItem createAuxItem( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "tableID", targetNamespace = "urn:aewebservices71") |
java.math.BigInteger tableID, |
@WebParam(name = "item", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.TTItem item, |
@WebParam(name = "responseOptions", targetNamespace = "urn:aewebservices71") |
java.lang.String responseOptions |
) throws AEWebservicesFaultFault; |
@RequestWrapper(localName = "DeleteItem", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.DeleteItem") |
@WebMethod(operationName = "DeleteItem") |
@ResponseWrapper(localName = "DeleteItemResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.DeleteItemResponse") |
public void deleteItem( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "sItemID", targetNamespace = "urn:aewebservices71") |
java.lang.String sItemID |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "GetUserWithPreferences", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetUserWithPreferences") |
@WebMethod(operationName = "GetUserWithPreferences") |
@ResponseWrapper(localName = "GetUserWithPreferencesResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetUserWithPreferencesResponse") |
public net.brutex.sbm.wsclient.UserWithPreferences getUserWithPreferences( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "userId", targetNamespace = "urn:aewebservices71") |
java.lang.String userId |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "GetAvailableTransitionsWithStateIDs", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetAvailableTransitionsWithStateIDs") |
@WebMethod(operationName = "GetAvailableTransitionsWithStateIDs") |
@ResponseWrapper(localName = "GetAvailableTransitionsWithStateIDsResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetAvailableTransitionsWithStateIDsResponse") |
public java.util.List<net.brutex.sbm.wsclient.Transition> getAvailableTransitionsWithStateIDs( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "itemID", targetNamespace = "urn:aewebservices71") |
java.lang.String itemID, |
@WebParam(name = "attributeName", targetNamespace = "urn:aewebservices71") |
java.lang.String attributeName |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "IsUserValid", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.IsUserValid") |
@WebMethod(operationName = "IsUserValid") |
@ResponseWrapper(localName = "IsUserValidResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.IsUserValidResponse") |
public boolean isUserValid( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "loginId", targetNamespace = "urn:aewebservices71") |
java.lang.String loginId |
) throws AEWebservicesFaultFault; |
@RequestWrapper(localName = "DeleteMashup", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.DeleteMashup") |
@WebMethod(operationName = "DeleteMashup") |
@ResponseWrapper(localName = "DeleteMashupResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.DeleteMashupResponse") |
public void deleteMashup( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "sMashupName", targetNamespace = "urn:aewebservices71") |
java.lang.String sMashupName |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "CreateFileAttachment", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.CreateFileAttachment") |
@WebMethod(operationName = "CreateFileAttachment") |
@ResponseWrapper(localName = "CreateFileAttachmentResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.CreateFileAttachmentResponse") |
public net.brutex.sbm.wsclient.FileAttachment createFileAttachment( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "itemID", targetNamespace = "urn:aewebservices71") |
java.lang.String itemID, |
@WebParam(name = "attachmentContents", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.FileAttachmentContents attachmentContents |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "ImportStatus", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.ImportStatus") |
@WebMethod(operationName = "ImportStatus") |
@ResponseWrapper(localName = "ImportStatusResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.ImportStatusResponse") |
public net.brutex.sbm.wsclient.ImportCurrentStatus importStatus( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "importUUID", targetNamespace = "urn:aewebservices71") |
java.lang.String importUUID |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "CreatePrimaryItemsWithName", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.CreatePrimaryItemsWithName") |
@WebMethod(operationName = "CreatePrimaryItemsWithName") |
@ResponseWrapper(localName = "CreatePrimaryItemsWithNameResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.CreatePrimaryItemsWithNameResponse") |
public java.util.List<net.brutex.sbm.wsclient.TTItem> createPrimaryItemsWithName( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "fullyQualifiedProjectName", targetNamespace = "urn:aewebservices71") |
java.lang.String fullyQualifiedProjectName, |
@WebParam(name = "itemList", targetNamespace = "urn:aewebservices71") |
java.util.List<net.brutex.sbm.wsclient.TTItem> itemList, |
@WebParam(name = "submitTransName", targetNamespace = "urn:aewebservices71") |
java.lang.String submitTransName, |
@WebParam(name = "responseOptions", targetNamespace = "urn:aewebservices71") |
java.lang.String responseOptions |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "GenerateUUID", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GenerateUUID") |
@WebMethod(operationName = "GenerateUUID") |
@ResponseWrapper(localName = "GenerateUUIDResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GenerateUUIDResponse") |
public java.lang.String generateUUID( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "GetSubmitProjects", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetSubmitProjects") |
@WebMethod(operationName = "GetSubmitProjects") |
@ResponseWrapper(localName = "GetSubmitProjectsResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetSubmitProjectsResponse") |
public java.util.List<net.brutex.sbm.wsclient.ProjectData> getSubmitProjects( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "tableID", targetNamespace = "urn:aewebservices71") |
java.math.BigInteger tableID |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "GetItemsByQueryWithName", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetItemsByQueryWithName") |
@WebMethod(operationName = "GetItemsByQueryWithName") |
@ResponseWrapper(localName = "GetItemsByQueryWithNameResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetItemsByQueryWithNameResponse") |
public java.util.List<net.brutex.sbm.wsclient.TTItem> getItemsByQueryWithName( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "tableDBName", targetNamespace = "urn:aewebservices71") |
java.lang.String tableDBName, |
@WebParam(name = "queryWhereClause", targetNamespace = "urn:aewebservices71") |
java.lang.String queryWhereClause, |
@WebParam(name = "orderByClause", targetNamespace = "urn:aewebservices71") |
java.lang.String orderByClause, |
@WebParam(name = "maxReturnSize", targetNamespace = "urn:aewebservices71") |
java.math.BigInteger maxReturnSize, |
@WebParam(name = "responseOptions", targetNamespace = "urn:aewebservices71") |
java.lang.String responseOptions |
) throws AEWebservicesFaultFault; |
@RequestWrapper(localName = "DeleteItems", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.DeleteItems") |
@WebMethod(operationName = "DeleteItems") |
@ResponseWrapper(localName = "DeleteItemsResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.DeleteItemsResponse") |
public void deleteItems( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "itemIdList", targetNamespace = "urn:aewebservices71") |
java.util.List<java.lang.String> itemIdList |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "GetSubmitProjectsWithName", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetSubmitProjectsWithName") |
@WebMethod(operationName = "GetSubmitProjectsWithName") |
@ResponseWrapper(localName = "GetSubmitProjectsWithNameResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetSubmitProjectsWithNameResponse") |
public java.util.List<net.brutex.sbm.wsclient.ProjectData> getSubmitProjectsWithName( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "tableDBName", targetNamespace = "urn:aewebservices71") |
java.lang.String tableDBName |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "Export", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.Export") |
@WebMethod(operationName = "Export") |
@ResponseWrapper(localName = "ExportResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.ExportResponse") |
public net.brutex.sbm.wsclient.FileContents export( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "applicationID", targetNamespace = "urn:aewebservices71") |
java.lang.String applicationID, |
@WebParam(name = "xmlExportOptions", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.FileContents xmlExportOptions |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "UpdateFileAttachment", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.UpdateFileAttachment") |
@WebMethod(operationName = "UpdateFileAttachment") |
@ResponseWrapper(localName = "UpdateFileAttachmentResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.UpdateFileAttachmentResponse") |
public net.brutex.sbm.wsclient.FileAttachment updateFileAttachment( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "itemID", targetNamespace = "urn:aewebservices71") |
java.lang.String itemID, |
@WebParam(name = "attachmentContents", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.FileAttachmentContents attachmentContents |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "CreatePrimaryItem", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.CreatePrimaryItem") |
@WebMethod(operationName = "CreatePrimaryItem") |
@ResponseWrapper(localName = "CreatePrimaryItemResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.CreatePrimaryItemResponse") |
public net.brutex.sbm.wsclient.TTItem createPrimaryItem( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "projectID", targetNamespace = "urn:aewebservices71") |
java.math.BigInteger projectID, |
@WebParam(name = "item", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.TTItem item, |
@WebParam(name = "submitTransID", targetNamespace = "urn:aewebservices71") |
java.math.BigInteger submitTransID, |
@WebParam(name = "responseOptions", targetNamespace = "urn:aewebservices71") |
java.lang.String responseOptions |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "GetReports", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetReports") |
@WebMethod(operationName = "GetReports") |
@ResponseWrapper(localName = "GetReportsResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetReportsResponse") |
public net.brutex.sbm.wsclient.GetReportsResult getReports( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "queryRange", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.QueryRange queryRange, |
@WebParam(name = "reportsFilter", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.ReportsFilter reportsFilter |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "GetItemsByQuery", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetItemsByQuery") |
@WebMethod(operationName = "GetItemsByQuery") |
@ResponseWrapper(localName = "GetItemsByQueryResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetItemsByQueryResponse") |
public java.util.List<net.brutex.sbm.wsclient.TTItem> getItemsByQuery( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "tableID", targetNamespace = "urn:aewebservices71") |
java.math.BigInteger tableID, |
@WebParam(name = "queryWhereClause", targetNamespace = "urn:aewebservices71") |
java.lang.String queryWhereClause, |
@WebParam(name = "orderByClause", targetNamespace = "urn:aewebservices71") |
java.lang.String orderByClause, |
@WebParam(name = "maxReturnSize", targetNamespace = "urn:aewebservices71") |
java.math.BigInteger maxReturnSize, |
@WebParam(name = "responseOptions", targetNamespace = "urn:aewebservices71") |
java.lang.String responseOptions |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "CreateAuxItemWithName", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.CreateAuxItemWithName") |
@WebMethod(operationName = "CreateAuxItemWithName") |
@ResponseWrapper(localName = "CreateAuxItemWithNameResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.CreateAuxItemWithNameResponse") |
public net.brutex.sbm.wsclient.TTItem createAuxItemWithName( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "tableDBName", targetNamespace = "urn:aewebservices71") |
java.lang.String tableDBName, |
@WebParam(name = "item", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.TTItem item, |
@WebParam(name = "responseOptions", targetNamespace = "urn:aewebservices71") |
java.lang.String responseOptions |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "CreateAuxItemsWithName", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.CreateAuxItemsWithName") |
@WebMethod(operationName = "CreateAuxItemsWithName") |
@ResponseWrapper(localName = "CreateAuxItemsWithNameResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.CreateAuxItemsWithNameResponse") |
public java.util.List<net.brutex.sbm.wsclient.TTItem> createAuxItemsWithName( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "tableDBName", targetNamespace = "urn:aewebservices71") |
java.lang.String tableDBName, |
@WebParam(name = "itemList", targetNamespace = "urn:aewebservices71") |
java.util.List<net.brutex.sbm.wsclient.TTItem> itemList, |
@WebParam(name = "responseOptions", targetNamespace = "urn:aewebservices71") |
java.lang.String responseOptions |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "GetTablesWithName", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetTablesWithName") |
@WebMethod(operationName = "GetTablesWithName") |
@ResponseWrapper(localName = "GetTablesWithNameResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetTablesWithNameResponse") |
public java.util.List<net.brutex.sbm.wsclient.TableData> getTablesWithName( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "solutionName", targetNamespace = "urn:aewebservices71") |
java.lang.String solutionName, |
@WebParam(name = "tableType", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.TableType tableType |
) throws AEWebservicesFaultFault; |
@RequestWrapper(localName = "DeleteItemsByQueryWithName", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.DeleteItemsByQueryWithName") |
@WebMethod(operationName = "DeleteItemsByQueryWithName") |
@ResponseWrapper(localName = "DeleteItemsByQueryWithNameResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.DeleteItemsByQueryWithNameResponse") |
public void deleteItemsByQueryWithName( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "tableDBName", targetNamespace = "urn:aewebservices71") |
java.lang.String tableDBName, |
@WebParam(name = "queryWhereClause", targetNamespace = "urn:aewebservices71") |
java.lang.String queryWhereClause |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "UpdateItemWithName", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.UpdateItemWithName") |
@WebMethod(operationName = "UpdateItemWithName") |
@ResponseWrapper(localName = "UpdateItemWithNameResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.UpdateItemWithNameResponse") |
public net.brutex.sbm.wsclient.TTItem updateItemWithName( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "item", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.TTItem item, |
@WebParam(name = "transitionName", targetNamespace = "urn:aewebservices71") |
java.lang.String transitionName, |
@WebParam(name = "responseOptions", targetNamespace = "urn:aewebservices71") |
java.lang.String responseOptions |
) throws AEWebservicesFaultFault; |
@RequestWrapper(localName = "DeleteAttachment", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.DeleteAttachment") |
@WebMethod(operationName = "DeleteAttachment") |
@ResponseWrapper(localName = "DeleteAttachmentResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.DeleteAttachmentResponse") |
public void deleteAttachment( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "attachmentID", targetNamespace = "urn:aewebservices71") |
java.math.BigInteger attachmentID |
) throws AEWebservicesFaultFault; |
@RequestWrapper(localName = "DeleteItemsByQuery", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.DeleteItemsByQuery") |
@WebMethod(operationName = "DeleteItemsByQuery") |
@ResponseWrapper(localName = "DeleteItemsByQueryResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.DeleteItemsByQueryResponse") |
public void deleteItemsByQuery( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "tableID", targetNamespace = "urn:aewebservices71") |
java.math.BigInteger tableID, |
@WebParam(name = "queryWhereClause", targetNamespace = "urn:aewebservices71") |
java.lang.String queryWhereClause |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "GetFileAttachment", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetFileAttachment") |
@WebMethod(operationName = "GetFileAttachment") |
@ResponseWrapper(localName = "GetFileAttachmentResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetFileAttachmentResponse") |
public net.brutex.sbm.wsclient.FileAttachmentContents getFileAttachment( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "itemID", targetNamespace = "urn:aewebservices71") |
java.lang.String itemID, |
@WebParam(name = "attachmentID", targetNamespace = "urn:aewebservices71") |
java.math.BigInteger attachmentID |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "GetItem", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetItem") |
@WebMethod(operationName = "GetItem") |
@ResponseWrapper(localName = "GetItemResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetItemResponse") |
public net.brutex.sbm.wsclient.TTItem getItem( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "itemID", targetNamespace = "urn:aewebservices71") |
java.lang.String itemID, |
@WebParam(name = "responseOptions", targetNamespace = "urn:aewebservices71") |
java.lang.String responseOptions |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "GetUserExtended", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetUserExtended") |
@WebMethod(operationName = "GetUserExtended") |
@ResponseWrapper(localName = "GetUserExtendedResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetUserExtendedResponse") |
public net.brutex.sbm.wsclient.UserExtended getUserExtended( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "userId", targetNamespace = "urn:aewebservices71") |
java.lang.String userId |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "RunReport", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.RunReport") |
@WebMethod(operationName = "RunReport") |
@ResponseWrapper(localName = "RunReportResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.RunReportResponse") |
public net.brutex.sbm.wsclient.RunReportResult runReport( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "queryRange", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.QueryRange queryRange, |
@WebParam(name = "reportUUID", targetNamespace = "urn:aewebservices71") |
java.lang.String reportUUID, |
@WebParam(name = "reportName", targetNamespace = "urn:aewebservices71") |
java.lang.String reportName, |
@WebParam(name = "reportID", targetNamespace = "urn:aewebservices71") |
java.math.BigInteger reportID, |
@WebParam(name = "solutionID", targetNamespace = "urn:aewebservices71") |
java.math.BigInteger solutionID, |
@WebParam(name = "solutionName", targetNamespace = "urn:aewebservices71") |
java.lang.String solutionName, |
@WebParam(name = "projectID", targetNamespace = "urn:aewebservices71") |
java.math.BigInteger projectID, |
@WebParam(name = "projectName", targetNamespace = "urn:aewebservices71") |
java.lang.String projectName, |
@WebParam(name = "projectUUID", targetNamespace = "urn:aewebservices71") |
java.lang.String projectUUID, |
@WebParam(name = "tableID", targetNamespace = "urn:aewebservices71") |
java.math.BigInteger tableID, |
@WebParam(name = "tableName", targetNamespace = "urn:aewebservices71") |
java.lang.String tableName, |
@WebParam(name = "reportCategory", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.ReportCategory reportCategory, |
@WebParam(name = "reportAccessLevel", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.ReportAccessLevel reportAccessLevel |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "CreatePrimaryItems", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.CreatePrimaryItems") |
@WebMethod(operationName = "CreatePrimaryItems") |
@ResponseWrapper(localName = "CreatePrimaryItemsResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.CreatePrimaryItemsResponse") |
public java.util.List<net.brutex.sbm.wsclient.TTItem> createPrimaryItems( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "projectID", targetNamespace = "urn:aewebservices71") |
java.math.BigInteger projectID, |
@WebParam(name = "itemList", targetNamespace = "urn:aewebservices71") |
java.util.List<net.brutex.sbm.wsclient.TTItem> itemList, |
@WebParam(name = "submitTransID", targetNamespace = "urn:aewebservices71") |
java.math.BigInteger submitTransID, |
@WebParam(name = "responseOptions", targetNamespace = "urn:aewebservices71") |
java.lang.String responseOptions |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "UpdateItem", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.UpdateItem") |
@WebMethod(operationName = "UpdateItem") |
@ResponseWrapper(localName = "UpdateItemResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.UpdateItemResponse") |
public net.brutex.sbm.wsclient.TTItem updateItem( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "item", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.TTItem item, |
@WebParam(name = "transitionId", targetNamespace = "urn:aewebservices71") |
java.math.BigInteger transitionId, |
@WebParam(name = "responseOptions", targetNamespace = "urn:aewebservices71") |
java.lang.String responseOptions |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "GetItems", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetItems") |
@WebMethod(operationName = "GetItems") |
@ResponseWrapper(localName = "GetItemsResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetItemsResponse") |
public java.util.List<net.brutex.sbm.wsclient.TTItem> getItems( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "itemIdList", targetNamespace = "urn:aewebservices71") |
java.util.List<java.lang.String> itemIdList, |
@WebParam(name = "responseOptions", targetNamespace = "urn:aewebservices71") |
java.lang.String responseOptions |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "GetTables", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetTables") |
@WebMethod(operationName = "GetTables") |
@ResponseWrapper(localName = "GetTablesResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetTablesResponse") |
public java.util.List<net.brutex.sbm.wsclient.TableData> getTables( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "solutionID", targetNamespace = "urn:aewebservices71") |
java.math.BigInteger solutionID, |
@WebParam(name = "tableType", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.TableType tableType |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "UpdateItems", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.UpdateItems") |
@WebMethod(operationName = "UpdateItems") |
@ResponseWrapper(localName = "UpdateItemsResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.UpdateItemsResponse") |
public java.util.List<net.brutex.sbm.wsclient.TTItem> updateItems( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "itemList", targetNamespace = "urn:aewebservices71") |
java.util.List<net.brutex.sbm.wsclient.TTItem> itemList, |
@WebParam(name = "transitionId", targetNamespace = "urn:aewebservices71") |
java.math.BigInteger transitionId, |
@WebParam(name = "responseOptions", targetNamespace = "urn:aewebservices71") |
java.lang.String responseOptions |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "GetSolutionsWithUniqueName", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetSolutionsWithUniqueName") |
@WebMethod(operationName = "GetSolutionsWithUniqueName") |
@ResponseWrapper(localName = "GetSolutionsWithUniqueNameResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetSolutionsWithUniqueNameResponse") |
public java.util.List<net.brutex.sbm.wsclient.SolutionWithUniqueName> getSolutionsWithUniqueName( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "GetAvailableQuickTransitions", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetAvailableQuickTransitions") |
@WebMethod(operationName = "GetAvailableQuickTransitions") |
@ResponseWrapper(localName = "GetAvailableQuickTransitionsResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetAvailableQuickTransitionsResponse") |
public java.util.List<net.brutex.sbm.wsclient.Transition> getAvailableQuickTransitions( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "itemID", targetNamespace = "urn:aewebservices71") |
java.lang.String itemID, |
@WebParam(name = "attributeName", targetNamespace = "urn:aewebservices71") |
java.lang.String attributeName |
); |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "GetAvailableSubmitTransitionsWithName", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetAvailableSubmitTransitionsWithName") |
@WebMethod(operationName = "GetAvailableSubmitTransitionsWithName") |
@ResponseWrapper(localName = "GetAvailableSubmitTransitionsWithNameResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetAvailableSubmitTransitionsWithNameResponse") |
public java.util.List<net.brutex.sbm.wsclient.Transition> getAvailableSubmitTransitionsWithName( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "fullyQualifiedProjectName", targetNamespace = "urn:aewebservices71") |
java.lang.String fullyQualifiedProjectName, |
@WebParam(name = "attributeName", targetNamespace = "urn:aewebservices71") |
java.lang.String attributeName |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "GetAvailableTransitions", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetAvailableTransitions") |
@WebMethod(operationName = "GetAvailableTransitions") |
@ResponseWrapper(localName = "GetAvailableTransitionsResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetAvailableTransitionsResponse") |
public java.util.List<net.brutex.sbm.wsclient.Transition> getAvailableTransitions( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "itemID", targetNamespace = "urn:aewebservices71") |
java.lang.String itemID, |
@WebParam(name = "attributeName", targetNamespace = "urn:aewebservices71") |
java.lang.String attributeName |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "GetVersion", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetVersion") |
@WebMethod(operationName = "GetVersion") |
@ResponseWrapper(localName = "GetVersionResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetVersionResponse") |
public java.lang.String getVersion() throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "Import", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.Import") |
@WebMethod(operationName = "Import") |
@ResponseWrapper(localName = "ImportResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.ImportResponse") |
public java.lang.String _import( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "xmlInFile", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.FileContents xmlInFile, |
@WebParam(name = "adminRepositoryID", targetNamespace = "urn:aewebservices71") |
java.lang.String adminRepositoryID, |
@WebParam(name = "importResponseEndPoint", targetNamespace = "urn:aewebservices71") |
java.lang.String importResponseEndPoint, |
@WebParam(name = "importResponseID", targetNamespace = "urn:aewebservices71") |
java.lang.String importResponseID, |
@WebParam(name = "xmlImportOptions", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.FileContents xmlImportOptions, |
@WebParam(name = "validateOnly", targetNamespace = "urn:aewebservices71") |
boolean validateOnly |
) throws AEWebservicesFaultFault; |
@RequestWrapper(localName = "Logout", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.Logout") |
@WebMethod(operationName = "Logout") |
@ResponseWrapper(localName = "LogoutResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.LogoutResponse") |
public void logout( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "CreateAuxItems", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.CreateAuxItems") |
@WebMethod(operationName = "CreateAuxItems") |
@ResponseWrapper(localName = "CreateAuxItemsResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.CreateAuxItemsResponse") |
public java.util.List<net.brutex.sbm.wsclient.TTItem> createAuxItems( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth, |
@WebParam(name = "tableID", targetNamespace = "urn:aewebservices71") |
java.math.BigInteger tableID, |
@WebParam(name = "itemList", targetNamespace = "urn:aewebservices71") |
java.util.List<net.brutex.sbm.wsclient.TTItem> itemList, |
@WebParam(name = "responseOptions", targetNamespace = "urn:aewebservices71") |
java.lang.String responseOptions |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "GetSolutions", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetSolutions") |
@WebMethod(operationName = "GetSolutions") |
@ResponseWrapper(localName = "GetSolutionsResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetSolutionsResponse") |
public java.util.List<net.brutex.sbm.wsclient.SolutionData> getSolutions( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth |
) throws AEWebservicesFaultFault; |
@WebResult(name = "return", targetNamespace = "urn:aewebservices71") |
@RequestWrapper(localName = "GetApplications", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetApplications") |
@WebMethod(operationName = "GetApplications") |
@ResponseWrapper(localName = "GetApplicationsResponse", targetNamespace = "urn:aewebservices71", className = "net.brutex.sbm.wsclient.GetApplicationsResponse") |
public java.util.List<net.brutex.sbm.wsclient.ApplicationData> getApplications( |
@WebParam(name = "auth", targetNamespace = "urn:aewebservices71") |
net.brutex.sbm.wsclient.Auth auth |
) throws AEWebservicesFaultFault; |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/CreateFileAttachment.java |
---|
0,0 → 1,121 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElementRef; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/> |
* <element name="itemID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="attachmentContents" type="{urn:aewebservices71}FileAttachmentContents" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"auth", |
"itemID", |
"attachmentContents" |
}) |
@XmlRootElement(name = "CreateFileAttachment") |
public class CreateFileAttachment { |
@XmlElementRef(name = "auth", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<Auth> auth; |
@XmlElementRef(name = "itemID", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> itemID; |
@XmlElementRef(name = "attachmentContents", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<FileAttachmentContents> attachmentContents; |
/** |
* Gets the value of the auth property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public JAXBElement<Auth> getAuth() { |
return auth; |
} |
/** |
* Sets the value of the auth property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public void setAuth(JAXBElement<Auth> value) { |
this.auth = ((JAXBElement<Auth> ) value); |
} |
/** |
* Gets the value of the itemID property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getItemID() { |
return itemID; |
} |
/** |
* Sets the value of the itemID property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setItemID(JAXBElement<String> value) { |
this.itemID = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the attachmentContents property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link FileAttachmentContents }{@code >} |
* |
*/ |
public JAXBElement<FileAttachmentContents> getAttachmentContents() { |
return attachmentContents; |
} |
/** |
* Sets the value of the attachmentContents property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link FileAttachmentContents }{@code >} |
* |
*/ |
public void setAttachmentContents(JAXBElement<FileAttachmentContents> value) { |
this.attachmentContents = ((JAXBElement<FileAttachmentContents> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/GetReportsResponse.java |
---|
0,0 → 1,64 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElement; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="return" type="{urn:aewebservices71}GetReportsResult"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"_return" |
}) |
@XmlRootElement(name = "GetReportsResponse") |
public class GetReportsResponse { |
@XmlElement(name = "return", required = true) |
protected GetReportsResult _return; |
/** |
* Gets the value of the return property. |
* |
* @return |
* possible object is |
* {@link GetReportsResult } |
* |
*/ |
public GetReportsResult getReturn() { |
return _return; |
} |
/** |
* Sets the value of the return property. |
* |
* @param value |
* allowed object is |
* {@link GetReportsResult } |
* |
*/ |
public void setReturn(GetReportsResult value) { |
this._return = value; |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/GetAvailableTransitions.java |
---|
0,0 → 1,121 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElementRef; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/> |
* <element name="itemID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="attributeName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"auth", |
"itemID", |
"attributeName" |
}) |
@XmlRootElement(name = "GetAvailableTransitions") |
public class GetAvailableTransitions { |
@XmlElementRef(name = "auth", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<Auth> auth; |
@XmlElementRef(name = "itemID", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> itemID; |
@XmlElementRef(name = "attributeName", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> attributeName; |
/** |
* Gets the value of the auth property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public JAXBElement<Auth> getAuth() { |
return auth; |
} |
/** |
* Sets the value of the auth property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public void setAuth(JAXBElement<Auth> value) { |
this.auth = ((JAXBElement<Auth> ) value); |
} |
/** |
* Gets the value of the itemID property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getItemID() { |
return itemID; |
} |
/** |
* Sets the value of the itemID property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setItemID(JAXBElement<String> value) { |
this.itemID = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the attributeName property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getAttributeName() { |
return attributeName; |
} |
/** |
* Sets the value of the attributeName property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setAttributeName(JAXBElement<String> value) { |
this.attributeName = ((JAXBElement<String> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/GetAvailableSubmitTransitionsWithNameResponse.java |
---|
0,0 → 1,71 |
package net.brutex.sbm.wsclient; |
import java.util.ArrayList; |
import java.util.List; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElement; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="return" type="{urn:aewebservices71}Transition" maxOccurs="unbounded" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"_return" |
}) |
@XmlRootElement(name = "GetAvailableSubmitTransitionsWithNameResponse") |
public class GetAvailableSubmitTransitionsWithNameResponse { |
@XmlElement(name = "return") |
protected List<Transition> _return; |
/** |
* Gets the value of the return property. |
* |
* <p> |
* 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 <CODE>set</CODE> method for the return property. |
* |
* <p> |
* For example, to add a new item, do as follows: |
* <pre> |
* getReturn().add(newItem); |
* </pre> |
* |
* |
* <p> |
* Objects of the following type(s) are allowed in the list |
* {@link Transition } |
* |
* |
*/ |
public List<Transition> getReturn() { |
if (_return == null) { |
_return = new ArrayList<Transition>(); |
} |
return this._return; |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/ImportStatus.java |
---|
0,0 → 1,93 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElementRef; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/> |
* <element name="importUUID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"auth", |
"importUUID" |
}) |
@XmlRootElement(name = "ImportStatus") |
public class ImportStatus { |
@XmlElementRef(name = "auth", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<Auth> auth; |
@XmlElementRef(name = "importUUID", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> importUUID; |
/** |
* Gets the value of the auth property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public JAXBElement<Auth> getAuth() { |
return auth; |
} |
/** |
* Sets the value of the auth property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public void setAuth(JAXBElement<Auth> value) { |
this.auth = ((JAXBElement<Auth> ) value); |
} |
/** |
* Gets the value of the importUUID property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getImportUUID() { |
return importUUID; |
} |
/** |
* Sets the value of the importUUID property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setImportUUID(JAXBElement<String> value) { |
this.importUUID = ((JAXBElement<String> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/UpdateItemResponse.java |
---|
0,0 → 1,65 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElementRef; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="return" type="{urn:aewebservices71}TTItem" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"_return" |
}) |
@XmlRootElement(name = "UpdateItemResponse") |
public class UpdateItemResponse { |
@XmlElementRef(name = "return", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<TTItem> _return; |
/** |
* Gets the value of the return property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link TTItem }{@code >} |
* |
*/ |
public JAXBElement<TTItem> getReturn() { |
return _return; |
} |
/** |
* Sets the value of the return property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link TTItem }{@code >} |
* |
*/ |
public void setReturn(JAXBElement<TTItem> value) { |
this._return = ((JAXBElement<TTItem> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/GetItems.java |
---|
0,0 → 1,127 |
package net.brutex.sbm.wsclient; |
import java.util.ArrayList; |
import java.util.List; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElementRef; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/> |
* <element name="itemIdList" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> |
* <element name="responseOptions" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"auth", |
"itemIdList", |
"responseOptions" |
}) |
@XmlRootElement(name = "GetItems") |
public class GetItems { |
@XmlElementRef(name = "auth", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<Auth> auth; |
protected List<String> itemIdList; |
@XmlElementRef(name = "responseOptions", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> responseOptions; |
/** |
* Gets the value of the auth property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public JAXBElement<Auth> getAuth() { |
return auth; |
} |
/** |
* Sets the value of the auth property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public void setAuth(JAXBElement<Auth> value) { |
this.auth = ((JAXBElement<Auth> ) value); |
} |
/** |
* Gets the value of the itemIdList property. |
* |
* <p> |
* 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 <CODE>set</CODE> method for the itemIdList property. |
* |
* <p> |
* For example, to add a new item, do as follows: |
* <pre> |
* getItemIdList().add(newItem); |
* </pre> |
* |
* |
* <p> |
* Objects of the following type(s) are allowed in the list |
* {@link String } |
* |
* |
*/ |
public List<String> getItemIdList() { |
if (itemIdList == null) { |
itemIdList = new ArrayList<String>(); |
} |
return this.itemIdList; |
} |
/** |
* Gets the value of the responseOptions property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getResponseOptions() { |
return responseOptions; |
} |
/** |
* Sets the value of the responseOptions property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setResponseOptions(JAXBElement<String> value) { |
this.responseOptions = ((JAXBElement<String> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/UpdateItems.java |
---|
0,0 → 1,155 |
package net.brutex.sbm.wsclient; |
import java.math.BigInteger; |
import java.util.ArrayList; |
import java.util.List; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElementRef; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/> |
* <element name="itemList" type="{urn:aewebservices71}TTItem" maxOccurs="unbounded" minOccurs="0"/> |
* <element name="transitionId" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/> |
* <element name="responseOptions" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"auth", |
"itemList", |
"transitionId", |
"responseOptions" |
}) |
@XmlRootElement(name = "UpdateItems") |
public class UpdateItems { |
@XmlElementRef(name = "auth", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<Auth> auth; |
protected List<TTItem> itemList; |
protected BigInteger transitionId; |
@XmlElementRef(name = "responseOptions", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> responseOptions; |
/** |
* Gets the value of the auth property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public JAXBElement<Auth> getAuth() { |
return auth; |
} |
/** |
* Sets the value of the auth property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public void setAuth(JAXBElement<Auth> value) { |
this.auth = ((JAXBElement<Auth> ) value); |
} |
/** |
* Gets the value of the itemList property. |
* |
* <p> |
* 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 <CODE>set</CODE> method for the itemList property. |
* |
* <p> |
* For example, to add a new item, do as follows: |
* <pre> |
* getItemList().add(newItem); |
* </pre> |
* |
* |
* <p> |
* Objects of the following type(s) are allowed in the list |
* {@link TTItem } |
* |
* |
*/ |
public List<TTItem> getItemList() { |
if (itemList == null) { |
itemList = new ArrayList<TTItem>(); |
} |
return this.itemList; |
} |
/** |
* 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 responseOptions property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getResponseOptions() { |
return responseOptions; |
} |
/** |
* Sets the value of the responseOptions property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setResponseOptions(JAXBElement<String> value) { |
this.responseOptions = ((JAXBElement<String> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/GetUserPrivilegesResponse.java |
---|
0,0 → 1,71 |
package net.brutex.sbm.wsclient; |
import java.util.ArrayList; |
import java.util.List; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElement; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="return" type="{urn:aewebservices71}Privilege" maxOccurs="unbounded" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"_return" |
}) |
@XmlRootElement(name = "GetUserPrivilegesResponse") |
public class GetUserPrivilegesResponse { |
@XmlElement(name = "return") |
protected List<Privilege> _return; |
/** |
* Gets the value of the return property. |
* |
* <p> |
* 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 <CODE>set</CODE> method for the return property. |
* |
* <p> |
* For example, to add a new item, do as follows: |
* <pre> |
* getReturn().add(newItem); |
* </pre> |
* |
* |
* <p> |
* Objects of the following type(s) are allowed in the list |
* {@link Privilege } |
* |
* |
*/ |
public List<Privilege> getReturn() { |
if (_return == null) { |
_return = new ArrayList<Privilege>(); |
} |
return this._return; |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/GetTablesResponse.java |
---|
0,0 → 1,71 |
package net.brutex.sbm.wsclient; |
import java.util.ArrayList; |
import java.util.List; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElement; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="return" type="{urn:aewebservices71}TableData" maxOccurs="unbounded" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"_return" |
}) |
@XmlRootElement(name = "GetTablesResponse") |
public class GetTablesResponse { |
@XmlElement(name = "return") |
protected List<TableData> _return; |
/** |
* Gets the value of the return property. |
* |
* <p> |
* 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 <CODE>set</CODE> method for the return property. |
* |
* <p> |
* For example, to add a new item, do as follows: |
* <pre> |
* getReturn().add(newItem); |
* </pre> |
* |
* |
* <p> |
* Objects of the following type(s) are allowed in the list |
* {@link TableData } |
* |
* |
*/ |
public List<TableData> getReturn() { |
if (_return == null) { |
_return = new ArrayList<TableData>(); |
} |
return this._return; |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/GetAvailableTransitionsWithStateIDsResponse.java |
---|
0,0 → 1,71 |
package net.brutex.sbm.wsclient; |
import java.util.ArrayList; |
import java.util.List; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElement; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="return" type="{urn:aewebservices71}Transition" maxOccurs="unbounded" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"_return" |
}) |
@XmlRootElement(name = "GetAvailableTransitionsWithStateIDsResponse") |
public class GetAvailableTransitionsWithStateIDsResponse { |
@XmlElement(name = "return") |
protected List<Transition> _return; |
/** |
* Gets the value of the return property. |
* |
* <p> |
* 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 <CODE>set</CODE> method for the return property. |
* |
* <p> |
* For example, to add a new item, do as follows: |
* <pre> |
* getReturn().add(newItem); |
* </pre> |
* |
* |
* <p> |
* Objects of the following type(s) are allowed in the list |
* {@link Transition } |
* |
* |
*/ |
public List<Transition> getReturn() { |
if (_return == null) { |
_return = new ArrayList<Transition>(); |
} |
return this._return; |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/UserWithPreferences.java |
---|
0,0 → 1,373 |
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.XmlSeeAlso; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for UserWithPreferences complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType name="UserWithPreferences"> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="userId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="userName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="id" type="{http://www.w3.org/2001/XMLSchema}integer"/> |
* <element name="uuid" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="email" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="emailCC" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="timezone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="offsetFromGMT" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/> |
* <element name="dstSavings" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/> |
* <element name="datePreference" type="{urn:aewebservices71}DatePreference" minOccurs="0"/> |
* <element name="timePreference" type="{urn:aewebservices71}TimePreference" minOccurs="0"/> |
* <element name="namespaceName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "UserWithPreferences", propOrder = { |
"userId", |
"userName", |
"id", |
"uuid", |
"email", |
"emailCC", |
"timezone", |
"offsetFromGMT", |
"dstSavings", |
"datePreference", |
"timePreference", |
"namespaceName" |
}) |
@XmlSeeAlso({ |
UserExtended.class |
}) |
public class UserWithPreferences { |
@XmlElementRef(name = "userId", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> userId; |
@XmlElementRef(name = "userName", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> userName; |
@XmlElement(required = true) |
protected BigInteger id; |
@XmlElementRef(name = "uuid", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> uuid; |
@XmlElementRef(name = "email", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> email; |
@XmlElementRef(name = "emailCC", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> emailCC; |
@XmlElementRef(name = "timezone", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> timezone; |
protected BigInteger offsetFromGMT; |
protected BigInteger dstSavings; |
protected DatePreference datePreference; |
protected TimePreference timePreference; |
@XmlElementRef(name = "namespaceName", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> namespaceName; |
/** |
* Gets the value of the userId property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getUserId() { |
return userId; |
} |
/** |
* Sets the value of the userId property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setUserId(JAXBElement<String> value) { |
this.userId = ((JAXBElement<String> ) 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 id property. |
* |
* @return |
* possible object is |
* {@link BigInteger } |
* |
*/ |
public BigInteger getId() { |
return id; |
} |
/** |
* Sets the value of the id property. |
* |
* @param value |
* allowed object is |
* {@link BigInteger } |
* |
*/ |
public void setId(BigInteger value) { |
this.id = value; |
} |
/** |
* Gets the value of the uuid property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getUuid() { |
return uuid; |
} |
/** |
* Sets the value of the uuid property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setUuid(JAXBElement<String> value) { |
this.uuid = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the email property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getEmail() { |
return email; |
} |
/** |
* Sets the value of the email property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setEmail(JAXBElement<String> value) { |
this.email = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the emailCC property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getEmailCC() { |
return emailCC; |
} |
/** |
* Sets the value of the emailCC property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setEmailCC(JAXBElement<String> value) { |
this.emailCC = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the timezone property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getTimezone() { |
return timezone; |
} |
/** |
* Sets the value of the timezone property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setTimezone(JAXBElement<String> value) { |
this.timezone = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the offsetFromGMT property. |
* |
* @return |
* possible object is |
* {@link BigInteger } |
* |
*/ |
public BigInteger getOffsetFromGMT() { |
return offsetFromGMT; |
} |
/** |
* Sets the value of the offsetFromGMT property. |
* |
* @param value |
* allowed object is |
* {@link BigInteger } |
* |
*/ |
public void setOffsetFromGMT(BigInteger value) { |
this.offsetFromGMT = value; |
} |
/** |
* Gets the value of the dstSavings property. |
* |
* @return |
* possible object is |
* {@link BigInteger } |
* |
*/ |
public BigInteger getDstSavings() { |
return dstSavings; |
} |
/** |
* Sets the value of the dstSavings property. |
* |
* @param value |
* allowed object is |
* {@link BigInteger } |
* |
*/ |
public void setDstSavings(BigInteger value) { |
this.dstSavings = value; |
} |
/** |
* Gets the value of the datePreference property. |
* |
* @return |
* possible object is |
* {@link DatePreference } |
* |
*/ |
public DatePreference getDatePreference() { |
return datePreference; |
} |
/** |
* Sets the value of the datePreference property. |
* |
* @param value |
* allowed object is |
* {@link DatePreference } |
* |
*/ |
public void setDatePreference(DatePreference value) { |
this.datePreference = value; |
} |
/** |
* Gets the value of the timePreference property. |
* |
* @return |
* possible object is |
* {@link TimePreference } |
* |
*/ |
public TimePreference getTimePreference() { |
return timePreference; |
} |
/** |
* Sets the value of the timePreference property. |
* |
* @param value |
* allowed object is |
* {@link TimePreference } |
* |
*/ |
public void setTimePreference(TimePreference value) { |
this.timePreference = value; |
} |
/** |
* Gets the value of the namespaceName property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getNamespaceName() { |
return namespaceName; |
} |
/** |
* Sets the value of the namespaceName property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setNamespaceName(JAXBElement<String> value) { |
this.namespaceName = ((JAXBElement<String> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/Aewebservices71.java |
---|
0,0 → 1,77 |
/* |
* |
*/ |
package net.brutex.sbm.wsclient; |
import java.net.MalformedURLException; |
import java.net.URL; |
import javax.xml.namespace.QName; |
import javax.xml.ws.WebEndpoint; |
import javax.xml.ws.WebServiceClient; |
import javax.xml.ws.WebServiceFeature; |
import javax.xml.ws.Service; |
/** |
* This class was generated by Apache CXF 2.2.8 |
* Sun May 30 10:35:30 CEST 2010 |
* Generated source version: 2.2.8 |
* |
*/ |
@WebServiceClient(name = "aewebservices71", |
wsdlLocation = "file:aewebservices71.wsdl", |
targetNamespace = "http://localhost:80/gsoap/aewebservices71.wsdl") |
public class Aewebservices71 extends Service { |
public final static URL WSDL_LOCATION; |
public final static QName SERVICE = new QName("http://localhost:80/gsoap/aewebservices71.wsdl", "aewebservices71"); |
public final static QName Aewebservices71 = new QName("http://localhost:80/gsoap/aewebservices71.wsdl", "aewebservices71"); |
static { |
URL url = null; |
try { |
url = new URL("file:aewebservices71.wsdl"); |
} catch (MalformedURLException e) { |
System.err.println("Can not initialize the default wsdl from file:aewebservices71.wsdl"); |
// e.printStackTrace(); |
} |
WSDL_LOCATION = url; |
} |
public Aewebservices71(URL wsdlLocation) { |
super(wsdlLocation, SERVICE); |
} |
public Aewebservices71(URL wsdlLocation, QName serviceName) { |
super(wsdlLocation, serviceName); |
} |
public Aewebservices71() { |
super(WSDL_LOCATION, SERVICE); |
} |
/** |
* |
* @return |
* returns Aewebservices71PortType |
*/ |
@WebEndpoint(name = "aewebservices71") |
public Aewebservices71PortType getAewebservices71() { |
return super.getPort(Aewebservices71, Aewebservices71PortType.class); |
} |
/** |
* |
* @param features |
* A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values. |
* @return |
* returns Aewebservices71PortType |
*/ |
@WebEndpoint(name = "aewebservices71") |
public Aewebservices71PortType getAewebservices71(WebServiceFeature... features) { |
return super.getPort(Aewebservices71, Aewebservices71PortType.class, features); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/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> |
* <complexType name="StateChangeHistory"> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="newStateID" type="{http://www.w3.org/2001/XMLSchema}integer"/> |
* <element name="newStateName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="transitionID" type="{http://www.w3.org/2001/XMLSchema}integer"/> |
* <element name="transitionName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="time" type="{http://www.w3.org/2001/XMLSchema}dateTime"/> |
* <element name="userID" type="{http://www.w3.org/2001/XMLSchema}integer"/> |
* <element name="userName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="ownerID" type="{http://www.w3.org/2001/XMLSchema}integer"/> |
* <element name="ownerName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </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 |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/ReportCategory.java |
---|
0,0 → 1,46 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.annotation.XmlEnum; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for ReportCategory. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* <p> |
* <pre> |
* <simpleType name="ReportCategory"> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}string"> |
* <enumeration value="ALL"/> |
* <enumeration value="APPLICATION"/> |
* <enumeration value="BUILTIN"/> |
* <enumeration value="MY"/> |
* <enumeration value="QUICKLINKS"/> |
* <enumeration value="USERREPORTS"/> |
* </restriction> |
* </simpleType> |
* </pre> |
* |
*/ |
@XmlType(name = "ReportCategory") |
@XmlEnum |
public enum ReportCategory { |
ALL, |
APPLICATION, |
BUILTIN, |
MY, |
QUICKLINKS, |
USERREPORTS; |
public String value() { |
return name(); |
} |
public static ReportCategory fromValue(String v) { |
return valueOf(v); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/Logout.java |
---|
0,0 → 1,65 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElementRef; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"auth" |
}) |
@XmlRootElement(name = "Logout") |
public class Logout { |
@XmlElementRef(name = "auth", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<Auth> auth; |
/** |
* Gets the value of the auth property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public JAXBElement<Auth> getAuth() { |
return auth; |
} |
/** |
* Sets the value of the auth property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public void setAuth(JAXBElement<Auth> value) { |
this.auth = ((JAXBElement<Auth> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/UpdateFileAttachmentResponse.java |
---|
0,0 → 1,65 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElementRef; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="return" type="{urn:aewebservices71}FileAttachment" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"_return" |
}) |
@XmlRootElement(name = "UpdateFileAttachmentResponse") |
public class UpdateFileAttachmentResponse { |
@XmlElementRef(name = "return", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<FileAttachment> _return; |
/** |
* Gets the value of the return property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link FileAttachment }{@code >} |
* |
*/ |
public JAXBElement<FileAttachment> getReturn() { |
return _return; |
} |
/** |
* Sets the value of the return property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link FileAttachment }{@code >} |
* |
*/ |
public void setReturn(JAXBElement<FileAttachment> value) { |
this._return = ((JAXBElement<FileAttachment> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/GetUserWithPreferencesResponse.java |
---|
0,0 → 1,65 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElementRef; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="return" type="{urn:aewebservices71}UserWithPreferences" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"_return" |
}) |
@XmlRootElement(name = "GetUserWithPreferencesResponse") |
public class GetUserWithPreferencesResponse { |
@XmlElementRef(name = "return", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<UserWithPreferences> _return; |
/** |
* Gets the value of the return property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link UserWithPreferences }{@code >} |
* |
*/ |
public JAXBElement<UserWithPreferences> getReturn() { |
return _return; |
} |
/** |
* Sets the value of the return property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link UserWithPreferences }{@code >} |
* |
*/ |
public void setReturn(JAXBElement<UserWithPreferences> value) { |
this._return = ((JAXBElement<UserWithPreferences> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/GetUser.java |
---|
0,0 → 1,93 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElementRef; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/> |
* <element name="userId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"auth", |
"userId" |
}) |
@XmlRootElement(name = "GetUser") |
public class GetUser { |
@XmlElementRef(name = "auth", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<Auth> auth; |
@XmlElementRef(name = "userId", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> userId; |
/** |
* Gets the value of the auth property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public JAXBElement<Auth> getAuth() { |
return auth; |
} |
/** |
* Sets the value of the auth property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public void setAuth(JAXBElement<Auth> value) { |
this.auth = ((JAXBElement<Auth> ) value); |
} |
/** |
* Gets the value of the userId property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getUserId() { |
return userId; |
} |
/** |
* Sets the value of the userId property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setUserId(JAXBElement<String> value) { |
this.userId = ((JAXBElement<String> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/CreateAuxItemsWithName.java |
---|
0,0 → 1,155 |
package net.brutex.sbm.wsclient; |
import java.util.ArrayList; |
import java.util.List; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElementRef; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/> |
* <element name="tableDBName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="itemList" type="{urn:aewebservices71}TTItem" maxOccurs="unbounded" minOccurs="0"/> |
* <element name="responseOptions" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"auth", |
"tableDBName", |
"itemList", |
"responseOptions" |
}) |
@XmlRootElement(name = "CreateAuxItemsWithName") |
public class CreateAuxItemsWithName { |
@XmlElementRef(name = "auth", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<Auth> auth; |
@XmlElementRef(name = "tableDBName", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> tableDBName; |
protected List<TTItem> itemList; |
@XmlElementRef(name = "responseOptions", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> responseOptions; |
/** |
* Gets the value of the auth property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public JAXBElement<Auth> getAuth() { |
return auth; |
} |
/** |
* Sets the value of the auth property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public void setAuth(JAXBElement<Auth> value) { |
this.auth = ((JAXBElement<Auth> ) value); |
} |
/** |
* Gets the value of the tableDBName property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getTableDBName() { |
return tableDBName; |
} |
/** |
* Sets the value of the tableDBName property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setTableDBName(JAXBElement<String> value) { |
this.tableDBName = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the itemList property. |
* |
* <p> |
* 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 <CODE>set</CODE> method for the itemList property. |
* |
* <p> |
* For example, to add a new item, do as follows: |
* <pre> |
* getItemList().add(newItem); |
* </pre> |
* |
* |
* <p> |
* Objects of the following type(s) are allowed in the list |
* {@link TTItem } |
* |
* |
*/ |
public List<TTItem> getItemList() { |
if (itemList == null) { |
itemList = new ArrayList<TTItem>(); |
} |
return this.itemList; |
} |
/** |
* Gets the value of the responseOptions property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getResponseOptions() { |
return responseOptions; |
} |
/** |
* Sets the value of the responseOptions property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setResponseOptions(JAXBElement<String> value) { |
this.responseOptions = ((JAXBElement<String> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/HasUserPrivilege.java |
---|
0,0 → 1,149 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElementRef; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/> |
* <element name="privilegeName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="objectId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="loginId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"auth", |
"privilegeName", |
"objectId", |
"loginId" |
}) |
@XmlRootElement(name = "HasUserPrivilege") |
public class HasUserPrivilege { |
@XmlElementRef(name = "auth", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<Auth> auth; |
@XmlElementRef(name = "privilegeName", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> privilegeName; |
@XmlElementRef(name = "objectId", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> objectId; |
@XmlElementRef(name = "loginId", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> loginId; |
/** |
* Gets the value of the auth property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public JAXBElement<Auth> getAuth() { |
return auth; |
} |
/** |
* Sets the value of the auth property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public void setAuth(JAXBElement<Auth> value) { |
this.auth = ((JAXBElement<Auth> ) value); |
} |
/** |
* Gets the value of the privilegeName property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getPrivilegeName() { |
return privilegeName; |
} |
/** |
* Sets the value of the privilegeName property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setPrivilegeName(JAXBElement<String> value) { |
this.privilegeName = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the objectId property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getObjectId() { |
return objectId; |
} |
/** |
* Sets the value of the objectId property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setObjectId(JAXBElement<String> value) { |
this.objectId = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the loginId property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getLoginId() { |
return loginId; |
} |
/** |
* Sets the value of the loginId property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setLoginId(JAXBElement<String> value) { |
this.loginId = ((JAXBElement<String> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/SetValueBy.java |
---|
0,0 → 1,57 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.annotation.XmlEnum; |
import javax.xml.bind.annotation.XmlEnumValue; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for Set-Value-By. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* <p> |
* <pre> |
* <simpleType name="Set-Value-By"> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}string"> |
* <enumeration value="PRECEDENCE-VALUE"/> |
* <enumeration value="UUID-VALUE"/> |
* <enumeration value="INTERNAL-VALUE"/> |
* <enumeration value="DISPLAY-VALUE"/> |
* </restriction> |
* </simpleType> |
* </pre> |
* |
*/ |
@XmlType(name = "Set-Value-By") |
@XmlEnum |
public enum SetValueBy { |
@XmlEnumValue("PRECEDENCE-VALUE") |
PRECEDENCE_VALUE("PRECEDENCE-VALUE"), |
@XmlEnumValue("UUID-VALUE") |
UUID_VALUE("UUID-VALUE"), |
@XmlEnumValue("INTERNAL-VALUE") |
INTERNAL_VALUE("INTERNAL-VALUE"), |
@XmlEnumValue("DISPLAY-VALUE") |
DISPLAY_VALUE("DISPLAY-VALUE"); |
private final String value; |
SetValueBy(String v) { |
value = v; |
} |
public String value() { |
return value; |
} |
public static SetValueBy fromValue(String v) { |
for (SetValueBy c: SetValueBy.values()) { |
if (c.value.equals(v)) { |
return c; |
} |
} |
throw new IllegalArgumentException(v); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/ReportDefinition.java |
---|
0,0 → 1,97 |
package net.brutex.sbm.wsclient; |
import java.util.ArrayList; |
import java.util.List; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElementRef; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for ReportDefinition complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType name="ReportDefinition"> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="orderBy" type="{urn:aewebservices71}OrderBy" minOccurs="0"/> |
* <element name="columns" type="{urn:aewebservices71}Field" maxOccurs="unbounded" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "ReportDefinition", propOrder = { |
"orderBy", |
"columns" |
}) |
public class ReportDefinition { |
@XmlElementRef(name = "orderBy", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<OrderBy> orderBy; |
protected List<Field> columns; |
/** |
* Gets the value of the orderBy property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link OrderBy }{@code >} |
* |
*/ |
public JAXBElement<OrderBy> getOrderBy() { |
return orderBy; |
} |
/** |
* Sets the value of the orderBy property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link OrderBy }{@code >} |
* |
*/ |
public void setOrderBy(JAXBElement<OrderBy> value) { |
this.orderBy = ((JAXBElement<OrderBy> ) value); |
} |
/** |
* Gets the value of the columns property. |
* |
* <p> |
* 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 <CODE>set</CODE> method for the columns property. |
* |
* <p> |
* For example, to add a new item, do as follows: |
* <pre> |
* getColumns().add(newItem); |
* </pre> |
* |
* |
* <p> |
* Objects of the following type(s) are allowed in the list |
* {@link Field } |
* |
* |
*/ |
public List<Field> getColumns() { |
if (columns == null) { |
columns = new ArrayList<Field>(); |
} |
return this.columns; |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/package-info.java |
---|
0,0 → 1,2 |
@javax.xml.bind.annotation.XmlSchema(namespace = "urn:aewebservices71", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) |
package net.brutex.sbm.wsclient; |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/CreatePrimaryItemsWithNameResponse.java |
---|
0,0 → 1,71 |
package net.brutex.sbm.wsclient; |
import java.util.ArrayList; |
import java.util.List; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElement; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="return" type="{urn:aewebservices71}TTItem" maxOccurs="unbounded" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"_return" |
}) |
@XmlRootElement(name = "CreatePrimaryItemsWithNameResponse") |
public class CreatePrimaryItemsWithNameResponse { |
@XmlElement(name = "return") |
protected List<TTItem> _return; |
/** |
* Gets the value of the return property. |
* |
* <p> |
* 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 <CODE>set</CODE> method for the return property. |
* |
* <p> |
* For example, to add a new item, do as follows: |
* <pre> |
* getReturn().add(newItem); |
* </pre> |
* |
* |
* <p> |
* Objects of the following type(s) are allowed in the list |
* {@link TTItem } |
* |
* |
*/ |
public List<TTItem> getReturn() { |
if (_return == null) { |
_return = new ArrayList<TTItem>(); |
} |
return this._return; |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/GetApplications.java |
---|
0,0 → 1,65 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElementRef; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"auth" |
}) |
@XmlRootElement(name = "GetApplications") |
public class GetApplications { |
@XmlElementRef(name = "auth", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<Auth> auth; |
/** |
* Gets the value of the auth property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public JAXBElement<Auth> getAuth() { |
return auth; |
} |
/** |
* Sets the value of the auth property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public void setAuth(JAXBElement<Auth> value) { |
this.auth = ((JAXBElement<Auth> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/GetStateChangeHistoryResponse.java |
---|
0,0 → 1,65 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElementRef; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="return" type="{urn:aewebservices71}GetStateChangeHistoryResult" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"_return" |
}) |
@XmlRootElement(name = "GetStateChangeHistoryResponse") |
public class GetStateChangeHistoryResponse { |
@XmlElementRef(name = "return", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<GetStateChangeHistoryResult> _return; |
/** |
* Gets the value of the return property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link GetStateChangeHistoryResult }{@code >} |
* |
*/ |
public JAXBElement<GetStateChangeHistoryResult> getReturn() { |
return _return; |
} |
/** |
* Sets the value of the return property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link GetStateChangeHistoryResult }{@code >} |
* |
*/ |
public void setReturn(JAXBElement<GetStateChangeHistoryResult> value) { |
this._return = ((JAXBElement<GetStateChangeHistoryResult> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/GetFileAttachment.java |
---|
0,0 → 1,123 |
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.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/> |
* <element name="itemID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="attachmentID" type="{http://www.w3.org/2001/XMLSchema}integer"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"auth", |
"itemID", |
"attachmentID" |
}) |
@XmlRootElement(name = "GetFileAttachment") |
public class GetFileAttachment { |
@XmlElementRef(name = "auth", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<Auth> auth; |
@XmlElementRef(name = "itemID", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> itemID; |
@XmlElement(required = true) |
protected BigInteger attachmentID; |
/** |
* Gets the value of the auth property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public JAXBElement<Auth> getAuth() { |
return auth; |
} |
/** |
* Sets the value of the auth property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public void setAuth(JAXBElement<Auth> value) { |
this.auth = ((JAXBElement<Auth> ) value); |
} |
/** |
* Gets the value of the itemID property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getItemID() { |
return itemID; |
} |
/** |
* Sets the value of the itemID property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setItemID(JAXBElement<String> value) { |
this.itemID = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the attachmentID property. |
* |
* @return |
* possible object is |
* {@link BigInteger } |
* |
*/ |
public BigInteger getAttachmentID() { |
return attachmentID; |
} |
/** |
* Sets the value of the attachmentID property. |
* |
* @param value |
* allowed object is |
* {@link BigInteger } |
* |
*/ |
public void setAttachmentID(BigInteger value) { |
this.attachmentID = value; |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/GetSubmitProjectsWithNameResponse.java |
---|
0,0 → 1,71 |
package net.brutex.sbm.wsclient; |
import java.util.ArrayList; |
import java.util.List; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElement; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="return" type="{urn:aewebservices71}ProjectData" maxOccurs="unbounded" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"_return" |
}) |
@XmlRootElement(name = "GetSubmitProjectsWithNameResponse") |
public class GetSubmitProjectsWithNameResponse { |
@XmlElement(name = "return") |
protected List<ProjectData> _return; |
/** |
* Gets the value of the return property. |
* |
* <p> |
* 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 <CODE>set</CODE> method for the return property. |
* |
* <p> |
* For example, to add a new item, do as follows: |
* <pre> |
* getReturn().add(newItem); |
* </pre> |
* |
* |
* <p> |
* Objects of the following type(s) are allowed in the list |
* {@link ProjectData } |
* |
* |
*/ |
public List<ProjectData> getReturn() { |
if (_return == null) { |
_return = new ArrayList<ProjectData>(); |
} |
return this._return; |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/GetAvailableQuickTransitionsResponse.java |
---|
0,0 → 1,71 |
package net.brutex.sbm.wsclient; |
import java.util.ArrayList; |
import java.util.List; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElement; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="return" type="{urn:aewebservices71}Transition" maxOccurs="unbounded" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"_return" |
}) |
@XmlRootElement(name = "GetAvailableQuickTransitionsResponse") |
public class GetAvailableQuickTransitionsResponse { |
@XmlElement(name = "return") |
protected List<Transition> _return; |
/** |
* Gets the value of the return property. |
* |
* <p> |
* 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 <CODE>set</CODE> method for the return property. |
* |
* <p> |
* For example, to add a new item, do as follows: |
* <pre> |
* getReturn().add(newItem); |
* </pre> |
* |
* |
* <p> |
* Objects of the following type(s) are allowed in the list |
* {@link Transition } |
* |
* |
*/ |
public List<Transition> getReturn() { |
if (_return == null) { |
_return = new ArrayList<Transition>(); |
} |
return this._return; |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/GetReportsResult.java |
---|
0,0 → 1,96 |
package net.brutex.sbm.wsclient; |
import java.util.ArrayList; |
import java.util.List; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for GetReportsResult complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType name="GetReportsResult"> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="queryRange" type="{urn:aewebservices71}QueryRange"/> |
* <element name="report" type="{urn:aewebservices71}ReportInfo" maxOccurs="unbounded" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "GetReportsResult", propOrder = { |
"queryRange", |
"report" |
}) |
public class GetReportsResult { |
@XmlElement(required = true) |
protected QueryRange queryRange; |
protected List<ReportInfo> report; |
/** |
* Gets the value of the queryRange property. |
* |
* @return |
* possible object is |
* {@link QueryRange } |
* |
*/ |
public QueryRange getQueryRange() { |
return queryRange; |
} |
/** |
* Sets the value of the queryRange property. |
* |
* @param value |
* allowed object is |
* {@link QueryRange } |
* |
*/ |
public void setQueryRange(QueryRange value) { |
this.queryRange = value; |
} |
/** |
* Gets the value of the report property. |
* |
* <p> |
* 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 <CODE>set</CODE> method for the report property. |
* |
* <p> |
* For example, to add a new item, do as follows: |
* <pre> |
* getReport().add(newItem); |
* </pre> |
* |
* |
* <p> |
* Objects of the following type(s) are allowed in the list |
* {@link ReportInfo } |
* |
* |
*/ |
public List<ReportInfo> getReport() { |
if (report == null) { |
report = new ArrayList<ReportInfo>(); |
} |
return this.report; |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/UpdateItemWithName.java |
---|
0,0 → 1,149 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElementRef; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/> |
* <element name="item" type="{urn:aewebservices71}TTItem" minOccurs="0"/> |
* <element name="transitionName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="responseOptions" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"auth", |
"item", |
"transitionName", |
"responseOptions" |
}) |
@XmlRootElement(name = "UpdateItemWithName") |
public class UpdateItemWithName { |
@XmlElementRef(name = "auth", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<Auth> auth; |
@XmlElementRef(name = "item", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<TTItem> item; |
@XmlElementRef(name = "transitionName", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> transitionName; |
@XmlElementRef(name = "responseOptions", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> responseOptions; |
/** |
* Gets the value of the auth property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public JAXBElement<Auth> getAuth() { |
return auth; |
} |
/** |
* Sets the value of the auth property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public void setAuth(JAXBElement<Auth> value) { |
this.auth = ((JAXBElement<Auth> ) value); |
} |
/** |
* Gets the value of the item property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link TTItem }{@code >} |
* |
*/ |
public JAXBElement<TTItem> getItem() { |
return item; |
} |
/** |
* Sets the value of the item property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link TTItem }{@code >} |
* |
*/ |
public void setItem(JAXBElement<TTItem> value) { |
this.item = ((JAXBElement<TTItem> ) 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 responseOptions property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getResponseOptions() { |
return responseOptions; |
} |
/** |
* Sets the value of the responseOptions property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setResponseOptions(JAXBElement<String> value) { |
this.responseOptions = ((JAXBElement<String> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/GetUserExtended.java |
---|
0,0 → 1,93 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElementRef; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/> |
* <element name="userId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"auth", |
"userId" |
}) |
@XmlRootElement(name = "GetUserExtended") |
public class GetUserExtended { |
@XmlElementRef(name = "auth", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<Auth> auth; |
@XmlElementRef(name = "userId", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> userId; |
/** |
* Gets the value of the auth property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public JAXBElement<Auth> getAuth() { |
return auth; |
} |
/** |
* Sets the value of the auth property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public void setAuth(JAXBElement<Auth> value) { |
this.auth = ((JAXBElement<Auth> ) value); |
} |
/** |
* Gets the value of the userId property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getUserId() { |
return userId; |
} |
/** |
* Sets the value of the userId property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setUserId(JAXBElement<String> value) { |
this.userId = ((JAXBElement<String> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/DeleteMashupResponse.java |
---|
0,0 → 1,34 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "") |
@XmlRootElement(name = "DeleteMashupResponse") |
public class DeleteMashupResponse { |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/ProjectData.java |
---|
0,0 → 1,177 |
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.XmlType; |
/** |
* <p>Java class for ProjectData complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType name="ProjectData"> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="projectID" type="{http://www.w3.org/2001/XMLSchema}integer"/> |
* <element name="projectUUID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="fullyQualifiedName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "ProjectData", propOrder = { |
"projectID", |
"projectUUID", |
"name", |
"fullyQualifiedName", |
"description" |
}) |
public class ProjectData { |
@XmlElement(required = true) |
protected BigInteger projectID; |
@XmlElementRef(name = "projectUUID", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> projectUUID; |
@XmlElementRef(name = "name", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> name; |
@XmlElementRef(name = "fullyQualifiedName", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> fullyQualifiedName; |
@XmlElementRef(name = "description", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> description; |
/** |
* Gets the value of the projectID property. |
* |
* @return |
* possible object is |
* {@link BigInteger } |
* |
*/ |
public BigInteger getProjectID() { |
return projectID; |
} |
/** |
* Sets the value of the projectID property. |
* |
* @param value |
* allowed object is |
* {@link BigInteger } |
* |
*/ |
public void setProjectID(BigInteger value) { |
this.projectID = value; |
} |
/** |
* Gets the value of the projectUUID property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getProjectUUID() { |
return projectUUID; |
} |
/** |
* Sets the value of the projectUUID property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setProjectUUID(JAXBElement<String> value) { |
this.projectUUID = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the name property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getName() { |
return name; |
} |
/** |
* Sets the value of the name property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setName(JAXBElement<String> value) { |
this.name = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the fullyQualifiedName property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getFullyQualifiedName() { |
return fullyQualifiedName; |
} |
/** |
* Sets the value of the fullyQualifiedName property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setFullyQualifiedName(JAXBElement<String> value) { |
this.fullyQualifiedName = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the description property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getDescription() { |
return description; |
} |
/** |
* Sets the value of the description property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setDescription(JAXBElement<String> value) { |
this.description = ((JAXBElement<String> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/GetItemsByQuery.java |
---|
0,0 → 1,206 |
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.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/> |
* <element name="tableID" type="{http://www.w3.org/2001/XMLSchema}integer"/> |
* <element name="queryWhereClause" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="orderByClause" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="maxReturnSize" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/> |
* <element name="responseOptions" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"auth", |
"tableID", |
"queryWhereClause", |
"orderByClause", |
"maxReturnSize", |
"responseOptions" |
}) |
@XmlRootElement(name = "GetItemsByQuery") |
public class GetItemsByQuery { |
@XmlElementRef(name = "auth", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<Auth> auth; |
@XmlElement(required = true) |
protected BigInteger tableID; |
@XmlElementRef(name = "queryWhereClause", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> queryWhereClause; |
@XmlElementRef(name = "orderByClause", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> orderByClause; |
protected BigInteger maxReturnSize; |
@XmlElementRef(name = "responseOptions", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> responseOptions; |
/** |
* Gets the value of the auth property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public JAXBElement<Auth> getAuth() { |
return auth; |
} |
/** |
* Sets the value of the auth property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public void setAuth(JAXBElement<Auth> value) { |
this.auth = ((JAXBElement<Auth> ) value); |
} |
/** |
* Gets the value of the tableID property. |
* |
* @return |
* possible object is |
* {@link BigInteger } |
* |
*/ |
public BigInteger getTableID() { |
return tableID; |
} |
/** |
* Sets the value of the tableID property. |
* |
* @param value |
* allowed object is |
* {@link BigInteger } |
* |
*/ |
public void setTableID(BigInteger value) { |
this.tableID = value; |
} |
/** |
* Gets the value of the queryWhereClause property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getQueryWhereClause() { |
return queryWhereClause; |
} |
/** |
* Sets the value of the queryWhereClause property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setQueryWhereClause(JAXBElement<String> value) { |
this.queryWhereClause = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the orderByClause property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getOrderByClause() { |
return orderByClause; |
} |
/** |
* Sets the value of the orderByClause property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setOrderByClause(JAXBElement<String> value) { |
this.orderByClause = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the maxReturnSize property. |
* |
* @return |
* possible object is |
* {@link BigInteger } |
* |
*/ |
public BigInteger getMaxReturnSize() { |
return maxReturnSize; |
} |
/** |
* Sets the value of the maxReturnSize property. |
* |
* @param value |
* allowed object is |
* {@link BigInteger } |
* |
*/ |
public void setMaxReturnSize(BigInteger value) { |
this.maxReturnSize = value; |
} |
/** |
* Gets the value of the responseOptions property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getResponseOptions() { |
return responseOptions; |
} |
/** |
* Sets the value of the responseOptions property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setResponseOptions(JAXBElement<String> value) { |
this.responseOptions = ((JAXBElement<String> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/DeleteItemsByQueryResponse.java |
---|
0,0 → 1,34 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "") |
@XmlRootElement(name = "DeleteItemsByQueryResponse") |
public class DeleteItemsByQueryResponse { |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/Note.java |
---|
0,0 → 1,178 |
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 Note complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType name="Note"> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/> |
* <element name="title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="note" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="modificationDateTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> |
* <element name="accessType" type="{urn:aewebservices71}Attachment-Access-Type"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "Note", propOrder = { |
"id", |
"title", |
"note", |
"modificationDateTime", |
"accessType" |
}) |
public class Note { |
protected BigInteger id; |
@XmlElementRef(name = "title", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> title; |
@XmlElementRef(name = "note", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> note; |
@XmlSchemaType(name = "dateTime") |
protected XMLGregorianCalendar modificationDateTime; |
@XmlElement(required = true, defaultValue = "ATTACHACCESS-DEFAULT") |
protected AttachmentAccessType accessType; |
/** |
* Gets the value of the id property. |
* |
* @return |
* possible object is |
* {@link BigInteger } |
* |
*/ |
public BigInteger getId() { |
return id; |
} |
/** |
* Sets the value of the id property. |
* |
* @param value |
* allowed object is |
* {@link BigInteger } |
* |
*/ |
public void setId(BigInteger value) { |
this.id = value; |
} |
/** |
* Gets the value of the title property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getTitle() { |
return title; |
} |
/** |
* Sets the value of the title property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setTitle(JAXBElement<String> value) { |
this.title = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the note property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getNote() { |
return note; |
} |
/** |
* Sets the value of the note property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setNote(JAXBElement<String> value) { |
this.note = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the modificationDateTime property. |
* |
* @return |
* possible object is |
* {@link XMLGregorianCalendar } |
* |
*/ |
public XMLGregorianCalendar getModificationDateTime() { |
return modificationDateTime; |
} |
/** |
* Sets the value of the modificationDateTime property. |
* |
* @param value |
* allowed object is |
* {@link XMLGregorianCalendar } |
* |
*/ |
public void setModificationDateTime(XMLGregorianCalendar value) { |
this.modificationDateTime = value; |
} |
/** |
* Gets the value of the accessType property. |
* |
* @return |
* possible object is |
* {@link AttachmentAccessType } |
* |
*/ |
public AttachmentAccessType getAccessType() { |
return accessType; |
} |
/** |
* Sets the value of the accessType property. |
* |
* @param value |
* allowed object is |
* {@link AttachmentAccessType } |
* |
*/ |
public void setAccessType(AttachmentAccessType value) { |
this.accessType = value; |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/CreatePrimaryItemResponse.java |
---|
0,0 → 1,65 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElementRef; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="return" type="{urn:aewebservices71}TTItem" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"_return" |
}) |
@XmlRootElement(name = "CreatePrimaryItemResponse") |
public class CreatePrimaryItemResponse { |
@XmlElementRef(name = "return", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<TTItem> _return; |
/** |
* Gets the value of the return property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link TTItem }{@code >} |
* |
*/ |
public JAXBElement<TTItem> getReturn() { |
return _return; |
} |
/** |
* Sets the value of the return property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link TTItem }{@code >} |
* |
*/ |
public void setReturn(JAXBElement<TTItem> value) { |
this._return = ((JAXBElement<TTItem> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/FileAttachmentContents.java |
---|
0,0 → 1,81 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for FileAttachmentContents complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType name="FileAttachmentContents"> |
* <complexContent> |
* <extension base="{urn:aewebservices71}FileAttachment"> |
* <sequence> |
* <element name="checksum" type="{http://www.w3.org/2001/XMLSchema}long"/> |
* <element name="encodedContents" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/> |
* </sequence> |
* </extension> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "FileAttachmentContents", propOrder = { |
"checksum", |
"encodedContents" |
}) |
public class FileAttachmentContents |
extends FileAttachment |
{ |
protected long checksum; |
@XmlElement(required = true) |
protected byte[] encodedContents; |
/** |
* Gets the value of the checksum property. |
* |
*/ |
public long getChecksum() { |
return checksum; |
} |
/** |
* Sets the value of the checksum property. |
* |
*/ |
public void setChecksum(long value) { |
this.checksum = value; |
} |
/** |
* Gets the value of the encodedContents property. |
* |
* @return |
* possible object is |
* byte[] |
*/ |
public byte[] getEncodedContents() { |
return encodedContents; |
} |
/** |
* Sets the value of the encodedContents property. |
* |
* @param value |
* allowed object is |
* byte[] |
*/ |
public void setEncodedContents(byte[] value) { |
this.encodedContents = ((byte[]) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/GetTablesWithName.java |
---|
0,0 → 1,122 |
package net.brutex.sbm.wsclient; |
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.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/> |
* <element name="solutionName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="tableType" type="{urn:aewebservices71}Table-Type"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"auth", |
"solutionName", |
"tableType" |
}) |
@XmlRootElement(name = "GetTablesWithName") |
public class GetTablesWithName { |
@XmlElementRef(name = "auth", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<Auth> auth; |
@XmlElementRef(name = "solutionName", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> solutionName; |
@XmlElement(required = true) |
protected TableType tableType; |
/** |
* Gets the value of the auth property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public JAXBElement<Auth> getAuth() { |
return auth; |
} |
/** |
* Sets the value of the auth property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public void setAuth(JAXBElement<Auth> value) { |
this.auth = ((JAXBElement<Auth> ) value); |
} |
/** |
* Gets the value of the solutionName property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getSolutionName() { |
return solutionName; |
} |
/** |
* Sets the value of the solutionName property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setSolutionName(JAXBElement<String> value) { |
this.solutionName = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the tableType property. |
* |
* @return |
* possible object is |
* {@link TableType } |
* |
*/ |
public TableType getTableType() { |
return tableType; |
} |
/** |
* Sets the value of the tableType property. |
* |
* @param value |
* allowed object is |
* {@link TableType } |
* |
*/ |
public void setTableType(TableType value) { |
this.tableType = value; |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/URLAttachment.java |
---|
0,0 → 1,197 |
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 URLAttachment complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType name="URLAttachment"> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/> |
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="showAsImage" type="{http://www.w3.org/2001/XMLSchema}boolean"/> |
* <element name="modificationDateTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> |
* <element name="accessType" type="{urn:aewebservices71}Attachment-Access-Type"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "URLAttachment", propOrder = { |
"id", |
"name", |
"url", |
"showAsImage", |
"modificationDateTime", |
"accessType" |
}) |
public class URLAttachment { |
protected BigInteger id; |
@XmlElementRef(name = "name", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> name; |
@XmlElementRef(name = "url", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> url; |
protected boolean showAsImage; |
@XmlSchemaType(name = "dateTime") |
protected XMLGregorianCalendar modificationDateTime; |
@XmlElement(required = true, defaultValue = "ATTACHACCESS-DEFAULT") |
protected AttachmentAccessType accessType; |
/** |
* Gets the value of the id property. |
* |
* @return |
* possible object is |
* {@link BigInteger } |
* |
*/ |
public BigInteger getId() { |
return id; |
} |
/** |
* Sets the value of the id property. |
* |
* @param value |
* allowed object is |
* {@link BigInteger } |
* |
*/ |
public void setId(BigInteger value) { |
this.id = value; |
} |
/** |
* Gets the value of the name property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getName() { |
return name; |
} |
/** |
* Sets the value of the name property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setName(JAXBElement<String> value) { |
this.name = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the url property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getUrl() { |
return url; |
} |
/** |
* Sets the value of the url property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setUrl(JAXBElement<String> value) { |
this.url = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the showAsImage property. |
* |
*/ |
public boolean isShowAsImage() { |
return showAsImage; |
} |
/** |
* Sets the value of the showAsImage property. |
* |
*/ |
public void setShowAsImage(boolean value) { |
this.showAsImage = value; |
} |
/** |
* Gets the value of the modificationDateTime property. |
* |
* @return |
* possible object is |
* {@link XMLGregorianCalendar } |
* |
*/ |
public XMLGregorianCalendar getModificationDateTime() { |
return modificationDateTime; |
} |
/** |
* Sets the value of the modificationDateTime property. |
* |
* @param value |
* allowed object is |
* {@link XMLGregorianCalendar } |
* |
*/ |
public void setModificationDateTime(XMLGregorianCalendar value) { |
this.modificationDateTime = value; |
} |
/** |
* Gets the value of the accessType property. |
* |
* @return |
* possible object is |
* {@link AttachmentAccessType } |
* |
*/ |
public AttachmentAccessType getAccessType() { |
return accessType; |
} |
/** |
* Sets the value of the accessType property. |
* |
* @param value |
* allowed object is |
* {@link AttachmentAccessType } |
* |
*/ |
public void setAccessType(AttachmentAccessType value) { |
this.accessType = value; |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/CreateAuxItemWithNameResponse.java |
---|
0,0 → 1,65 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElementRef; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="return" type="{urn:aewebservices71}TTItem" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"_return" |
}) |
@XmlRootElement(name = "CreateAuxItemWithNameResponse") |
public class CreateAuxItemWithNameResponse { |
@XmlElementRef(name = "return", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<TTItem> _return; |
/** |
* Gets the value of the return property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link TTItem }{@code >} |
* |
*/ |
public JAXBElement<TTItem> getReturn() { |
return _return; |
} |
/** |
* Sets the value of the return property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link TTItem }{@code >} |
* |
*/ |
public void setReturn(JAXBElement<TTItem> value) { |
this._return = ((JAXBElement<TTItem> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/AEWebservicesFaultFault.java |
---|
0,0 → 1,45 |
package net.brutex.sbm.wsclient; |
import javax.xml.ws.WebFault; |
/** |
* This class was generated by Apache CXF 2.2.8 |
* Sun May 30 10:35:30 CEST 2010 |
* Generated source version: 2.2.8 |
* |
*/ |
@WebFault(name = "AEWebservicesFault", targetNamespace = "urn:aewebservices71") |
public class AEWebservicesFaultFault extends Exception { |
public static final long serialVersionUID = 20100530103530L; |
private java.lang.String aeWebservicesFault; |
public AEWebservicesFaultFault() { |
super(); |
} |
public AEWebservicesFaultFault(String message) { |
super(message); |
} |
public AEWebservicesFaultFault(String message, Throwable cause) { |
super(message, cause); |
} |
public AEWebservicesFaultFault(String message, java.lang.String aeWebservicesFault) { |
super(message); |
this.aeWebservicesFault = aeWebservicesFault; |
} |
public AEWebservicesFaultFault(String message, java.lang.String aeWebservicesFault, Throwable cause) { |
super(message, cause); |
this.aeWebservicesFault = aeWebservicesFault; |
} |
public java.lang.String getFaultInfo() { |
return this.aeWebservicesFault; |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/ExtraValue.java |
---|
0,0 → 1,91 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElementRef; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for ExtraValue complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType name="ExtraValue"> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="valueType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "ExtraValue", propOrder = { |
"valueType", |
"value" |
}) |
public class ExtraValue { |
@XmlElementRef(name = "valueType", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> valueType; |
@XmlElementRef(name = "value", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> value; |
/** |
* Gets the value of the valueType property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getValueType() { |
return valueType; |
} |
/** |
* Sets the value of the valueType property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setValueType(JAXBElement<String> value) { |
this.valueType = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the value property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getValue() { |
return value; |
} |
/** |
* Sets the value of the value property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setValue(JAXBElement<String> value) { |
this.value = ((JAXBElement<String> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/GetAvailableSubmitTransitionsResponse.java |
---|
0,0 → 1,71 |
package net.brutex.sbm.wsclient; |
import java.util.ArrayList; |
import java.util.List; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElement; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="return" type="{urn:aewebservices71}Transition" maxOccurs="unbounded" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"_return" |
}) |
@XmlRootElement(name = "GetAvailableSubmitTransitionsResponse") |
public class GetAvailableSubmitTransitionsResponse { |
@XmlElement(name = "return") |
protected List<Transition> _return; |
/** |
* Gets the value of the return property. |
* |
* <p> |
* 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 <CODE>set</CODE> method for the return property. |
* |
* <p> |
* For example, to add a new item, do as follows: |
* <pre> |
* getReturn().add(newItem); |
* </pre> |
* |
* |
* <p> |
* Objects of the following type(s) are allowed in the list |
* {@link Transition } |
* |
* |
*/ |
public List<Transition> getReturn() { |
if (_return == null) { |
_return = new ArrayList<Transition>(); |
} |
return this._return; |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/Export.java |
---|
0,0 → 1,121 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElementRef; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/> |
* <element name="applicationID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="xmlExportOptions" type="{urn:aewebservices71}FileContents" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"auth", |
"applicationID", |
"xmlExportOptions" |
}) |
@XmlRootElement(name = "Export") |
public class Export { |
@XmlElementRef(name = "auth", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<Auth> auth; |
@XmlElementRef(name = "applicationID", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> applicationID; |
@XmlElementRef(name = "xmlExportOptions", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<FileContents> xmlExportOptions; |
/** |
* Gets the value of the auth property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public JAXBElement<Auth> getAuth() { |
return auth; |
} |
/** |
* Sets the value of the auth property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public void setAuth(JAXBElement<Auth> value) { |
this.auth = ((JAXBElement<Auth> ) value); |
} |
/** |
* Gets the value of the applicationID property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getApplicationID() { |
return applicationID; |
} |
/** |
* Sets the value of the applicationID property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setApplicationID(JAXBElement<String> value) { |
this.applicationID = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the xmlExportOptions property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link FileContents }{@code >} |
* |
*/ |
public JAXBElement<FileContents> getXmlExportOptions() { |
return xmlExportOptions; |
} |
/** |
* Sets the value of the xmlExportOptions property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link FileContents }{@code >} |
* |
*/ |
public void setXmlExportOptions(JAXBElement<FileContents> value) { |
this.xmlExportOptions = ((JAXBElement<FileContents> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/DeleteItem.java |
---|
0,0 → 1,93 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElementRef; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/> |
* <element name="sItemID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"auth", |
"sItemID" |
}) |
@XmlRootElement(name = "DeleteItem") |
public class DeleteItem { |
@XmlElementRef(name = "auth", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<Auth> auth; |
@XmlElementRef(name = "sItemID", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> sItemID; |
/** |
* Gets the value of the auth property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public JAXBElement<Auth> getAuth() { |
return auth; |
} |
/** |
* Sets the value of the auth property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public void setAuth(JAXBElement<Auth> value) { |
this.auth = ((JAXBElement<Auth> ) value); |
} |
/** |
* Gets the value of the sItemID property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getSItemID() { |
return sItemID; |
} |
/** |
* Sets the value of the sItemID property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setSItemID(JAXBElement<String> value) { |
this.sItemID = ((JAXBElement<String> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/GetNoteLoggerInfo.java |
---|
0,0 → 1,65 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElementRef; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"auth" |
}) |
@XmlRootElement(name = "GetNoteLoggerInfo") |
public class GetNoteLoggerInfo { |
@XmlElementRef(name = "auth", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<Auth> auth; |
/** |
* Gets the value of the auth property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public JAXBElement<Auth> getAuth() { |
return auth; |
} |
/** |
* Sets the value of the auth property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public void setAuth(JAXBElement<Auth> value) { |
this.auth = ((JAXBElement<Auth> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/GetSolutionsWithUniqueName.java |
---|
0,0 → 1,65 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElementRef; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"auth" |
}) |
@XmlRootElement(name = "GetSolutionsWithUniqueName") |
public class GetSolutionsWithUniqueName { |
@XmlElementRef(name = "auth", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<Auth> auth; |
/** |
* Gets the value of the auth property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public JAXBElement<Auth> getAuth() { |
return auth; |
} |
/** |
* Sets the value of the auth property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public void setAuth(JAXBElement<Auth> value) { |
this.auth = ((JAXBElement<Auth> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/ReportAccessLevel.java |
---|
0,0 → 1,42 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.annotation.XmlEnum; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for ReportAccessLevel. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* <p> |
* <pre> |
* <simpleType name="ReportAccessLevel"> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}string"> |
* <enumeration value="PRIVATE"/> |
* <enumeration value="GUEST"/> |
* <enumeration value="USER"/> |
* <enumeration value="MANAGER"/> |
* </restriction> |
* </simpleType> |
* </pre> |
* |
*/ |
@XmlType(name = "ReportAccessLevel") |
@XmlEnum |
public enum ReportAccessLevel { |
PRIVATE, |
GUEST, |
USER, |
MANAGER; |
public String value() { |
return name(); |
} |
public static ReportAccessLevel fromValue(String v) { |
return valueOf(v); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/TableType.java |
---|
0,0 → 1,63 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.annotation.XmlEnum; |
import javax.xml.bind.annotation.XmlEnumValue; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for Table-Type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* <p> |
* <pre> |
* <simpleType name="Table-Type"> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}string"> |
* <enumeration value="NOT-SPECIFIED"/> |
* <enumeration value="SYSTEM-TABLE"/> |
* <enumeration value="PRIMARY-TABLE"/> |
* <enumeration value="AUXILIARY-TABLE"/> |
* <enumeration value="SYSTEM-AUXILIARY-TABLE"/> |
* <enumeration value="ARCHIVE-TABLE"/> |
* </restriction> |
* </simpleType> |
* </pre> |
* |
*/ |
@XmlType(name = "Table-Type") |
@XmlEnum |
public enum TableType { |
@XmlEnumValue("NOT-SPECIFIED") |
NOT_SPECIFIED("NOT-SPECIFIED"), |
@XmlEnumValue("SYSTEM-TABLE") |
SYSTEM_TABLE("SYSTEM-TABLE"), |
@XmlEnumValue("PRIMARY-TABLE") |
PRIMARY_TABLE("PRIMARY-TABLE"), |
@XmlEnumValue("AUXILIARY-TABLE") |
AUXILIARY_TABLE("AUXILIARY-TABLE"), |
@XmlEnumValue("SYSTEM-AUXILIARY-TABLE") |
SYSTEM_AUXILIARY_TABLE("SYSTEM-AUXILIARY-TABLE"), |
@XmlEnumValue("ARCHIVE-TABLE") |
ARCHIVE_TABLE("ARCHIVE-TABLE"); |
private final String value; |
TableType(String v) { |
value = v; |
} |
public String value() { |
return value; |
} |
public static TableType fromValue(String v) { |
for (TableType c: TableType.values()) { |
if (c.value.equals(v)) { |
return c; |
} |
} |
throw new IllegalArgumentException(v); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/Transition.java |
---|
0,0 → 1,379 |
package net.brutex.sbm.wsclient; |
import java.math.BigInteger; |
import java.util.ArrayList; |
import java.util.List; |
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.XmlType; |
/** |
* <p>Java class for Transition complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType name="Transition"> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="transitionID" type="{http://www.w3.org/2001/XMLSchema}integer"/> |
* <element name="transitionUUID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="fromState" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="fromStateID" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/> |
* <element name="fromStateUUID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="toState" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="toStateID" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/> |
* <element name="toStateUUID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="type" type="{urn:aewebservices71}Transition-Type"/> |
* <element name="fullyQualifiedPostIssueProjectName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* <element name="transitionAttributes" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "Transition", propOrder = { |
"transitionID", |
"transitionUUID", |
"name", |
"fromState", |
"fromStateID", |
"fromStateUUID", |
"toState", |
"toStateID", |
"toStateUUID", |
"type", |
"fullyQualifiedPostIssueProjectName", |
"transitionAttributes" |
}) |
public class Transition { |
@XmlElement(required = true) |
protected BigInteger transitionID; |
@XmlElementRef(name = "transitionUUID", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> transitionUUID; |
@XmlElementRef(name = "name", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> name; |
@XmlElementRef(name = "fromState", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> fromState; |
@XmlElementRef(name = "fromStateID", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<BigInteger> fromStateID; |
@XmlElementRef(name = "fromStateUUID", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> fromStateUUID; |
@XmlElementRef(name = "toState", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> toState; |
@XmlElementRef(name = "toStateID", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<BigInteger> toStateID; |
@XmlElementRef(name = "toStateUUID", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> toStateUUID; |
@XmlElement(required = true) |
protected TransitionType type; |
@XmlElementRef(name = "fullyQualifiedPostIssueProjectName", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> fullyQualifiedPostIssueProjectName; |
protected List<String> transitionAttributes; |
/** |
* 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 transitionUUID property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getTransitionUUID() { |
return transitionUUID; |
} |
/** |
* Sets the value of the transitionUUID property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setTransitionUUID(JAXBElement<String> value) { |
this.transitionUUID = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the name property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getName() { |
return name; |
} |
/** |
* Sets the value of the name property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setName(JAXBElement<String> value) { |
this.name = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the fromState property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getFromState() { |
return fromState; |
} |
/** |
* Sets the value of the fromState property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setFromState(JAXBElement<String> value) { |
this.fromState = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the fromStateID property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >} |
* |
*/ |
public JAXBElement<BigInteger> getFromStateID() { |
return fromStateID; |
} |
/** |
* Sets the value of the fromStateID property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >} |
* |
*/ |
public void setFromStateID(JAXBElement<BigInteger> value) { |
this.fromStateID = ((JAXBElement<BigInteger> ) value); |
} |
/** |
* Gets the value of the fromStateUUID property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getFromStateUUID() { |
return fromStateUUID; |
} |
/** |
* Sets the value of the fromStateUUID property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setFromStateUUID(JAXBElement<String> value) { |
this.fromStateUUID = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the toState property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getToState() { |
return toState; |
} |
/** |
* Sets the value of the toState property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setToState(JAXBElement<String> value) { |
this.toState = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the toStateID property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >} |
* |
*/ |
public JAXBElement<BigInteger> getToStateID() { |
return toStateID; |
} |
/** |
* Sets the value of the toStateID property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >} |
* |
*/ |
public void setToStateID(JAXBElement<BigInteger> value) { |
this.toStateID = ((JAXBElement<BigInteger> ) value); |
} |
/** |
* Gets the value of the toStateUUID property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getToStateUUID() { |
return toStateUUID; |
} |
/** |
* Sets the value of the toStateUUID property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setToStateUUID(JAXBElement<String> value) { |
this.toStateUUID = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the type property. |
* |
* @return |
* possible object is |
* {@link TransitionType } |
* |
*/ |
public TransitionType getType() { |
return type; |
} |
/** |
* Sets the value of the type property. |
* |
* @param value |
* allowed object is |
* {@link TransitionType } |
* |
*/ |
public void setType(TransitionType value) { |
this.type = value; |
} |
/** |
* Gets the value of the fullyQualifiedPostIssueProjectName property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getFullyQualifiedPostIssueProjectName() { |
return fullyQualifiedPostIssueProjectName; |
} |
/** |
* Sets the value of the fullyQualifiedPostIssueProjectName property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setFullyQualifiedPostIssueProjectName(JAXBElement<String> value) { |
this.fullyQualifiedPostIssueProjectName = ((JAXBElement<String> ) value); |
} |
/** |
* Gets the value of the transitionAttributes property. |
* |
* <p> |
* 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 <CODE>set</CODE> method for the transitionAttributes property. |
* |
* <p> |
* For example, to add a new item, do as follows: |
* <pre> |
* getTransitionAttributes().add(newItem); |
* </pre> |
* |
* |
* <p> |
* Objects of the following type(s) are allowed in the list |
* {@link String } |
* |
* |
*/ |
public List<String> getTransitionAttributes() { |
if (transitionAttributes == null) { |
transitionAttributes = new ArrayList<String>(); |
} |
return this.transitionAttributes; |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/IsUserValid.java |
---|
0,0 → 1,93 |
package net.brutex.sbm.wsclient; |
import javax.xml.bind.JAXBElement; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlElementRef; |
import javax.xml.bind.annotation.XmlRootElement; |
import javax.xml.bind.annotation.XmlType; |
/** |
* <p>Java class for anonymous complex type. |
* |
* <p>The following schema fragment specifies the expected content contained within this class. |
* |
* <pre> |
* <complexType> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <element name="auth" type="{urn:aewebservices71}Auth" minOccurs="0"/> |
* <element name="loginId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "", propOrder = { |
"auth", |
"loginId" |
}) |
@XmlRootElement(name = "IsUserValid") |
public class IsUserValid { |
@XmlElementRef(name = "auth", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<Auth> auth; |
@XmlElementRef(name = "loginId", namespace = "urn:aewebservices71", type = JAXBElement.class) |
protected JAXBElement<String> loginId; |
/** |
* Gets the value of the auth property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public JAXBElement<Auth> getAuth() { |
return auth; |
} |
/** |
* Sets the value of the auth property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link Auth }{@code >} |
* |
*/ |
public void setAuth(JAXBElement<Auth> value) { |
this.auth = ((JAXBElement<Auth> ) value); |
} |
/** |
* Gets the value of the loginId property. |
* |
* @return |
* possible object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public JAXBElement<String> getLoginId() { |
return loginId; |
} |
/** |
* Sets the value of the loginId property. |
* |
* @param value |
* allowed object is |
* {@link JAXBElement }{@code <}{@link String }{@code >} |
* |
*/ |
public void setLoginId(JAXBElement<String> value) { |
this.loginId = ((JAXBElement<String> ) value); |
} |
} |
Property changes: |
Added: svn:mime-type |
+text/plain |
\ No newline at end of property |
/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/Item.java |
---|
0,0 → 1,119 |