summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/ur/xmlsw
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/ur/xmlsw')
-rw-r--r--src/main/java/at/gv/util/xsd/ur/xmlsw/CustomFaultType.java156
-rw-r--r--src/main/java/at/gv/util/xsd/ur/xmlsw/ExtraResultCriteria.java73
-rw-r--r--src/main/java/at/gv/util/xsd/ur/xmlsw/ExtraResultInfo.java73
-rw-r--r--src/main/java/at/gv/util/xsd/ur/xmlsw/ObjectFactory.java445
-rw-r--r--src/main/java/at/gv/util/xsd/ur/xmlsw/PaymentInfoType.java181
-rw-r--r--src/main/java/at/gv/util/xsd/ur/xmlsw/RecordFieldList.java73
-rw-r--r--src/main/java/at/gv/util/xsd/ur/xmlsw/ResultCriteriaType.java207
-rw-r--r--src/main/java/at/gv/util/xsd/ur/xmlsw/ResultInfoType.java178
-rw-r--r--src/main/java/at/gv/util/xsd/ur/xmlsw/ResultRecord.java104
-rw-r--r--src/main/java/at/gv/util/xsd/ur/xmlsw/ResultRecords.java71
-rw-r--r--src/main/java/at/gv/util/xsd/ur/xmlsw/SearchByExampleType.java146
-rw-r--r--src/main/java/at/gv/util/xsd/ur/xmlsw/SearchByIdType.java121
-rw-r--r--src/main/java/at/gv/util/xsd/ur/xmlsw/SearchCriteriaType.java100
-rw-r--r--src/main/java/at/gv/util/xsd/ur/xmlsw/SearchRequestInfoType.java71
-rw-r--r--src/main/java/at/gv/util/xsd/ur/xmlsw/SearchResponseType.java146
-rw-r--r--src/main/java/at/gv/util/xsd/ur/xmlsw/SortKeyType.java118
-rw-r--r--src/main/java/at/gv/util/xsd/ur/xmlsw/SortKeysType.java69
-rw-r--r--src/main/java/at/gv/util/xsd/ur/xmlsw/package-info.java2
18 files changed, 0 insertions, 2334 deletions
diff --git a/src/main/java/at/gv/util/xsd/ur/xmlsw/CustomFaultType.java b/src/main/java/at/gv/util/xsd/ur/xmlsw/CustomFaultType.java
deleted file mode 100644
index 83138df..0000000
--- a/src/main/java/at/gv/util/xsd/ur/xmlsw/CustomFaultType.java
+++ /dev/null
@@ -1,156 +0,0 @@
-
-package at.gv.util.xsd.ur.xmlsw;
-
-import java.math.BigInteger;
-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;
-
-
-/**
- * CustomFault reporting structure
- *
- * <p>Java class for CustomFaultType complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType name="CustomFaultType">
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element name="Code" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- * &lt;element name="Reason" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
- * &lt;element name="Help" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * &lt;element name="Detail" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "CustomFaultType", propOrder = {
- "code",
- "reason",
- "help",
- "detail"
-})
-public class CustomFaultType {
-
- @XmlElement(name = "Code", required = true)
- protected BigInteger code;
- @XmlElement(name = "Reason", required = true)
- protected List<String> reason;
- @XmlElement(name = "Help")
- protected String help;
- @XmlElement(name = "Detail")
- protected Object detail;
-
- /**
- * Gets the value of the code property.
- *
- * @return
- * possible object is
- * {@link BigInteger }
- *
- */
- public BigInteger getCode() {
- return code;
- }
-
- /**
- * Sets the value of the code property.
- *
- * @param value
- * allowed object is
- * {@link BigInteger }
- *
- */
- public void setCode(BigInteger value) {
- this.code = value;
- }
-
- /**
- * Gets the value of the reason 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 reason property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getReason().add(newItem);
- * </pre>
- *
- *
- * <p>
- * Objects of the following type(s) are allowed in the list
- * {@link String }
- *
- *
- */
- public List<String> getReason() {
- if (reason == null) {
- reason = new ArrayList<String>();
- }
- return this.reason;
- }
-
- /**
- * Gets the value of the help property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getHelp() {
- return help;
- }
-
- /**
- * Sets the value of the help property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setHelp(String value) {
- this.help = value;
- }
-
- /**
- * Gets the value of the detail property.
- *
- * @return
- * possible object is
- * {@link Object }
- *
- */
- public Object getDetail() {
- return detail;
- }
-
- /**
- * Sets the value of the detail property.
- *
- * @param value
- * allowed object is
- * {@link Object }
- *
- */
- public void setDetail(Object value) {
- this.detail = value;
- }
-
-}
diff --git a/src/main/java/at/gv/util/xsd/ur/xmlsw/ExtraResultCriteria.java b/src/main/java/at/gv/util/xsd/ur/xmlsw/ExtraResultCriteria.java
deleted file mode 100644
index feec384..0000000
--- a/src/main/java/at/gv/util/xsd/ur/xmlsw/ExtraResultCriteria.java
+++ /dev/null
@@ -1,73 +0,0 @@
-
-package at.gv.util.xsd.ur.xmlsw;
-
-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.XmlAnyElement;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
-import org.w3c.dom.Element;
-
-
-/**
- * <p>Java class for anonymous complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType>
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;any processContents='lax' maxOccurs="unbounded" minOccurs="0"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "", propOrder = {
- "any"
-})
-@XmlRootElement(name = "ExtraResultCriteria")
-public class ExtraResultCriteria {
-
- @XmlAnyElement(lax = true)
- protected List<Object> any;
-
- /**
- * Gets the value of the any 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 any property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getAny().add(newItem);
- * </pre>
- *
- *
- * <p>
- * Objects of the following type(s) are allowed in the list
- * {@link Object }
- * {@link Element }
- *
- *
- */
- public List<Object> getAny() {
- if (any == null) {
- any = new ArrayList<Object>();
- }
- return this.any;
- }
-
-}
diff --git a/src/main/java/at/gv/util/xsd/ur/xmlsw/ExtraResultInfo.java b/src/main/java/at/gv/util/xsd/ur/xmlsw/ExtraResultInfo.java
deleted file mode 100644
index 0258127..0000000
--- a/src/main/java/at/gv/util/xsd/ur/xmlsw/ExtraResultInfo.java
+++ /dev/null
@@ -1,73 +0,0 @@
-
-package at.gv.util.xsd.ur.xmlsw;
-
-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.XmlAnyElement;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
-import org.w3c.dom.Element;
-
-
-/**
- * <p>Java class for anonymous complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType>
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "", propOrder = {
- "any"
-})
-@XmlRootElement(name = "ExtraResultInfo")
-public class ExtraResultInfo {
-
- @XmlAnyElement(lax = true)
- protected List<Object> any;
-
- /**
- * Gets the value of the any 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 any property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getAny().add(newItem);
- * </pre>
- *
- *
- * <p>
- * Objects of the following type(s) are allowed in the list
- * {@link Object }
- * {@link Element }
- *
- *
- */
- public List<Object> getAny() {
- if (any == null) {
- any = new ArrayList<Object>();
- }
- return this.any;
- }
-
-}
diff --git a/src/main/java/at/gv/util/xsd/ur/xmlsw/ObjectFactory.java b/src/main/java/at/gv/util/xsd/ur/xmlsw/ObjectFactory.java
deleted file mode 100644
index 4cbb57d..0000000
--- a/src/main/java/at/gv/util/xsd/ur/xmlsw/ObjectFactory.java
+++ /dev/null
@@ -1,445 +0,0 @@
-
-package at.gv.util.xsd.ur.xmlsw;
-
-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 at.gv.util.xsd.ur.xmlsw 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 _FaultHint_QNAME = new QName("http://reference.e-government.gv.at/namespace/xml-sw/1#", "FaultHint");
- private final static QName _CaseSensitive_QNAME = new QName("http://reference.e-government.gv.at/namespace/xml-sw/1#", "CaseSensitive");
- private final static QName _Path_QNAME = new QName("http://reference.e-government.gv.at/namespace/xml-sw/1#", "Path");
- private final static QName _SearchRequestInfo_QNAME = new QName("http://reference.e-government.gv.at/namespace/xml-sw/1#", "SearchRequestInfo");
- private final static QName _ResultSetId_QNAME = new QName("http://reference.e-government.gv.at/namespace/xml-sw/1#", "ResultSetId");
- private final static QName _SortKey_QNAME = new QName("http://reference.e-government.gv.at/namespace/xml-sw/1#", "SortKey");
- private final static QName _RecordId_QNAME = new QName("http://reference.e-government.gv.at/namespace/xml-sw/1#", "RecordId");
- private final static QName _SearchCriteria_QNAME = new QName("http://reference.e-government.gv.at/namespace/xml-sw/1#", "SearchCriteria");
- private final static QName _Costs_QNAME = new QName("http://reference.e-government.gv.at/namespace/xml-sw/1#", "Costs");
- private final static QName _Detail_QNAME = new QName("http://reference.e-government.gv.at/namespace/xml-sw/1#", "Detail");
- private final static QName _SearchByExample_QNAME = new QName("http://reference.e-government.gv.at/namespace/xml-sw/1#", "SearchByExample");
- private final static QName _SearchRequestId_QNAME = new QName("http://reference.e-government.gv.at/namespace/xml-sw/1#", "SearchRequestId");
- private final static QName _ResultCriteria_QNAME = new QName("http://reference.e-government.gv.at/namespace/xml-sw/1#", "ResultCriteria");
- private final static QName _ReturnedRecords_QNAME = new QName("http://reference.e-government.gv.at/namespace/xml-sw/1#", "ReturnedRecords");
- private final static QName _SearchResponse_QNAME = new QName("http://reference.e-government.gv.at/namespace/xml-sw/1#", "SearchResponse");
- private final static QName _AccountedUnits_QNAME = new QName("http://reference.e-government.gv.at/namespace/xml-sw/1#", "AccountedUnits");
- private final static QName _FoundRecords_QNAME = new QName("http://reference.e-government.gv.at/namespace/xml-sw/1#", "FoundRecords");
- private final static QName _StartRecord_QNAME = new QName("http://reference.e-government.gv.at/namespace/xml-sw/1#", "StartRecord");
- private final static QName _Ascending_QNAME = new QName("http://reference.e-government.gv.at/namespace/xml-sw/1#", "Ascending");
- private final static QName _TimeStamp_QNAME = new QName("http://reference.e-government.gv.at/namespace/xml-sw/1#", "TimeStamp");
- private final static QName _TimeOut_QNAME = new QName("http://reference.e-government.gv.at/namespace/xml-sw/1#", "TimeOut");
- private final static QName _InvoiceId_QNAME = new QName("http://reference.e-government.gv.at/namespace/xml-sw/1#", "InvoiceId");
- private final static QName _Message_QNAME = new QName("http://reference.e-government.gv.at/namespace/xml-sw/1#", "Message");
- private final static QName _SortKeys_QNAME = new QName("http://reference.e-government.gv.at/namespace/xml-sw/1#", "SortKeys");
- private final static QName _MaxRecords_QNAME = new QName("http://reference.e-government.gv.at/namespace/xml-sw/1#", "MaxRecords");
- private final static QName _SearchById_QNAME = new QName("http://reference.e-government.gv.at/namespace/xml-sw/1#", "SearchById");
- private final static QName _ResultInfo_QNAME = new QName("http://reference.e-government.gv.at/namespace/xml-sw/1#", "ResultInfo");
- private final static QName _PaymentInfo_QNAME = new QName("http://reference.e-government.gv.at/namespace/xml-sw/1#", "PaymentInfo");
-
- /**
- * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.gv.util.xsd.ur.xmlsw
- *
- */
- public ObjectFactory() {
- }
-
- /**
- * Create an instance of {@link ResultCriteriaType }
- *
- */
- public ResultCriteriaType createResultCriteriaType() {
- return new ResultCriteriaType();
- }
-
- /**
- * Create an instance of {@link SearchResponseType }
- *
- */
- public SearchResponseType createSearchResponseType() {
- return new SearchResponseType();
- }
-
- /**
- * Create an instance of {@link SearchByExampleType }
- *
- */
- public SearchByExampleType createSearchByExampleType() {
- return new SearchByExampleType();
- }
-
- /**
- * Create an instance of {@link ExtraResultCriteria }
- *
- */
- public ExtraResultCriteria createExtraResultCriteria() {
- return new ExtraResultCriteria();
- }
-
- /**
- * Create an instance of {@link SortKeysType }
- *
- */
- public SortKeysType createSortKeysType() {
- return new SortKeysType();
- }
-
- /**
- * Create an instance of {@link CustomFaultType }
- *
- */
- public CustomFaultType createCustomFaultType() {
- return new CustomFaultType();
- }
-
- /**
- * Create an instance of {@link ResultInfoType }
- *
- */
- public ResultInfoType createResultInfoType() {
- return new ResultInfoType();
- }
-
- /**
- * Create an instance of {@link SearchByIdType }
- *
- */
- public SearchByIdType createSearchByIdType() {
- return new SearchByIdType();
- }
-
- /**
- * Create an instance of {@link ResultRecords }
- *
- */
- public ResultRecords createResultRecords() {
- return new ResultRecords();
- }
-
- /**
- * Create an instance of {@link ResultRecord }
- *
- */
- public ResultRecord createResultRecord() {
- return new ResultRecord();
- }
-
- /**
- * Create an instance of {@link PaymentInfoType }
- *
- */
- public PaymentInfoType createPaymentInfoType() {
- return new PaymentInfoType();
- }
-
- /**
- * Create an instance of {@link SearchCriteriaType }
- *
- */
- public SearchCriteriaType createSearchCriteriaType() {
- return new SearchCriteriaType();
- }
-
- /**
- * Create an instance of {@link RecordFieldList }
- *
- */
- public RecordFieldList createRecordFieldList() {
- return new RecordFieldList();
- }
-
- /**
- * Create an instance of {@link ExtraResultInfo }
- *
- */
- public ExtraResultInfo createExtraResultInfo() {
- return new ExtraResultInfo();
- }
-
- /**
- * Create an instance of {@link SortKeyType }
- *
- */
- public SortKeyType createSortKeyType() {
- return new SortKeyType();
- }
-
- /**
- * Create an instance of {@link SearchRequestInfoType }
- *
- */
- public SearchRequestInfoType createSearchRequestInfoType() {
- return new SearchRequestInfoType();
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", name = "FaultHint")
- public JAXBElement<String> createFaultHint(String value) {
- return new JAXBElement<String>(_FaultHint_QNAME, String.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link Boolean }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", name = "CaseSensitive")
- public JAXBElement<Boolean> createCaseSensitive(Boolean value) {
- return new JAXBElement<Boolean>(_CaseSensitive_QNAME, Boolean.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", name = "Path")
- public JAXBElement<String> createPath(String value) {
- return new JAXBElement<String>(_Path_QNAME, String.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link SearchRequestInfoType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", name = "SearchRequestInfo")
- public JAXBElement<SearchRequestInfoType> createSearchRequestInfo(SearchRequestInfoType value) {
- return new JAXBElement<SearchRequestInfoType>(_SearchRequestInfo_QNAME, SearchRequestInfoType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", name = "ResultSetId")
- public JAXBElement<String> createResultSetId(String value) {
- return new JAXBElement<String>(_ResultSetId_QNAME, String.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link SortKeyType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", name = "SortKey")
- public JAXBElement<SortKeyType> createSortKey(SortKeyType value) {
- return new JAXBElement<SortKeyType>(_SortKey_QNAME, SortKeyType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", name = "RecordId")
- public JAXBElement<BigInteger> createRecordId(BigInteger value) {
- return new JAXBElement<BigInteger>(_RecordId_QNAME, BigInteger.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link SearchCriteriaType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", name = "SearchCriteria")
- public JAXBElement<SearchCriteriaType> createSearchCriteria(SearchCriteriaType value) {
- return new JAXBElement<SearchCriteriaType>(_SearchCriteria_QNAME, SearchCriteriaType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link Float }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", name = "Costs")
- public JAXBElement<Float> createCosts(Float value) {
- return new JAXBElement<Float>(_Costs_QNAME, Float.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", name = "Detail")
- public JAXBElement<String> createDetail(String value) {
- return new JAXBElement<String>(_Detail_QNAME, String.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link SearchByExampleType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", name = "SearchByExample")
- public JAXBElement<SearchByExampleType> createSearchByExample(SearchByExampleType value) {
- return new JAXBElement<SearchByExampleType>(_SearchByExample_QNAME, SearchByExampleType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", name = "SearchRequestId")
- public JAXBElement<String> createSearchRequestId(String value) {
- return new JAXBElement<String>(_SearchRequestId_QNAME, String.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link ResultCriteriaType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", name = "ResultCriteria")
- public JAXBElement<ResultCriteriaType> createResultCriteria(ResultCriteriaType value) {
- return new JAXBElement<ResultCriteriaType>(_ResultCriteria_QNAME, ResultCriteriaType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", name = "ReturnedRecords")
- public JAXBElement<BigInteger> createReturnedRecords(BigInteger value) {
- return new JAXBElement<BigInteger>(_ReturnedRecords_QNAME, BigInteger.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link SearchResponseType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", name = "SearchResponse")
- public JAXBElement<SearchResponseType> createSearchResponse(SearchResponseType value) {
- return new JAXBElement<SearchResponseType>(_SearchResponse_QNAME, SearchResponseType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", name = "AccountedUnits")
- public JAXBElement<BigInteger> createAccountedUnits(BigInteger value) {
- return new JAXBElement<BigInteger>(_AccountedUnits_QNAME, BigInteger.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", name = "FoundRecords")
- public JAXBElement<BigInteger> createFoundRecords(BigInteger value) {
- return new JAXBElement<BigInteger>(_FoundRecords_QNAME, BigInteger.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", name = "StartRecord")
- public JAXBElement<BigInteger> createStartRecord(BigInteger value) {
- return new JAXBElement<BigInteger>(_StartRecord_QNAME, BigInteger.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link Boolean }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", name = "Ascending")
- public JAXBElement<Boolean> createAscending(Boolean value) {
- return new JAXBElement<Boolean>(_Ascending_QNAME, Boolean.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link XMLGregorianCalendar }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", name = "TimeStamp")
- public JAXBElement<XMLGregorianCalendar> createTimeStamp(XMLGregorianCalendar value) {
- return new JAXBElement<XMLGregorianCalendar>(_TimeStamp_QNAME, XMLGregorianCalendar.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", name = "TimeOut")
- public JAXBElement<BigInteger> createTimeOut(BigInteger value) {
- return new JAXBElement<BigInteger>(_TimeOut_QNAME, BigInteger.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", name = "InvoiceId")
- public JAXBElement<String> createInvoiceId(String value) {
- return new JAXBElement<String>(_InvoiceId_QNAME, String.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link CustomFaultType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", name = "Message")
- public JAXBElement<CustomFaultType> createMessage(CustomFaultType value) {
- return new JAXBElement<CustomFaultType>(_Message_QNAME, CustomFaultType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link SortKeysType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", name = "SortKeys")
- public JAXBElement<SortKeysType> createSortKeys(SortKeysType value) {
- return new JAXBElement<SortKeysType>(_SortKeys_QNAME, SortKeysType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link BigInteger }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", name = "MaxRecords")
- public JAXBElement<BigInteger> createMaxRecords(BigInteger value) {
- return new JAXBElement<BigInteger>(_MaxRecords_QNAME, BigInteger.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link SearchByIdType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", name = "SearchById")
- public JAXBElement<SearchByIdType> createSearchById(SearchByIdType value) {
- return new JAXBElement<SearchByIdType>(_SearchById_QNAME, SearchByIdType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link ResultInfoType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", name = "ResultInfo")
- public JAXBElement<ResultInfoType> createResultInfo(ResultInfoType value) {
- return new JAXBElement<ResultInfoType>(_ResultInfo_QNAME, ResultInfoType.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link PaymentInfoType }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", name = "PaymentInfo")
- public JAXBElement<PaymentInfoType> createPaymentInfo(PaymentInfoType value) {
- return new JAXBElement<PaymentInfoType>(_PaymentInfo_QNAME, PaymentInfoType.class, null, value);
- }
-
-}
diff --git a/src/main/java/at/gv/util/xsd/ur/xmlsw/PaymentInfoType.java b/src/main/java/at/gv/util/xsd/ur/xmlsw/PaymentInfoType.java
deleted file mode 100644
index 9ce4339..0000000
--- a/src/main/java/at/gv/util/xsd/ur/xmlsw/PaymentInfoType.java
+++ /dev/null
@@ -1,181 +0,0 @@
-
-package at.gv.util.xsd.ur.xmlsw;
-
-import java.math.BigInteger;
-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.XmlAnyElement;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlSchemaType;
-import javax.xml.bind.annotation.XmlType;
-import javax.xml.datatype.XMLGregorianCalendar;
-import org.w3c.dom.Element;
-
-
-/**
- * <p>Java class for PaymentInfoType complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType name="PaymentInfoType">
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}InvoiceId" minOccurs="0"/>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}Costs"/>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}AccountedUnits" minOccurs="0"/>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}TimeStamp"/>
- * &lt;any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "PaymentInfoType", propOrder = {
- "invoiceId",
- "costs",
- "accountedUnits",
- "timeStamp",
- "any"
-})
-public class PaymentInfoType {
-
- @XmlElement(name = "InvoiceId")
- protected String invoiceId;
- @XmlElement(name = "Costs")
- protected float costs;
- @XmlElement(name = "AccountedUnits")
- @XmlSchemaType(name = "nonNegativeInteger")
- protected BigInteger accountedUnits;
- @XmlElement(name = "TimeStamp", required = true)
- @XmlSchemaType(name = "dateTime")
- protected XMLGregorianCalendar timeStamp;
- @XmlAnyElement(lax = true)
- protected List<Object> any;
-
- /**
- * Gets the value of the invoiceId property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getInvoiceId() {
- return invoiceId;
- }
-
- /**
- * Sets the value of the invoiceId property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setInvoiceId(String value) {
- this.invoiceId = value;
- }
-
- /**
- * Gets the value of the costs property.
- *
- */
- public float getCosts() {
- return costs;
- }
-
- /**
- * Sets the value of the costs property.
- *
- */
- public void setCosts(float value) {
- this.costs = value;
- }
-
- /**
- * Gets the value of the accountedUnits property.
- *
- * @return
- * possible object is
- * {@link BigInteger }
- *
- */
- public BigInteger getAccountedUnits() {
- return accountedUnits;
- }
-
- /**
- * Sets the value of the accountedUnits property.
- *
- * @param value
- * allowed object is
- * {@link BigInteger }
- *
- */
- public void setAccountedUnits(BigInteger value) {
- this.accountedUnits = value;
- }
-
- /**
- * Gets the value of the timeStamp property.
- *
- * @return
- * possible object is
- * {@link XMLGregorianCalendar }
- *
- */
- public XMLGregorianCalendar getTimeStamp() {
- return timeStamp;
- }
-
- /**
- * Sets the value of the timeStamp property.
- *
- * @param value
- * allowed object is
- * {@link XMLGregorianCalendar }
- *
- */
- public void setTimeStamp(XMLGregorianCalendar value) {
- this.timeStamp = value;
- }
-
- /**
- * Gets the value of the any 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 any property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getAny().add(newItem);
- * </pre>
- *
- *
- * <p>
- * Objects of the following type(s) are allowed in the list
- * {@link Object }
- * {@link Element }
- *
- *
- */
- public List<Object> getAny() {
- if (any == null) {
- any = new ArrayList<Object>();
- }
- return this.any;
- }
-
-}
diff --git a/src/main/java/at/gv/util/xsd/ur/xmlsw/RecordFieldList.java b/src/main/java/at/gv/util/xsd/ur/xmlsw/RecordFieldList.java
deleted file mode 100644
index 9dc8b7b..0000000
--- a/src/main/java/at/gv/util/xsd/ur/xmlsw/RecordFieldList.java
+++ /dev/null
@@ -1,73 +0,0 @@
-
-package at.gv.util.xsd.ur.xmlsw;
-
-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.XmlAnyElement;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
-import org.w3c.dom.Element;
-
-
-/**
- * <p>Java class for anonymous complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType>
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "", propOrder = {
- "any"
-})
-@XmlRootElement(name = "RecordFieldList")
-public class RecordFieldList {
-
- @XmlAnyElement(lax = true)
- protected List<Object> any;
-
- /**
- * Gets the value of the any 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 any property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getAny().add(newItem);
- * </pre>
- *
- *
- * <p>
- * Objects of the following type(s) are allowed in the list
- * {@link Object }
- * {@link Element }
- *
- *
- */
- public List<Object> getAny() {
- if (any == null) {
- any = new ArrayList<Object>();
- }
- return this.any;
- }
-
-}
diff --git a/src/main/java/at/gv/util/xsd/ur/xmlsw/ResultCriteriaType.java b/src/main/java/at/gv/util/xsd/ur/xmlsw/ResultCriteriaType.java
deleted file mode 100644
index e1f1de7..0000000
--- a/src/main/java/at/gv/util/xsd/ur/xmlsw/ResultCriteriaType.java
+++ /dev/null
@@ -1,207 +0,0 @@
-
-package at.gv.util.xsd.ur.xmlsw;
-
-import java.math.BigInteger;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlSchemaType;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * <p>Java class for ResultCriteriaType complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType name="ResultCriteriaType">
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}MaxRecords" minOccurs="0"/>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}StartRecord" minOccurs="0"/>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}SortKeys" minOccurs="0"/>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}TimeOut" minOccurs="0"/>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}RecordFieldList" minOccurs="0"/>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}ExtraResultCriteria" minOccurs="0"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "ResultCriteriaType", propOrder = {
- "maxRecords",
- "startRecord",
- "sortKeys",
- "timeOut",
- "recordFieldList",
- "extraResultCriteria"
-})
-public class ResultCriteriaType {
-
- @XmlElement(name = "MaxRecords")
- @XmlSchemaType(name = "nonNegativeInteger")
- protected BigInteger maxRecords;
- @XmlElement(name = "StartRecord")
- @XmlSchemaType(name = "nonNegativeInteger")
- protected BigInteger startRecord;
- @XmlElement(name = "SortKeys")
- protected SortKeysType sortKeys;
- @XmlElement(name = "TimeOut")
- @XmlSchemaType(name = "nonNegativeInteger")
- protected BigInteger timeOut;
- @XmlElement(name = "RecordFieldList")
- protected RecordFieldList recordFieldList;
- @XmlElement(name = "ExtraResultCriteria")
- protected ExtraResultCriteria extraResultCriteria;
-
- /**
- * Gets the value of the maxRecords property.
- *
- * @return
- * possible object is
- * {@link BigInteger }
- *
- */
- public BigInteger getMaxRecords() {
- return maxRecords;
- }
-
- /**
- * Sets the value of the maxRecords property.
- *
- * @param value
- * allowed object is
- * {@link BigInteger }
- *
- */
- public void setMaxRecords(BigInteger value) {
- this.maxRecords = value;
- }
-
- /**
- * Gets the value of the startRecord property.
- *
- * @return
- * possible object is
- * {@link BigInteger }
- *
- */
- public BigInteger getStartRecord() {
- return startRecord;
- }
-
- /**
- * Sets the value of the startRecord property.
- *
- * @param value
- * allowed object is
- * {@link BigInteger }
- *
- */
- public void setStartRecord(BigInteger value) {
- this.startRecord = value;
- }
-
- /**
- * Gets the value of the sortKeys property.
- *
- * @return
- * possible object is
- * {@link SortKeysType }
- *
- */
- public SortKeysType getSortKeys() {
- return sortKeys;
- }
-
- /**
- * Sets the value of the sortKeys property.
- *
- * @param value
- * allowed object is
- * {@link SortKeysType }
- *
- */
- public void setSortKeys(SortKeysType value) {
- this.sortKeys = value;
- }
-
- /**
- * Gets the value of the timeOut property.
- *
- * @return
- * possible object is
- * {@link BigInteger }
- *
- */
- public BigInteger getTimeOut() {
- return timeOut;
- }
-
- /**
- * Sets the value of the timeOut property.
- *
- * @param value
- * allowed object is
- * {@link BigInteger }
- *
- */
- public void setTimeOut(BigInteger value) {
- this.timeOut = value;
- }
-
- /**
- * Gets the value of the recordFieldList property.
- *
- * @return
- * possible object is
- * {@link RecordFieldList }
- *
- */
- public RecordFieldList getRecordFieldList() {
- return recordFieldList;
- }
-
- /**
- * Sets the value of the recordFieldList property.
- *
- * @param value
- * allowed object is
- * {@link RecordFieldList }
- *
- */
- public void setRecordFieldList(RecordFieldList value) {
- this.recordFieldList = value;
- }
-
- /**
- * Gets the value of the extraResultCriteria property.
- *
- * @return
- * possible object is
- * {@link ExtraResultCriteria }
- *
- */
- public ExtraResultCriteria getExtraResultCriteria() {
- return extraResultCriteria;
- }
-
- /**
- * Sets the value of the extraResultCriteria property.
- *
- * @param value
- * allowed object is
- * {@link ExtraResultCriteria }
- *
- */
- public void setExtraResultCriteria(ExtraResultCriteria value) {
- this.extraResultCriteria = value;
- }
-
-}
diff --git a/src/main/java/at/gv/util/xsd/ur/xmlsw/ResultInfoType.java b/src/main/java/at/gv/util/xsd/ur/xmlsw/ResultInfoType.java
deleted file mode 100644
index d82d0dc..0000000
--- a/src/main/java/at/gv/util/xsd/ur/xmlsw/ResultInfoType.java
+++ /dev/null
@@ -1,178 +0,0 @@
-
-package at.gv.util.xsd.ur.xmlsw;
-
-import java.math.BigInteger;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlSchemaType;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * <p>Java class for ResultInfoType complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType name="ResultInfoType">
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}ResultSetId" minOccurs="0"/>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}FoundRecords" minOccurs="0"/>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}ReturnedRecords"/>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}PaymentInfo" minOccurs="0"/>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}ExtraResultInfo" minOccurs="0"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "ResultInfoType", propOrder = {
- "resultSetId",
- "foundRecords",
- "returnedRecords",
- "paymentInfo",
- "extraResultInfo"
-})
-public class ResultInfoType {
-
- @XmlElement(name = "ResultSetId")
- protected String resultSetId;
- @XmlElement(name = "FoundRecords")
- @XmlSchemaType(name = "nonNegativeInteger")
- protected BigInteger foundRecords;
- @XmlElement(name = "ReturnedRecords", required = true)
- @XmlSchemaType(name = "nonNegativeInteger")
- protected BigInteger returnedRecords;
- @XmlElement(name = "PaymentInfo")
- protected PaymentInfoType paymentInfo;
- @XmlElement(name = "ExtraResultInfo")
- protected ExtraResultInfo extraResultInfo;
-
- /**
- * Gets the value of the resultSetId property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getResultSetId() {
- return resultSetId;
- }
-
- /**
- * Sets the value of the resultSetId property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setResultSetId(String value) {
- this.resultSetId = value;
- }
-
- /**
- * Gets the value of the foundRecords property.
- *
- * @return
- * possible object is
- * {@link BigInteger }
- *
- */
- public BigInteger getFoundRecords() {
- return foundRecords;
- }
-
- /**
- * Sets the value of the foundRecords property.
- *
- * @param value
- * allowed object is
- * {@link BigInteger }
- *
- */
- public void setFoundRecords(BigInteger value) {
- this.foundRecords = value;
- }
-
- /**
- * Gets the value of the returnedRecords property.
- *
- * @return
- * possible object is
- * {@link BigInteger }
- *
- */
- public BigInteger getReturnedRecords() {
- return returnedRecords;
- }
-
- /**
- * Sets the value of the returnedRecords property.
- *
- * @param value
- * allowed object is
- * {@link BigInteger }
- *
- */
- public void setReturnedRecords(BigInteger value) {
- this.returnedRecords = value;
- }
-
- /**
- * Gets the value of the paymentInfo property.
- *
- * @return
- * possible object is
- * {@link PaymentInfoType }
- *
- */
- public PaymentInfoType getPaymentInfo() {
- return paymentInfo;
- }
-
- /**
- * Sets the value of the paymentInfo property.
- *
- * @param value
- * allowed object is
- * {@link PaymentInfoType }
- *
- */
- public void setPaymentInfo(PaymentInfoType value) {
- this.paymentInfo = value;
- }
-
- /**
- * Gets the value of the extraResultInfo property.
- *
- * @return
- * possible object is
- * {@link ExtraResultInfo }
- *
- */
- public ExtraResultInfo getExtraResultInfo() {
- return extraResultInfo;
- }
-
- /**
- * Sets the value of the extraResultInfo property.
- *
- * @param value
- * allowed object is
- * {@link ExtraResultInfo }
- *
- */
- public void setExtraResultInfo(ExtraResultInfo value) {
- this.extraResultInfo = value;
- }
-
-}
diff --git a/src/main/java/at/gv/util/xsd/ur/xmlsw/ResultRecord.java b/src/main/java/at/gv/util/xsd/ur/xmlsw/ResultRecord.java
deleted file mode 100644
index e3d945e..0000000
--- a/src/main/java/at/gv/util/xsd/ur/xmlsw/ResultRecord.java
+++ /dev/null
@@ -1,104 +0,0 @@
-
-package at.gv.util.xsd.ur.xmlsw;
-
-import java.math.BigInteger;
-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.XmlAnyElement;
-import javax.xml.bind.annotation.XmlAttribute;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlSchemaType;
-import javax.xml.bind.annotation.XmlType;
-import org.w3c.dom.Element;
-
-
-/**
- * <p>Java class for anonymous complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType>
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
- * &lt;/sequence>
- * &lt;attribute name="id" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" />
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "", propOrder = {
- "any"
-})
-@XmlRootElement(name = "ResultRecord")
-public class ResultRecord {
-
- @XmlAnyElement(lax = true)
- protected List<Object> any;
- @XmlAttribute(name = "id")
- @XmlSchemaType(name = "nonNegativeInteger")
- protected BigInteger id;
-
- /**
- * Gets the value of the any 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 any property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getAny().add(newItem);
- * </pre>
- *
- *
- * <p>
- * Objects of the following type(s) are allowed in the list
- * {@link Object }
- * {@link Element }
- *
- *
- */
- public List<Object> getAny() {
- if (any == null) {
- any = new ArrayList<Object>();
- }
- return this.any;
- }
-
- /**
- * 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;
- }
-
-}
diff --git a/src/main/java/at/gv/util/xsd/ur/xmlsw/ResultRecords.java b/src/main/java/at/gv/util/xsd/ur/xmlsw/ResultRecords.java
deleted file mode 100644
index 05126a3..0000000
--- a/src/main/java/at/gv/util/xsd/ur/xmlsw/ResultRecords.java
+++ /dev/null
@@ -1,71 +0,0 @@
-
-package at.gv.util.xsd.ur.xmlsw;
-
-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>
- * &lt;complexType>
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}ResultRecord" maxOccurs="unbounded"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "", propOrder = {
- "resultRecord"
-})
-@XmlRootElement(name = "ResultRecords")
-public class ResultRecords {
-
- @XmlElement(name = "ResultRecord", required = true)
- protected List<ResultRecord> resultRecord;
-
- /**
- * Gets the value of the resultRecord 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 resultRecord property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getResultRecord().add(newItem);
- * </pre>
- *
- *
- * <p>
- * Objects of the following type(s) are allowed in the list
- * {@link ResultRecord }
- *
- *
- */
- public List<ResultRecord> getResultRecord() {
- if (resultRecord == null) {
- resultRecord = new ArrayList<ResultRecord>();
- }
- return this.resultRecord;
- }
-
-}
diff --git a/src/main/java/at/gv/util/xsd/ur/xmlsw/SearchByExampleType.java b/src/main/java/at/gv/util/xsd/ur/xmlsw/SearchByExampleType.java
deleted file mode 100644
index 10b8812..0000000
--- a/src/main/java/at/gv/util/xsd/ur/xmlsw/SearchByExampleType.java
+++ /dev/null
@@ -1,146 +0,0 @@
-
-package at.gv.util.xsd.ur.xmlsw;
-
-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 SearchByExampleType complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType name="SearchByExampleType">
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}SearchRequestId"/>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}SearchRequestInfo" minOccurs="0"/>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}ResultCriteria" minOccurs="0"/>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}SearchCriteria"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "SearchByExampleType", propOrder = {
- "searchRequestId",
- "searchRequestInfo",
- "resultCriteria",
- "searchCriteria"
-})
-public class SearchByExampleType {
-
- @XmlElement(name = "SearchRequestId", required = true)
- protected String searchRequestId;
- @XmlElement(name = "SearchRequestInfo")
- protected SearchRequestInfoType searchRequestInfo;
- @XmlElement(name = "ResultCriteria")
- protected ResultCriteriaType resultCriteria;
- @XmlElement(name = "SearchCriteria", required = true)
- protected SearchCriteriaType searchCriteria;
-
- /**
- * Gets the value of the searchRequestId property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getSearchRequestId() {
- return searchRequestId;
- }
-
- /**
- * Sets the value of the searchRequestId property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setSearchRequestId(String value) {
- this.searchRequestId = value;
- }
-
- /**
- * Gets the value of the searchRequestInfo property.
- *
- * @return
- * possible object is
- * {@link SearchRequestInfoType }
- *
- */
- public SearchRequestInfoType getSearchRequestInfo() {
- return searchRequestInfo;
- }
-
- /**
- * Sets the value of the searchRequestInfo property.
- *
- * @param value
- * allowed object is
- * {@link SearchRequestInfoType }
- *
- */
- public void setSearchRequestInfo(SearchRequestInfoType value) {
- this.searchRequestInfo = value;
- }
-
- /**
- * Gets the value of the resultCriteria property.
- *
- * @return
- * possible object is
- * {@link ResultCriteriaType }
- *
- */
- public ResultCriteriaType getResultCriteria() {
- return resultCriteria;
- }
-
- /**
- * Sets the value of the resultCriteria property.
- *
- * @param value
- * allowed object is
- * {@link ResultCriteriaType }
- *
- */
- public void setResultCriteria(ResultCriteriaType value) {
- this.resultCriteria = value;
- }
-
- /**
- * Gets the value of the searchCriteria property.
- *
- * @return
- * possible object is
- * {@link SearchCriteriaType }
- *
- */
- public SearchCriteriaType getSearchCriteria() {
- return searchCriteria;
- }
-
- /**
- * Sets the value of the searchCriteria property.
- *
- * @param value
- * allowed object is
- * {@link SearchCriteriaType }
- *
- */
- public void setSearchCriteria(SearchCriteriaType value) {
- this.searchCriteria = value;
- }
-
-}
diff --git a/src/main/java/at/gv/util/xsd/ur/xmlsw/SearchByIdType.java b/src/main/java/at/gv/util/xsd/ur/xmlsw/SearchByIdType.java
deleted file mode 100644
index 217f526..0000000
--- a/src/main/java/at/gv/util/xsd/ur/xmlsw/SearchByIdType.java
+++ /dev/null
@@ -1,121 +0,0 @@
-
-package at.gv.util.xsd.ur.xmlsw;
-
-import java.math.BigInteger;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlSchemaType;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * <p>Java class for SearchByIdType complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType name="SearchByIdType">
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}SearchRequestId"/>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}SearchRequestInfo" minOccurs="0"/>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}RecordId"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "SearchByIdType", propOrder = {
- "searchRequestId",
- "searchRequestInfo",
- "recordId"
-})
-public class SearchByIdType {
-
- @XmlElement(name = "SearchRequestId", required = true)
- protected String searchRequestId;
- @XmlElement(name = "SearchRequestInfo")
- protected SearchRequestInfoType searchRequestInfo;
- @XmlElement(name = "RecordId", required = true)
- @XmlSchemaType(name = "nonNegativeInteger")
- protected BigInteger recordId;
-
- /**
- * Gets the value of the searchRequestId property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getSearchRequestId() {
- return searchRequestId;
- }
-
- /**
- * Sets the value of the searchRequestId property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setSearchRequestId(String value) {
- this.searchRequestId = value;
- }
-
- /**
- * Gets the value of the searchRequestInfo property.
- *
- * @return
- * possible object is
- * {@link SearchRequestInfoType }
- *
- */
- public SearchRequestInfoType getSearchRequestInfo() {
- return searchRequestInfo;
- }
-
- /**
- * Sets the value of the searchRequestInfo property.
- *
- * @param value
- * allowed object is
- * {@link SearchRequestInfoType }
- *
- */
- public void setSearchRequestInfo(SearchRequestInfoType value) {
- this.searchRequestInfo = value;
- }
-
- /**
- * Gets the value of the recordId property.
- *
- * @return
- * possible object is
- * {@link BigInteger }
- *
- */
- public BigInteger getRecordId() {
- return recordId;
- }
-
- /**
- * Sets the value of the recordId property.
- *
- * @param value
- * allowed object is
- * {@link BigInteger }
- *
- */
- public void setRecordId(BigInteger value) {
- this.recordId = value;
- }
-
-}
diff --git a/src/main/java/at/gv/util/xsd/ur/xmlsw/SearchCriteriaType.java b/src/main/java/at/gv/util/xsd/ur/xmlsw/SearchCriteriaType.java
deleted file mode 100644
index f15c61f..0000000
--- a/src/main/java/at/gv/util/xsd/ur/xmlsw/SearchCriteriaType.java
+++ /dev/null
@@ -1,100 +0,0 @@
-
-package at.gv.util.xsd.ur.xmlsw;
-
-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.XmlAnyElement;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlType;
-import org.w3c.dom.Element;
-
-
-/**
- * <p>Java class for SearchCriteriaType complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType name="SearchCriteriaType">
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}ResultSetId" minOccurs="0"/>
- * &lt;any processContents='lax' namespace='##other' maxOccurs="unbounded"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "SearchCriteriaType", propOrder = {
- "resultSetId",
- "any"
-})
-public class SearchCriteriaType {
-
- @XmlElement(name = "ResultSetId")
- protected String resultSetId;
- @XmlAnyElement(lax = true)
- protected List<Object> any;
-
- /**
- * Gets the value of the resultSetId property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getResultSetId() {
- return resultSetId;
- }
-
- /**
- * Sets the value of the resultSetId property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setResultSetId(String value) {
- this.resultSetId = value;
- }
-
- /**
- * Gets the value of the any 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 any property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getAny().add(newItem);
- * </pre>
- *
- *
- * <p>
- * Objects of the following type(s) are allowed in the list
- * {@link Object }
- * {@link Element }
- *
- *
- */
- public List<Object> getAny() {
- if (any == null) {
- any = new ArrayList<Object>();
- }
- return this.any;
- }
-
-}
diff --git a/src/main/java/at/gv/util/xsd/ur/xmlsw/SearchRequestInfoType.java b/src/main/java/at/gv/util/xsd/ur/xmlsw/SearchRequestInfoType.java
deleted file mode 100644
index d3f0ad6..0000000
--- a/src/main/java/at/gv/util/xsd/ur/xmlsw/SearchRequestInfoType.java
+++ /dev/null
@@ -1,71 +0,0 @@
-
-package at.gv.util.xsd.ur.xmlsw;
-
-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.XmlAnyElement;
-import javax.xml.bind.annotation.XmlType;
-import org.w3c.dom.Element;
-
-
-/**
- * <p>Java class for SearchRequestInfoType complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType name="SearchRequestInfoType">
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;any processContents='lax' maxOccurs="unbounded" minOccurs="0"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "SearchRequestInfoType", propOrder = {
- "any"
-})
-public class SearchRequestInfoType {
-
- @XmlAnyElement(lax = true)
- protected List<Object> any;
-
- /**
- * Gets the value of the any 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 any property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getAny().add(newItem);
- * </pre>
- *
- *
- * <p>
- * Objects of the following type(s) are allowed in the list
- * {@link Object }
- * {@link Element }
- *
- *
- */
- public List<Object> getAny() {
- if (any == null) {
- any = new ArrayList<Object>();
- }
- return this.any;
- }
-
-}
diff --git a/src/main/java/at/gv/util/xsd/ur/xmlsw/SearchResponseType.java b/src/main/java/at/gv/util/xsd/ur/xmlsw/SearchResponseType.java
deleted file mode 100644
index 4af6e3e..0000000
--- a/src/main/java/at/gv/util/xsd/ur/xmlsw/SearchResponseType.java
+++ /dev/null
@@ -1,146 +0,0 @@
-
-package at.gv.util.xsd.ur.xmlsw;
-
-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 SearchResponseType complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType name="SearchResponseType">
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}SearchRequestId"/>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}Message" minOccurs="0"/>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}ResultInfo"/>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}ResultRecords" minOccurs="0"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "SearchResponseType", propOrder = {
- "searchRequestId",
- "message",
- "resultInfo",
- "resultRecords"
-})
-public class SearchResponseType {
-
- @XmlElement(name = "SearchRequestId", required = true)
- protected String searchRequestId;
- @XmlElement(name = "Message")
- protected CustomFaultType message;
- @XmlElement(name = "ResultInfo", required = true)
- protected ResultInfoType resultInfo;
- @XmlElement(name = "ResultRecords")
- protected ResultRecords resultRecords;
-
- /**
- * Gets the value of the searchRequestId property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getSearchRequestId() {
- return searchRequestId;
- }
-
- /**
- * Sets the value of the searchRequestId property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setSearchRequestId(String value) {
- this.searchRequestId = value;
- }
-
- /**
- * Gets the value of the message property.
- *
- * @return
- * possible object is
- * {@link CustomFaultType }
- *
- */
- public CustomFaultType getMessage() {
- return message;
- }
-
- /**
- * Sets the value of the message property.
- *
- * @param value
- * allowed object is
- * {@link CustomFaultType }
- *
- */
- public void setMessage(CustomFaultType value) {
- this.message = value;
- }
-
- /**
- * Gets the value of the resultInfo property.
- *
- * @return
- * possible object is
- * {@link ResultInfoType }
- *
- */
- public ResultInfoType getResultInfo() {
- return resultInfo;
- }
-
- /**
- * Sets the value of the resultInfo property.
- *
- * @param value
- * allowed object is
- * {@link ResultInfoType }
- *
- */
- public void setResultInfo(ResultInfoType value) {
- this.resultInfo = value;
- }
-
- /**
- * Gets the value of the resultRecords property.
- *
- * @return
- * possible object is
- * {@link ResultRecords }
- *
- */
- public ResultRecords getResultRecords() {
- return resultRecords;
- }
-
- /**
- * Sets the value of the resultRecords property.
- *
- * @param value
- * allowed object is
- * {@link ResultRecords }
- *
- */
- public void setResultRecords(ResultRecords value) {
- this.resultRecords = value;
- }
-
-}
diff --git a/src/main/java/at/gv/util/xsd/ur/xmlsw/SortKeyType.java b/src/main/java/at/gv/util/xsd/ur/xmlsw/SortKeyType.java
deleted file mode 100644
index 274365b..0000000
--- a/src/main/java/at/gv/util/xsd/ur/xmlsw/SortKeyType.java
+++ /dev/null
@@ -1,118 +0,0 @@
-
-package at.gv.util.xsd.ur.xmlsw;
-
-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 SortKeyType complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType name="SortKeyType">
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}Path"/>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}Ascending" minOccurs="0"/>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}CaseSensitive" minOccurs="0"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "SortKeyType", propOrder = {
- "path",
- "ascending",
- "caseSensitive"
-})
-public class SortKeyType {
-
- @XmlElement(name = "Path", required = true)
- protected String path;
- @XmlElement(name = "Ascending")
- protected Boolean ascending;
- @XmlElement(name = "CaseSensitive")
- protected Boolean caseSensitive;
-
- /**
- * Gets the value of the path property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getPath() {
- return path;
- }
-
- /**
- * Sets the value of the path property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setPath(String value) {
- this.path = value;
- }
-
- /**
- * Gets the value of the ascending property.
- *
- * @return
- * possible object is
- * {@link Boolean }
- *
- */
- public Boolean isAscending() {
- return ascending;
- }
-
- /**
- * Sets the value of the ascending property.
- *
- * @param value
- * allowed object is
- * {@link Boolean }
- *
- */
- public void setAscending(Boolean value) {
- this.ascending = value;
- }
-
- /**
- * Gets the value of the caseSensitive property.
- *
- * @return
- * possible object is
- * {@link Boolean }
- *
- */
- public Boolean isCaseSensitive() {
- return caseSensitive;
- }
-
- /**
- * Sets the value of the caseSensitive property.
- *
- * @param value
- * allowed object is
- * {@link Boolean }
- *
- */
- public void setCaseSensitive(Boolean value) {
- this.caseSensitive = value;
- }
-
-}
diff --git a/src/main/java/at/gv/util/xsd/ur/xmlsw/SortKeysType.java b/src/main/java/at/gv/util/xsd/ur/xmlsw/SortKeysType.java
deleted file mode 100644
index ce78a67..0000000
--- a/src/main/java/at/gv/util/xsd/ur/xmlsw/SortKeysType.java
+++ /dev/null
@@ -1,69 +0,0 @@
-
-package at.gv.util.xsd.ur.xmlsw;
-
-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 SortKeysType complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType name="SortKeysType">
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/xml-sw/1#}SortKey" maxOccurs="unbounded"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "SortKeysType", propOrder = {
- "sortKey"
-})
-public class SortKeysType {
-
- @XmlElement(name = "SortKey", required = true)
- protected List<SortKeyType> sortKey;
-
- /**
- * Gets the value of the sortKey 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 sortKey property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getSortKey().add(newItem);
- * </pre>
- *
- *
- * <p>
- * Objects of the following type(s) are allowed in the list
- * {@link SortKeyType }
- *
- *
- */
- public List<SortKeyType> getSortKey() {
- if (sortKey == null) {
- sortKey = new ArrayList<SortKeyType>();
- }
- return this.sortKey;
- }
-
-}
diff --git a/src/main/java/at/gv/util/xsd/ur/xmlsw/package-info.java b/src/main/java/at/gv/util/xsd/ur/xmlsw/package-info.java
deleted file mode 100644
index 5a4e788..0000000
--- a/src/main/java/at/gv/util/xsd/ur/xmlsw/package-info.java
+++ /dev/null
@@ -1,2 +0,0 @@
-@javax.xml.bind.annotation.XmlSchema(namespace = "http://reference.e-government.gv.at/namespace/xml-sw/1#", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
-package at.gv.util.xsd.ur.xmlsw;