Code für den verringerten Umfang von 1.4 neu generiert
This commit is contained in:
@@ -236,7 +236,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
|
||||
|
||||
<profiles>
|
||||
|
||||
<!-- Spezielles Profil um Java-Code aus dem WSDL zu generieren -->
|
||||
<!-- Spezielles Profil um Java-Code fuer die VU-Schnittstelle aus dem WSDL zu generieren -->
|
||||
<profile>
|
||||
<id>genJavaFromWsdl_r1_4_0_VU</id>
|
||||
<activation>
|
||||
@@ -324,70 +324,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
|
||||
</build>
|
||||
</profile>
|
||||
|
||||
<profile>
|
||||
<id>genJavaFromWsdl_r1_4_0_Broker</id>
|
||||
<activation>
|
||||
<activeByDefault>false</activeByDefault>
|
||||
<property>
|
||||
<name>codeGen</name>
|
||||
</property>
|
||||
</activation>
|
||||
<properties>
|
||||
<currentOmds3VersionDir>r1_4_0</currentOmds3VersionDir>
|
||||
<wsdl.name>omds3ServicesBroker.wsdl</wsdl.name>
|
||||
<wsdl.binding.xml>wsdl_broker_binding.xml</wsdl.binding.xml>
|
||||
</properties>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.cxf</groupId>
|
||||
<artifactId>cxf-codegen-plugin</artifactId>
|
||||
<version>${cxf.version}</version>
|
||||
<configuration>
|
||||
<additionalJvmArgs>-Djavax.xml.accessExternalSchema=all</additionalJvmArgs>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>generate-sources</id>
|
||||
<phase>generate-sources</phase>
|
||||
<configuration>
|
||||
<sourceRoot>${target.generation.path}</sourceRoot>
|
||||
<wsdlOptions>
|
||||
<wsdlOption>
|
||||
<wsdl>${wsdl.location}</wsdl>
|
||||
<extendedSoapHeaders>true</extendedSoapHeaders>
|
||||
|
||||
<!-- wsdl/jaxb Binding wie der Code generiert werden soll -->
|
||||
<bindingFiles>
|
||||
<bindingFile>${bindings.location}/omds20Types_binding.xml</bindingFile>
|
||||
<bindingFile>${bindings.location}/omdsServiceTypes_binding.xml</bindingFile>
|
||||
<bindingFile>${bindings.location}/omdsCommonServiceTypes_binding.xml</bindingFile>
|
||||
<bindingFile>${bindings.location}/omds3_ON7_Schaden_binding.xml</bindingFile>
|
||||
<bindingFile>${bindings.location}/${wsdl.binding.xml}</bindingFile>
|
||||
</bindingFiles>
|
||||
|
||||
<!-- you can set the options of wsdl2java command by using the <extraargs> -->
|
||||
<extraargs>
|
||||
<!-- <extraarg>-v</extraarg> zeige Versionsnummer dieses Tools -->
|
||||
<extraarg>-impl</extraarg><!-- Implementation -->
|
||||
<extraarg>-validate</extraarg>
|
||||
<extraarg>-client</extraarg><!-- Auch Ansatzpunkt fuer Client generieren -->
|
||||
<extraarg>-verbose</extraarg>
|
||||
</extraargs>
|
||||
</wsdlOption>
|
||||
</wsdlOptions>
|
||||
</configuration>
|
||||
<goals>
|
||||
<goal>wsdl2java</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
|
||||
|
||||
<!-- Profil für die Makler-Schnittstelle gibt es unter Release 1.4 nicht -->
|
||||
</profiles>
|
||||
|
||||
</project>
|
||||
|
||||
@@ -1,163 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
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.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
|
||||
|
||||
/**
|
||||
* Typ mit Metadaten für xsd:date-Attribute
|
||||
*
|
||||
* <p>Java-Klasse für AttributMetadatenDatum_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AttributMetadatenDatum_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type">
|
||||
* <sequence>
|
||||
* <element name="Default" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
|
||||
* <element name="Values" type="{http://www.w3.org/2001/XMLSchema}date" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="Min" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
|
||||
* <element name="Max" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AttributMetadatenDatum_Type", propOrder = {
|
||||
"_default",
|
||||
"values",
|
||||
"min",
|
||||
"max"
|
||||
})
|
||||
public class AttributMetadatenDatumType
|
||||
extends AttributMetadatenType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Default")
|
||||
@XmlSchemaType(name = "date")
|
||||
protected XMLGregorianCalendar _default;
|
||||
@XmlElement(name = "Values")
|
||||
@XmlSchemaType(name = "date")
|
||||
protected List<XMLGregorianCalendar> values;
|
||||
@XmlElement(name = "Min")
|
||||
@XmlSchemaType(name = "date")
|
||||
protected XMLGregorianCalendar min;
|
||||
@XmlElement(name = "Max")
|
||||
@XmlSchemaType(name = "date")
|
||||
protected XMLGregorianCalendar max;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der default-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getDefault() {
|
||||
return _default;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der default-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setDefault(XMLGregorianCalendar value) {
|
||||
this._default = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the values 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 values property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getValues().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<XMLGregorianCalendar> getValues() {
|
||||
if (values == null) {
|
||||
values = new ArrayList<XMLGregorianCalendar>();
|
||||
}
|
||||
return this.values;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der min-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getMin() {
|
||||
return min;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der min-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setMin(XMLGregorianCalendar value) {
|
||||
this.min = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der max-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getMax() {
|
||||
return max;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der max-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setMax(XMLGregorianCalendar value) {
|
||||
this.max = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,158 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* Typ mit Metadaten für omds:decimal-Attribute
|
||||
*
|
||||
* <p>Java-Klasse für AttributMetadatenDezimal_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AttributMetadatenDezimal_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type">
|
||||
* <sequence>
|
||||
* <element name="Default" type="{urn:omds20}decimal" minOccurs="0"/>
|
||||
* <element name="Values" type="{urn:omds20}decimal" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="Min" type="{urn:omds20}decimal" minOccurs="0"/>
|
||||
* <element name="Max" type="{urn:omds20}decimal" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AttributMetadatenDezimal_Type", propOrder = {
|
||||
"_default",
|
||||
"values",
|
||||
"min",
|
||||
"max"
|
||||
})
|
||||
public class AttributMetadatenDezimalType
|
||||
extends AttributMetadatenType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Default")
|
||||
protected BigDecimal _default;
|
||||
@XmlElement(name = "Values")
|
||||
protected List<BigDecimal> values;
|
||||
@XmlElement(name = "Min")
|
||||
protected BigDecimal min;
|
||||
@XmlElement(name = "Max")
|
||||
protected BigDecimal max;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der default-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigDecimal }
|
||||
*
|
||||
*/
|
||||
public BigDecimal getDefault() {
|
||||
return _default;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der default-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigDecimal }
|
||||
*
|
||||
*/
|
||||
public void setDefault(BigDecimal value) {
|
||||
this._default = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the values 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 values property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getValues().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link BigDecimal }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<BigDecimal> getValues() {
|
||||
if (values == null) {
|
||||
values = new ArrayList<BigDecimal>();
|
||||
}
|
||||
return this.values;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der min-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigDecimal }
|
||||
*
|
||||
*/
|
||||
public BigDecimal getMin() {
|
||||
return min;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der min-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigDecimal }
|
||||
*
|
||||
*/
|
||||
public void setMin(BigDecimal value) {
|
||||
this.min = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der max-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigDecimal }
|
||||
*
|
||||
*/
|
||||
public BigDecimal getMax() {
|
||||
return max;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der max-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigDecimal }
|
||||
*
|
||||
*/
|
||||
public void setMax(BigDecimal value) {
|
||||
this.max = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,104 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
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.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
|
||||
|
||||
/**
|
||||
* Typ mit Metadaten für Schlüssellisten
|
||||
*
|
||||
* <p>Java-Klasse für AttributMetadatenEnum_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AttributMetadatenEnum_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type">
|
||||
* <sequence>
|
||||
* <element name="Default" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
|
||||
* <element name="Values" type="{urn:omds3CommonServiceTypes-1-1-0}EintragSchluesselliste_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AttributMetadatenEnum_Type", propOrder = {
|
||||
"_default",
|
||||
"values"
|
||||
})
|
||||
public class AttributMetadatenEnumType
|
||||
extends AttributMetadatenType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Default")
|
||||
@XmlSchemaType(name = "date")
|
||||
protected XMLGregorianCalendar _default;
|
||||
@XmlElement(name = "Values")
|
||||
protected List<EintragSchluessellisteType> values;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der default-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getDefault() {
|
||||
return _default;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der default-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setDefault(XMLGregorianCalendar value) {
|
||||
this._default = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the values 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 values property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getValues().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link EintragSchluessellisteType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<EintragSchluessellisteType> getValues() {
|
||||
if (values == null) {
|
||||
values = new ArrayList<EintragSchluessellisteType>();
|
||||
}
|
||||
return this.values;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,157 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* Typ mit Metadaten für xsd:int-Attribute
|
||||
*
|
||||
* <p>Java-Klasse für AttributMetadatenInt_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AttributMetadatenInt_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type">
|
||||
* <sequence>
|
||||
* <element name="Default" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||
* <element name="Values" type="{http://www.w3.org/2001/XMLSchema}int" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="Min" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||
* <element name="Max" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AttributMetadatenInt_Type", propOrder = {
|
||||
"_default",
|
||||
"values",
|
||||
"min",
|
||||
"max"
|
||||
})
|
||||
public class AttributMetadatenIntType
|
||||
extends AttributMetadatenType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Default")
|
||||
protected Integer _default;
|
||||
@XmlElement(name = "Values", type = Integer.class)
|
||||
protected List<Integer> values;
|
||||
@XmlElement(name = "Min")
|
||||
protected Integer min;
|
||||
@XmlElement(name = "Max")
|
||||
protected Integer max;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der default-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public Integer getDefault() {
|
||||
return _default;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der default-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public void setDefault(Integer value) {
|
||||
this._default = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the values 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 values property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getValues().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link Integer }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<Integer> getValues() {
|
||||
if (values == null) {
|
||||
values = new ArrayList<Integer>();
|
||||
}
|
||||
return this.values;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der min-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public Integer getMin() {
|
||||
return min;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der min-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public void setMin(Integer value) {
|
||||
this.min = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der max-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public Integer getMax() {
|
||||
return max;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der max-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public void setMax(Integer value) {
|
||||
this.max = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,188 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
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.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Typ mit Metadaten für xsd:string-Attribute
|
||||
*
|
||||
* <p>Java-Klasse für AttributMetadatenString_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AttributMetadatenString_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type">
|
||||
* <sequence>
|
||||
* <element name="Default" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Values" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="MinLaenge" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
|
||||
* <element name="MaxLaenge" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
|
||||
* <element name="Regex" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AttributMetadatenString_Type", propOrder = {
|
||||
"_default",
|
||||
"values",
|
||||
"minLaenge",
|
||||
"maxLaenge",
|
||||
"regex"
|
||||
})
|
||||
public class AttributMetadatenStringType
|
||||
extends AttributMetadatenType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Default")
|
||||
protected String _default;
|
||||
@XmlElement(name = "Values")
|
||||
protected List<String> values;
|
||||
@XmlElement(name = "MinLaenge")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected Long minLaenge;
|
||||
@XmlElement(name = "MaxLaenge")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected Long maxLaenge;
|
||||
@XmlElement(name = "Regex")
|
||||
protected String regex;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der default-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDefault() {
|
||||
return _default;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der default-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDefault(String value) {
|
||||
this._default = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the values 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 values property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getValues().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link String }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<String> getValues() {
|
||||
if (values == null) {
|
||||
values = new ArrayList<String>();
|
||||
}
|
||||
return this.values;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der minLaenge-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Long getMinLaenge() {
|
||||
return minLaenge;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der minLaenge-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setMinLaenge(Long value) {
|
||||
this.minLaenge = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der maxLaenge-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Long getMaxLaenge() {
|
||||
return maxLaenge;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der maxLaenge-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setMaxLaenge(Long value) {
|
||||
this.maxLaenge = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der regex-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getRegex() {
|
||||
return regex;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der regex-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setRegex(String value) {
|
||||
this.regex = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,148 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Abstrakter Basistyp für Metadaten von Attributen
|
||||
*
|
||||
* <p>Java-Klasse für AttributMetadaten_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AttributMetadaten_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Attribut" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
|
||||
* <element name="Aenderbar" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||
* <element name="Bezeichnung" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="BeschreibungTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AttributMetadaten_Type", propOrder = {
|
||||
"attribut",
|
||||
"aenderbar",
|
||||
"bezeichnung",
|
||||
"beschreibungTxt"
|
||||
})
|
||||
@XmlSeeAlso({
|
||||
AttributMetadatenStringType.class,
|
||||
AttributMetadatenIntType.class,
|
||||
AttributMetadatenDezimalType.class,
|
||||
AttributMetadatenDatumType.class,
|
||||
AttributMetadatenEnumType.class
|
||||
})
|
||||
public abstract class AttributMetadatenType {
|
||||
|
||||
@XmlElement(name = "Attribut", required = true)
|
||||
protected Object attribut;
|
||||
@XmlElement(name = "Aenderbar")
|
||||
protected boolean aenderbar;
|
||||
@XmlElement(name = "Bezeichnung")
|
||||
protected String bezeichnung;
|
||||
@XmlElement(name = "BeschreibungTxt")
|
||||
protected String beschreibungTxt;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der attribut-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Object }
|
||||
*
|
||||
*/
|
||||
public Object getAttribut() {
|
||||
return attribut;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der attribut-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Object }
|
||||
*
|
||||
*/
|
||||
public void setAttribut(Object value) {
|
||||
this.attribut = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der aenderbar-Eigenschaft ab.
|
||||
*
|
||||
*/
|
||||
public boolean isAenderbar() {
|
||||
return aenderbar;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der aenderbar-Eigenschaft fest.
|
||||
*
|
||||
*/
|
||||
public void setAenderbar(boolean value) {
|
||||
this.aenderbar = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der bezeichnung-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getBezeichnung() {
|
||||
return bezeichnung;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der bezeichnung-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setBezeichnung(String value) {
|
||||
this.bezeichnung = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der beschreibungTxt-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getBeschreibungTxt() {
|
||||
return beschreibungTxt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der beschreibungTxt-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setBeschreibungTxt(String value) {
|
||||
this.beschreibungTxt = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -6,7 +6,6 @@ import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.BOARequestType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateRequestType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationRequestType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferRequestType;
|
||||
@@ -42,8 +41,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationReq
|
||||
CalculateRequestType.class,
|
||||
CreateOfferRequestType.class,
|
||||
CreateApplicationRequestType.class,
|
||||
SubmitApplicationRequestType.class,
|
||||
BOARequestType.class
|
||||
SubmitApplicationRequestType.class
|
||||
})
|
||||
public abstract class CommonProcessRequestType
|
||||
extends CommonRequestType
|
||||
|
||||
@@ -6,7 +6,6 @@ import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.BOAResponseType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CalculateResponseType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateApplicationResponseType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.CreateOfferResponseType;
|
||||
@@ -42,8 +41,7 @@ import at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common.SubmitApplicationRes
|
||||
CalculateResponseType.class,
|
||||
CreateOfferResponseType.class,
|
||||
CreateApplicationResponseType.class,
|
||||
SubmitApplicationResponseType.class,
|
||||
BOAResponseType.class
|
||||
SubmitApplicationResponseType.class
|
||||
})
|
||||
public abstract class CommonProcessResponseType
|
||||
extends CommonResponseType
|
||||
|
||||
@@ -3,11 +3,9 @@ package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.activation.DataHandler;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlMimeType;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
@@ -53,8 +51,7 @@ import javax.xml.datatype.XMLGregorianCalendar;
|
||||
public class DokumentInfoType {
|
||||
|
||||
@XmlElement(name = "Content")
|
||||
@XmlMimeType("application/octet-stream")
|
||||
protected DataHandler content;
|
||||
protected byte[] content;
|
||||
@XmlElement(name = "Name")
|
||||
protected String name;
|
||||
@XmlElement(name = "DocumentType")
|
||||
@@ -74,10 +71,9 @@ public class DokumentInfoType {
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DataHandler }
|
||||
*
|
||||
* byte[]
|
||||
*/
|
||||
public DataHandler getContent() {
|
||||
public byte[] getContent() {
|
||||
return content;
|
||||
}
|
||||
|
||||
@@ -86,10 +82,9 @@ public class DokumentInfoType {
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DataHandler }
|
||||
*
|
||||
* byte[]
|
||||
*/
|
||||
public void setContent(DataHandler value) {
|
||||
public void setContent(byte[] value) {
|
||||
this.content = value;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,92 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Typ für einen einzelnen Eintrag einer Schlüsselliste
|
||||
*
|
||||
* <p>Java-Klasse für EintragSchluesselliste_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="EintragSchluesselliste_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Text" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Schluessel" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "EintragSchluesselliste_Type", propOrder = {
|
||||
"text",
|
||||
"schluessel"
|
||||
})
|
||||
public class EintragSchluessellisteType {
|
||||
|
||||
@XmlElement(name = "Text", required = true)
|
||||
protected String text;
|
||||
@XmlElement(name = "Schluessel", required = true)
|
||||
protected String schluessel;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der text-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getText() {
|
||||
return text;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der text-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setText(String value) {
|
||||
this.text = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der schluessel-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSchluessel() {
|
||||
return schluessel;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der schluessel-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSchluessel(String value) {
|
||||
this.schluessel = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,73 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
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;
|
||||
|
||||
|
||||
/**
|
||||
* Basistyp für ein Elementarprodukt, 2. Generation
|
||||
*
|
||||
* <p>Java-Klasse für ElementarproduktGenerisch_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ElementarproduktGenerisch_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktbausteinAntragsprozessGenerisch_Type">
|
||||
* <sequence>
|
||||
* <element name="ZusaetzlicheElementarproduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheElementarproduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ElementarproduktGenerisch_Type", propOrder = {
|
||||
"zusaetzlicheElementarproduktdaten"
|
||||
})
|
||||
public abstract class ElementarproduktGenerischType
|
||||
extends ProduktbausteinAntragsprozessGenerischType
|
||||
{
|
||||
|
||||
@XmlElement(name = "ZusaetzlicheElementarproduktdaten")
|
||||
protected List<ZusaetzlicheElementarproduktdatenType> zusaetzlicheElementarproduktdaten;
|
||||
|
||||
/**
|
||||
* Gets the value of the zusaetzlicheElementarproduktdaten 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 zusaetzlicheElementarproduktdaten property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getZusaetzlicheElementarproduktdaten().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ZusaetzlicheElementarproduktdatenType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ZusaetzlicheElementarproduktdatenType> getZusaetzlicheElementarproduktdaten() {
|
||||
if (zusaetzlicheElementarproduktdaten == null) {
|
||||
zusaetzlicheElementarproduktdaten = new ArrayList<ZusaetzlicheElementarproduktdatenType>();
|
||||
}
|
||||
return this.zusaetzlicheElementarproduktdaten;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -25,8 +25,8 @@ import javax.xml.namespace.QName;
|
||||
public class ObjectFactory {
|
||||
|
||||
private final static QName _ServiceFault_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "serviceFault");
|
||||
private final static QName _OrdnungsbegriffZuordFremd_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "OrdnungsbegriffZuordFremd");
|
||||
private final static QName _Geschaeftsfallnummer_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "Geschaeftsfallnummer");
|
||||
private final static QName _OrdnungsbegriffZuordFremd_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "OrdnungsbegriffZuordFremd");
|
||||
private final static QName _ObjektId_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "ObjektId");
|
||||
private final static QName _Person_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "Person");
|
||||
private final static QName _Adresse_QNAME = new QName("urn:omds3CommonServiceTypes-1-1-0", "Adresse");
|
||||
@@ -294,22 +294,6 @@ public class ObjectFactory {
|
||||
return new BankverbindungType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link VersichertePersonType }
|
||||
*
|
||||
*/
|
||||
public VersichertePersonType createVersichertePersonType() {
|
||||
return new VersichertePersonType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link VersicherteVeranstaltungType }
|
||||
*
|
||||
*/
|
||||
public VersicherteVeranstaltungType createVersicherteVeranstaltungType() {
|
||||
return new VersicherteVeranstaltungType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link FahrzeugType }
|
||||
*
|
||||
@@ -326,22 +310,6 @@ public class ObjectFactory {
|
||||
return new ZulassungsdatenType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link VersicherterBetriebType }
|
||||
*
|
||||
*/
|
||||
public VersicherterBetriebType createVersicherterBetriebType() {
|
||||
return new VersicherterBetriebType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link VersicherteLiegenschaftType }
|
||||
*
|
||||
*/
|
||||
public VersicherteLiegenschaftType createVersicherteLiegenschaftType() {
|
||||
return new VersicherteLiegenschaftType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link KostenFixOderProzentType }
|
||||
*
|
||||
@@ -398,54 +366,6 @@ public class ObjectFactory {
|
||||
return new SchadenObjektSpezifikationType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link AttributMetadatenStringType }
|
||||
*
|
||||
*/
|
||||
public AttributMetadatenStringType createAttributMetadatenStringType() {
|
||||
return new AttributMetadatenStringType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link AttributMetadatenIntType }
|
||||
*
|
||||
*/
|
||||
public AttributMetadatenIntType createAttributMetadatenIntType() {
|
||||
return new AttributMetadatenIntType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link AttributMetadatenDezimalType }
|
||||
*
|
||||
*/
|
||||
public AttributMetadatenDezimalType createAttributMetadatenDezimalType() {
|
||||
return new AttributMetadatenDezimalType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link AttributMetadatenDatumType }
|
||||
*
|
||||
*/
|
||||
public AttributMetadatenDatumType createAttributMetadatenDatumType() {
|
||||
return new AttributMetadatenDatumType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link AttributMetadatenEnumType }
|
||||
*
|
||||
*/
|
||||
public AttributMetadatenEnumType createAttributMetadatenEnumType() {
|
||||
return new AttributMetadatenEnumType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link EintragSchluessellisteType }
|
||||
*
|
||||
*/
|
||||
public EintragSchluessellisteType createEintragSchluessellisteType() {
|
||||
return new EintragSchluessellisteType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ZahlwegType.Kundenkonto }
|
||||
*
|
||||
@@ -463,15 +383,6 @@ public class ObjectFactory {
|
||||
return new JAXBElement<ServiceFault>(_ServiceFault_QNAME, ServiceFault.class, null, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
|
||||
*
|
||||
*/
|
||||
@XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "OrdnungsbegriffZuordFremd")
|
||||
public JAXBElement<String> createOrdnungsbegriffZuordFremd(String value) {
|
||||
return new JAXBElement<String>(_OrdnungsbegriffZuordFremd_QNAME, String.class, null, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >}}
|
||||
*
|
||||
@@ -481,6 +392,15 @@ public class ObjectFactory {
|
||||
return new JAXBElement<ObjektIdType>(_Geschaeftsfallnummer_QNAME, ObjektIdType.class, null, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
|
||||
*
|
||||
*/
|
||||
@XmlElementDecl(namespace = "urn:omds3CommonServiceTypes-1-1-0", name = "OrdnungsbegriffZuordFremd")
|
||||
public JAXBElement<String> createOrdnungsbegriffZuordFremd(String value) {
|
||||
return new JAXBElement<String>(_OrdnungsbegriffZuordFremd_QNAME, String.class, null, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link ObjektIdType }{@code >}}
|
||||
*
|
||||
|
||||
@@ -1,188 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
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.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
|
||||
|
||||
/**
|
||||
* Basistyp für ein Produkt, 2. Generation
|
||||
*
|
||||
* <p>Java-Klasse für ProduktGenerisch_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ProduktGenerisch_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktbausteinAntragsprozessGenerisch_Type">
|
||||
* <sequence>
|
||||
* <element name="Produktgeneration" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="Zahlweg" type="{urn:omds20}ZahlWegCd_Type" minOccurs="0"/>
|
||||
* <element name="Zahlrhythmus" type="{urn:omds20}ZahlRhythmCd_Type" minOccurs="0"/>
|
||||
* <element name="Hauptfaelligkeit" type="{urn:omds3CommonServiceTypes-1-1-0}Hauptfaelligkeit_Type"/>
|
||||
* <element name="ZusaetzlicheProduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheProduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ProduktGenerisch_Type", propOrder = {
|
||||
"produktgeneration",
|
||||
"zahlweg",
|
||||
"zahlrhythmus",
|
||||
"hauptfaelligkeit",
|
||||
"zusaetzlicheProduktdaten"
|
||||
})
|
||||
public abstract class ProduktGenerischType
|
||||
extends ProduktbausteinAntragsprozessGenerischType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Produktgeneration", required = true)
|
||||
protected String produktgeneration;
|
||||
@XmlElement(name = "Zahlweg")
|
||||
protected String zahlweg;
|
||||
@XmlElement(name = "Zahlrhythmus")
|
||||
protected String zahlrhythmus;
|
||||
@XmlElement(name = "Hauptfaelligkeit", required = true)
|
||||
@XmlSchemaType(name = "gMonthDay")
|
||||
protected XMLGregorianCalendar hauptfaelligkeit;
|
||||
@XmlElement(name = "ZusaetzlicheProduktdaten")
|
||||
protected List<ZusaetzlicheProduktdatenType> zusaetzlicheProduktdaten;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der produktgeneration-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getProduktgeneration() {
|
||||
return produktgeneration;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der produktgeneration-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setProduktgeneration(String value) {
|
||||
this.produktgeneration = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der zahlweg-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getZahlweg() {
|
||||
return zahlweg;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der zahlweg-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setZahlweg(String value) {
|
||||
this.zahlweg = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der zahlrhythmus-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getZahlrhythmus() {
|
||||
return zahlrhythmus;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der zahlrhythmus-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setZahlrhythmus(String value) {
|
||||
this.zahlrhythmus = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der hauptfaelligkeit-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getHauptfaelligkeit() {
|
||||
return hauptfaelligkeit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der hauptfaelligkeit-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setHauptfaelligkeit(XMLGregorianCalendar value) {
|
||||
this.hauptfaelligkeit = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the zusaetzlicheProduktdaten 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 zusaetzlicheProduktdaten property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getZusaetzlicheProduktdaten().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ZusaetzlicheProduktdatenType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ZusaetzlicheProduktdatenType> getZusaetzlicheProduktdaten() {
|
||||
if (zusaetzlicheProduktdaten == null) {
|
||||
zusaetzlicheProduktdaten = new ArrayList<ZusaetzlicheProduktdatenType>();
|
||||
}
|
||||
return this.zusaetzlicheProduktdaten;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,155 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
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.XmlSeeAlso;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Abstrakter Typ für Produktbausteine der Ebene 2 und 3 bei generischen Produkten
|
||||
*
|
||||
* <p>Java-Klasse für ProduktbausteinAntragsprozessGenerisch_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ProduktbausteinAntragsprozessGenerisch_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktbausteinAntragsprozess_Type">
|
||||
* <sequence>
|
||||
* <element name="Eingeschlossen" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||
* <element name="EinschlussAenderbar" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
|
||||
* <element name="AttributMetadaten" type="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="BeschreibungTxt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ProduktbausteinAntragsprozessGenerisch_Type", propOrder = {
|
||||
"eingeschlossen",
|
||||
"einschlussAenderbar",
|
||||
"attributMetadaten",
|
||||
"beschreibungTxt"
|
||||
})
|
||||
@XmlSeeAlso({
|
||||
VerkaufsproduktGenerischType.class,
|
||||
ProduktGenerischType.class,
|
||||
ElementarproduktGenerischType.class
|
||||
})
|
||||
public abstract class ProduktbausteinAntragsprozessGenerischType
|
||||
extends ProduktbausteinAntragsprozessType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Eingeschlossen")
|
||||
protected boolean eingeschlossen;
|
||||
@XmlElement(name = "EinschlussAenderbar")
|
||||
protected Boolean einschlussAenderbar;
|
||||
@XmlElement(name = "AttributMetadaten")
|
||||
protected List<AttributMetadatenType> attributMetadaten;
|
||||
@XmlElement(name = "BeschreibungTxt")
|
||||
protected String beschreibungTxt;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der eingeschlossen-Eigenschaft ab.
|
||||
*
|
||||
*/
|
||||
public boolean isEingeschlossen() {
|
||||
return eingeschlossen;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der eingeschlossen-Eigenschaft fest.
|
||||
*
|
||||
*/
|
||||
public void setEingeschlossen(boolean value) {
|
||||
this.eingeschlossen = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der einschlussAenderbar-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Boolean }
|
||||
*
|
||||
*/
|
||||
public Boolean isEinschlussAenderbar() {
|
||||
return einschlussAenderbar;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der einschlussAenderbar-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Boolean }
|
||||
*
|
||||
*/
|
||||
public void setEinschlussAenderbar(Boolean value) {
|
||||
this.einschlussAenderbar = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the attributMetadaten 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 attributMetadaten property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getAttributMetadaten().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link AttributMetadatenType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<AttributMetadatenType> getAttributMetadaten() {
|
||||
if (attributMetadaten == null) {
|
||||
attributMetadaten = new ArrayList<AttributMetadatenType>();
|
||||
}
|
||||
return this.attributMetadaten;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der beschreibungTxt-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getBeschreibungTxt() {
|
||||
return beschreibungTxt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der beschreibungTxt-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setBeschreibungTxt(String value) {
|
||||
this.beschreibungTxt = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -45,7 +45,6 @@ import javax.xml.datatype.XMLGregorianCalendar;
|
||||
"jahrespraemieNto"
|
||||
})
|
||||
@XmlSeeAlso({
|
||||
ProduktbausteinAntragsprozessGenerischType.class,
|
||||
VerkaufsproduktType.class,
|
||||
ProduktType.class,
|
||||
ElementarproduktType.class
|
||||
|
||||
@@ -1,160 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
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.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds2Types.v2_11.ELRahmenvereinbarungType;
|
||||
|
||||
|
||||
/**
|
||||
* Basistyp für ein Produktbündel
|
||||
*
|
||||
* <p>Java-Klasse für VerkaufsproduktGenerisch_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="VerkaufsproduktGenerisch_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}ProduktbausteinAntragsprozessGenerisch_Type">
|
||||
* <sequence>
|
||||
* <element name="Verkaufsproduktgeneration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="Berechnungsvariante" type="{urn:omds3CommonServiceTypes-1-1-0}Berechnungsvariante_Type" minOccurs="0"/>
|
||||
* <element ref="{urn:omds20}EL-Rahmenvereinbarung" minOccurs="0"/>
|
||||
* <element name="ZusaetzlicheVerkaufproduktdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheVerkaufproduktdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "VerkaufsproduktGenerisch_Type", propOrder = {
|
||||
"verkaufsproduktgeneration",
|
||||
"berechnungsvariante",
|
||||
"elRahmenvereinbarung",
|
||||
"zusaetzlicheVerkaufproduktdaten"
|
||||
})
|
||||
public abstract class VerkaufsproduktGenerischType
|
||||
extends ProduktbausteinAntragsprozessGenerischType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Verkaufsproduktgeneration")
|
||||
protected String verkaufsproduktgeneration;
|
||||
@XmlElement(name = "Berechnungsvariante")
|
||||
@XmlSchemaType(name = "string")
|
||||
protected BerechnungsvarianteType berechnungsvariante;
|
||||
@XmlElement(name = "EL-Rahmenvereinbarung", namespace = "urn:omds20")
|
||||
protected ELRahmenvereinbarungType elRahmenvereinbarung;
|
||||
@XmlElement(name = "ZusaetzlicheVerkaufproduktdaten")
|
||||
protected List<ZusaetzlicheVerkaufproduktdatenType> zusaetzlicheVerkaufproduktdaten;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der verkaufsproduktgeneration-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getVerkaufsproduktgeneration() {
|
||||
return verkaufsproduktgeneration;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der verkaufsproduktgeneration-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setVerkaufsproduktgeneration(String value) {
|
||||
this.verkaufsproduktgeneration = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der berechnungsvariante-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BerechnungsvarianteType }
|
||||
*
|
||||
*/
|
||||
public BerechnungsvarianteType getBerechnungsvariante() {
|
||||
return berechnungsvariante;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der berechnungsvariante-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BerechnungsvarianteType }
|
||||
*
|
||||
*/
|
||||
public void setBerechnungsvariante(BerechnungsvarianteType value) {
|
||||
this.berechnungsvariante = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der elRahmenvereinbarung-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ELRahmenvereinbarungType }
|
||||
*
|
||||
*/
|
||||
public ELRahmenvereinbarungType getELRahmenvereinbarung() {
|
||||
return elRahmenvereinbarung;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der elRahmenvereinbarung-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ELRahmenvereinbarungType }
|
||||
*
|
||||
*/
|
||||
public void setELRahmenvereinbarung(ELRahmenvereinbarungType value) {
|
||||
this.elRahmenvereinbarung = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the zusaetzlicheVerkaufproduktdaten 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 zusaetzlicheVerkaufproduktdaten property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getZusaetzlicheVerkaufproduktdaten().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ZusaetzlicheVerkaufproduktdatenType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ZusaetzlicheVerkaufproduktdatenType> getZusaetzlicheVerkaufproduktdaten() {
|
||||
if (zusaetzlicheVerkaufproduktdaten == null) {
|
||||
zusaetzlicheVerkaufproduktdaten = new ArrayList<ZusaetzlicheVerkaufproduktdatenType>();
|
||||
}
|
||||
return this.zusaetzlicheVerkaufproduktdaten;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,138 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
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;
|
||||
import at.vvo.omds.types.omds2Types.v2_11.ADRESSEType;
|
||||
|
||||
|
||||
/**
|
||||
* Versicherte Liegenschaft
|
||||
*
|
||||
* <p>Java-Klasse für VersicherteLiegenschaft_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="VersicherteLiegenschaft_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
|
||||
* <sequence>
|
||||
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId"/>
|
||||
* <element name="Adresse" type="{urn:omds20}ADRESSE_Type"/>
|
||||
* <element name="BebauteFlaecheInQm" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||
* <element name="UeberdachteFlaecheInQm" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "VersicherteLiegenschaft_Type", propOrder = {
|
||||
"objektId",
|
||||
"adresse",
|
||||
"bebauteFlaecheInQm",
|
||||
"ueberdachteFlaecheInQm"
|
||||
})
|
||||
public class VersicherteLiegenschaftType
|
||||
extends VersichertesInteresseMitAttributMetadatenType
|
||||
{
|
||||
|
||||
@XmlElement(name = "ObjektId", required = true)
|
||||
protected ObjektIdType objektId;
|
||||
@XmlElement(name = "Adresse", required = true)
|
||||
protected ADRESSEType adresse;
|
||||
@XmlElement(name = "BebauteFlaecheInQm")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long bebauteFlaecheInQm;
|
||||
@XmlElement(name = "UeberdachteFlaecheInQm")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long ueberdachteFlaecheInQm;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der objektId-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ObjektIdType }
|
||||
*
|
||||
*/
|
||||
public ObjektIdType getObjektId() {
|
||||
return objektId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der objektId-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ObjektIdType }
|
||||
*
|
||||
*/
|
||||
public void setObjektId(ObjektIdType value) {
|
||||
this.objektId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der adresse-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ADRESSEType }
|
||||
*
|
||||
*/
|
||||
public ADRESSEType getAdresse() {
|
||||
return adresse;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der adresse-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ADRESSEType }
|
||||
*
|
||||
*/
|
||||
public void setAdresse(ADRESSEType value) {
|
||||
this.adresse = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der bebauteFlaecheInQm-Eigenschaft ab.
|
||||
*
|
||||
*/
|
||||
public long getBebauteFlaecheInQm() {
|
||||
return bebauteFlaecheInQm;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der bebauteFlaecheInQm-Eigenschaft fest.
|
||||
*
|
||||
*/
|
||||
public void setBebauteFlaecheInQm(long value) {
|
||||
this.bebauteFlaecheInQm = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der ueberdachteFlaecheInQm-Eigenschaft ab.
|
||||
*
|
||||
*/
|
||||
public long getUeberdachteFlaecheInQm() {
|
||||
return ueberdachteFlaecheInQm;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der ueberdachteFlaecheInQm-Eigenschaft fest.
|
||||
*
|
||||
*/
|
||||
public void setUeberdachteFlaecheInQm(long value) {
|
||||
this.ueberdachteFlaecheInQm = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,66 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Versicherte Person basierend auf VersichertesInteresse_Type
|
||||
*
|
||||
* <p>Java-Klasse für VersichertePerson_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="VersichertePerson_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type">
|
||||
* <sequence>
|
||||
* <element name="Person" type="{urn:omds3CommonServiceTypes-1-1-0}Person_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "VersichertePerson_Type", propOrder = {
|
||||
"person"
|
||||
})
|
||||
public class VersichertePersonType
|
||||
extends VersichertesInteresseType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Person", required = true)
|
||||
protected PersonType person;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der person-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link PersonType }
|
||||
*
|
||||
*/
|
||||
public PersonType getPerson() {
|
||||
return person;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der person-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link PersonType }
|
||||
*
|
||||
*/
|
||||
public void setPerson(PersonType value) {
|
||||
this.person = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,36 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Versicherte Veranstaltung basierend auf VersichertesInteresse_Type
|
||||
*
|
||||
* <p>Java-Klasse für VersicherteVeranstaltung_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="VersicherteVeranstaltung_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
|
||||
* <sequence>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "VersicherteVeranstaltung_Type")
|
||||
public class VersicherteVeranstaltungType
|
||||
extends VersichertesInteresseMitAttributMetadatenType
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
@@ -1,273 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
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.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds2Types.v2_11.ADRESSEType;
|
||||
|
||||
|
||||
/**
|
||||
* Versicherter Betrieb (Landwirtschaftlicher Betrieb, Verein)
|
||||
*
|
||||
* <p>Java-Klasse für VersicherterBetrieb_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="VersicherterBetrieb_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresseMitAttributMetadaten_Type">
|
||||
* <sequence>
|
||||
* <element ref="{urn:omds3CommonServiceTypes-1-1-0}ObjektId" minOccurs="0"/>
|
||||
* <element name="Adresse" type="{urn:omds20}ADRESSE_Type"/>
|
||||
* <element name="Betriebsart" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
|
||||
* <element name="Mitarbeiteranzahl" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
|
||||
* <element name="Umsatz" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
|
||||
* <element name="FlaecheInHektar" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
|
||||
* <element name="Mitgliederanzahl" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" minOccurs="0"/>
|
||||
* <element name="ZusaetzlicheBetriebsdaten" type="{urn:omds3CommonServiceTypes-1-1-0}ZusaetzlicheBetriebsdaten_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "VersicherterBetrieb_Type", propOrder = {
|
||||
"objektId",
|
||||
"adresse",
|
||||
"betriebsart",
|
||||
"mitarbeiteranzahl",
|
||||
"umsatz",
|
||||
"flaecheInHektar",
|
||||
"mitgliederanzahl",
|
||||
"zusaetzlicheBetriebsdaten"
|
||||
})
|
||||
public class VersicherterBetriebType
|
||||
extends VersichertesInteresseMitAttributMetadatenType
|
||||
{
|
||||
|
||||
@XmlElement(name = "ObjektId")
|
||||
protected ObjektIdType objektId;
|
||||
@XmlElement(name = "Adresse", required = true)
|
||||
protected ADRESSEType adresse;
|
||||
@XmlElement(name = "Betriebsart", required = true)
|
||||
protected List<String> betriebsart;
|
||||
@XmlElement(name = "Mitarbeiteranzahl")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long mitarbeiteranzahl;
|
||||
@XmlElement(name = "Umsatz", required = true)
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger umsatz;
|
||||
@XmlElement(name = "FlaecheInHektar")
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected Long flaecheInHektar;
|
||||
@XmlElement(name = "Mitgliederanzahl")
|
||||
@XmlSchemaType(name = "unsignedLong")
|
||||
protected BigInteger mitgliederanzahl;
|
||||
@XmlElement(name = "ZusaetzlicheBetriebsdaten")
|
||||
protected List<ZusaetzlicheBetriebsdatenType> zusaetzlicheBetriebsdaten;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der objektId-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ObjektIdType }
|
||||
*
|
||||
*/
|
||||
public ObjektIdType getObjektId() {
|
||||
return objektId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der objektId-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ObjektIdType }
|
||||
*
|
||||
*/
|
||||
public void setObjektId(ObjektIdType value) {
|
||||
this.objektId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der adresse-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ADRESSEType }
|
||||
*
|
||||
*/
|
||||
public ADRESSEType getAdresse() {
|
||||
return adresse;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der adresse-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ADRESSEType }
|
||||
*
|
||||
*/
|
||||
public void setAdresse(ADRESSEType value) {
|
||||
this.adresse = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the betriebsart 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 betriebsart property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getBetriebsart().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link String }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<String> getBetriebsart() {
|
||||
if (betriebsart == null) {
|
||||
betriebsart = new ArrayList<String>();
|
||||
}
|
||||
return this.betriebsart;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der mitarbeiteranzahl-Eigenschaft ab.
|
||||
*
|
||||
*/
|
||||
public long getMitarbeiteranzahl() {
|
||||
return mitarbeiteranzahl;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der mitarbeiteranzahl-Eigenschaft fest.
|
||||
*
|
||||
*/
|
||||
public void setMitarbeiteranzahl(long value) {
|
||||
this.mitarbeiteranzahl = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der umsatz-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getUmsatz() {
|
||||
return umsatz;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der umsatz-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setUmsatz(BigInteger value) {
|
||||
this.umsatz = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der flaecheInHektar-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Long getFlaecheInHektar() {
|
||||
return flaecheInHektar;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der flaecheInHektar-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setFlaecheInHektar(Long value) {
|
||||
this.flaecheInHektar = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der mitgliederanzahl-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getMitgliederanzahl() {
|
||||
return mitgliederanzahl;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der mitgliederanzahl-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setMitgliederanzahl(BigInteger value) {
|
||||
this.mitgliederanzahl = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the zusaetzlicheBetriebsdaten 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 zusaetzlicheBetriebsdaten property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getZusaetzlicheBetriebsdaten().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ZusaetzlicheBetriebsdatenType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ZusaetzlicheBetriebsdatenType> getZusaetzlicheBetriebsdaten() {
|
||||
if (zusaetzlicheBetriebsdaten == null) {
|
||||
zusaetzlicheBetriebsdaten = new ArrayList<ZusaetzlicheBetriebsdatenType>();
|
||||
}
|
||||
return this.zusaetzlicheBetriebsdaten;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,99 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
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.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Abstrakter Obertyp für versicherte Interessen, unterstützt Attribut-Metadaten
|
||||
*
|
||||
* <p>Java-Klasse für VersichertesInteresseMitAttributMetadaten_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="VersichertesInteresseMitAttributMetadaten_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="AttributMetadaten" type="{urn:omds3CommonServiceTypes-1-1-0}AttributMetadaten_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* <attribute name="Lfnr" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "VersichertesInteresseMitAttributMetadaten_Type", propOrder = {
|
||||
"attributMetadaten"
|
||||
})
|
||||
@XmlSeeAlso({
|
||||
VersicherteVeranstaltungType.class,
|
||||
VersicherterBetriebType.class,
|
||||
VersicherteLiegenschaftType.class
|
||||
})
|
||||
public abstract class VersichertesInteresseMitAttributMetadatenType {
|
||||
|
||||
@XmlElement(name = "AttributMetadaten")
|
||||
protected List<AttributMetadatenType> attributMetadaten;
|
||||
@XmlAttribute(name = "Lfnr", namespace = "urn:omds3CommonServiceTypes-1-1-0", required = true)
|
||||
@XmlSchemaType(name = "unsignedShort")
|
||||
protected int lfnr;
|
||||
|
||||
/**
|
||||
* Gets the value of the attributMetadaten 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 attributMetadaten property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getAttributMetadaten().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link AttributMetadatenType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<AttributMetadatenType> getAttributMetadaten() {
|
||||
if (attributMetadaten == null) {
|
||||
attributMetadaten = new ArrayList<AttributMetadatenType>();
|
||||
}
|
||||
return this.attributMetadaten;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der lfnr-Eigenschaft ab.
|
||||
*
|
||||
*/
|
||||
public int getLfnr() {
|
||||
return lfnr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der lfnr-Eigenschaft fest.
|
||||
*
|
||||
*/
|
||||
public void setLfnr(int value) {
|
||||
this.lfnr = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -31,7 +31,6 @@ import javax.xml.bind.annotation.XmlType;
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "VersichertesInteresse_Type")
|
||||
@XmlSeeAlso({
|
||||
VersichertePersonType.class,
|
||||
FahrzeugType.class
|
||||
})
|
||||
public abstract class VersichertesInteresseType {
|
||||
|
||||
@@ -1,32 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Abstrakter Typ fuer zusaetzliche Betriebsdaten zur Erweiterung des VersicherterBetrieb_Type
|
||||
*
|
||||
* <p>Java-Klasse für ZusaetzlicheBetriebsdaten_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ZusaetzlicheBetriebsdaten_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ZusaetzlicheBetriebsdaten_Type")
|
||||
public abstract class ZusaetzlicheBetriebsdatenType {
|
||||
|
||||
|
||||
}
|
||||
@@ -24,6 +24,10 @@ import javax.xml.namespace.QName;
|
||||
@XmlRegistry
|
||||
public class ObjectFactory {
|
||||
|
||||
private final static QName _GetStateChangesRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetStateChangesRequest");
|
||||
private final static QName _GetStateChangesResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetStateChangesResponse");
|
||||
private final static QName _DeclareStateChangesRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "DeclareStateChangesRequest");
|
||||
private final static QName _DeclareStateChangesResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "DeclareStateChangesResponse");
|
||||
private final static QName _AddDocToBusinessCaseRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "AddDocToBusinessCaseRequest");
|
||||
private final static QName _AddDocToBusinessCaseResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "AddDocToBusinessCaseResponse");
|
||||
private final static QName _GetNumberOfDocumentsRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetNumberOfDocumentsRequest");
|
||||
@@ -37,10 +41,6 @@ public class ObjectFactory {
|
||||
private final static QName _DeclareEndpointResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "DeclareEndpointResponse");
|
||||
private final static QName _SecurityContextTokenRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "SecurityContextTokenRequest");
|
||||
private final static QName _SecurityContextTokenResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "SecurityContextTokenResponse");
|
||||
private final static QName _GetStateChangesRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetStateChangesRequest");
|
||||
private final static QName _GetStateChangesResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "GetStateChangesResponse");
|
||||
private final static QName _DeclareStateChangesRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "DeclareStateChangesRequest");
|
||||
private final static QName _DeclareStateChangesResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", "DeclareStateChangesResponse");
|
||||
|
||||
/**
|
||||
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_4_0.on1basis
|
||||
@@ -49,6 +49,38 @@ public class ObjectFactory {
|
||||
public ObjectFactory() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link GetStateChangesRequestType }
|
||||
*
|
||||
*/
|
||||
public GetStateChangesRequestType createGetStateChangesRequestType() {
|
||||
return new GetStateChangesRequestType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link GetStateChangesResponseType }
|
||||
*
|
||||
*/
|
||||
public GetStateChangesResponseType createGetStateChangesResponseType() {
|
||||
return new GetStateChangesResponseType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link DeclareStateChangesRequestType }
|
||||
*
|
||||
*/
|
||||
public DeclareStateChangesRequestType createDeclareStateChangesRequestType() {
|
||||
return new DeclareStateChangesRequestType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link DeclareStateChangesResponseType }
|
||||
*
|
||||
*/
|
||||
public DeclareStateChangesResponseType createDeclareStateChangesResponseType() {
|
||||
return new DeclareStateChangesResponseType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link AddDocToBusinessCaseRequestType }
|
||||
*
|
||||
@@ -146,35 +178,19 @@ public class ObjectFactory {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link GetStateChangesRequestType }
|
||||
* Create an instance of {@link StateChangeEventType }
|
||||
*
|
||||
*/
|
||||
public GetStateChangesRequestType createGetStateChangesRequestType() {
|
||||
return new GetStateChangesRequestType();
|
||||
public StateChangeEventType createStateChangeEventType() {
|
||||
return new StateChangeEventType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link GetStateChangesResponseType }
|
||||
* Create an instance of {@link StatusAntragsGeschaeftsfall }
|
||||
*
|
||||
*/
|
||||
public GetStateChangesResponseType createGetStateChangesResponseType() {
|
||||
return new GetStateChangesResponseType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link DeclareStateChangesRequestType }
|
||||
*
|
||||
*/
|
||||
public DeclareStateChangesRequestType createDeclareStateChangesRequestType() {
|
||||
return new DeclareStateChangesRequestType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link DeclareStateChangesResponseType }
|
||||
*
|
||||
*/
|
||||
public DeclareStateChangesResponseType createDeclareStateChangesResponseType() {
|
||||
return new DeclareStateChangesResponseType();
|
||||
public StatusAntragsGeschaeftsfall createStatusAntragsGeschaeftsfall() {
|
||||
return new StatusAntragsGeschaeftsfall();
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -194,19 +210,39 @@ public class ObjectFactory {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link StateChangeEventType }
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link GetStateChangesRequestType }{@code >}}
|
||||
*
|
||||
*/
|
||||
public StateChangeEventType createStateChangeEventType() {
|
||||
return new StateChangeEventType();
|
||||
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetStateChangesRequest")
|
||||
public JAXBElement<GetStateChangesRequestType> createGetStateChangesRequest(GetStateChangesRequestType value) {
|
||||
return new JAXBElement<GetStateChangesRequestType>(_GetStateChangesRequest_QNAME, GetStateChangesRequestType.class, null, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link StatusAntragsGeschaeftsfall }
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link GetStateChangesResponseType }{@code >}}
|
||||
*
|
||||
*/
|
||||
public StatusAntragsGeschaeftsfall createStatusAntragsGeschaeftsfall() {
|
||||
return new StatusAntragsGeschaeftsfall();
|
||||
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetStateChangesResponse")
|
||||
public JAXBElement<GetStateChangesResponseType> createGetStateChangesResponse(GetStateChangesResponseType value) {
|
||||
return new JAXBElement<GetStateChangesResponseType>(_GetStateChangesResponse_QNAME, GetStateChangesResponseType.class, null, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link DeclareStateChangesRequestType }{@code >}}
|
||||
*
|
||||
*/
|
||||
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "DeclareStateChangesRequest")
|
||||
public JAXBElement<DeclareStateChangesRequestType> createDeclareStateChangesRequest(DeclareStateChangesRequestType value) {
|
||||
return new JAXBElement<DeclareStateChangesRequestType>(_DeclareStateChangesRequest_QNAME, DeclareStateChangesRequestType.class, null, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link DeclareStateChangesResponseType }{@code >}}
|
||||
*
|
||||
*/
|
||||
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "DeclareStateChangesResponse")
|
||||
public JAXBElement<DeclareStateChangesResponseType> createDeclareStateChangesResponse(DeclareStateChangesResponseType value) {
|
||||
return new JAXBElement<DeclareStateChangesResponseType>(_DeclareStateChangesResponse_QNAME, DeclareStateChangesResponseType.class, null, value);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -326,40 +362,4 @@ public class ObjectFactory {
|
||||
return new JAXBElement<SecurityContextTokenResponseType>(_SecurityContextTokenResponse_QNAME, SecurityContextTokenResponseType.class, null, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link GetStateChangesRequestType }{@code >}}
|
||||
*
|
||||
*/
|
||||
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetStateChangesRequest")
|
||||
public JAXBElement<GetStateChangesRequestType> createGetStateChangesRequest(GetStateChangesRequestType value) {
|
||||
return new JAXBElement<GetStateChangesRequestType>(_GetStateChangesRequest_QNAME, GetStateChangesRequestType.class, null, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link GetStateChangesResponseType }{@code >}}
|
||||
*
|
||||
*/
|
||||
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "GetStateChangesResponse")
|
||||
public JAXBElement<GetStateChangesResponseType> createGetStateChangesResponse(GetStateChangesResponseType value) {
|
||||
return new JAXBElement<GetStateChangesResponseType>(_GetStateChangesResponse_QNAME, GetStateChangesResponseType.class, null, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link DeclareStateChangesRequestType }{@code >}}
|
||||
*
|
||||
*/
|
||||
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "DeclareStateChangesRequest")
|
||||
public JAXBElement<DeclareStateChangesRequestType> createDeclareStateChangesRequest(DeclareStateChangesRequestType value) {
|
||||
return new JAXBElement<DeclareStateChangesRequestType>(_DeclareStateChangesRequest_QNAME, DeclareStateChangesRequestType.class, null, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link DeclareStateChangesResponseType }{@code >}}
|
||||
*
|
||||
*/
|
||||
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen", name = "DeclareStateChangesResponse")
|
||||
public JAXBElement<DeclareStateChangesResponseType> createDeclareStateChangesResponse(DeclareStateChangesResponseType value) {
|
||||
return new JAXBElement<DeclareStateChangesResponseType>(_DeclareStateChangesResponse_QNAME, DeclareStateChangesResponseType.class, null, value);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -1,66 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonProcessRequestType;
|
||||
|
||||
|
||||
/**
|
||||
* Abstrakter Request für BOA mit generischen Produktbausteinen
|
||||
*
|
||||
* <p>Java-Klasse für BOA_Request_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="BOA_Request_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessRequest_Type">
|
||||
* <sequence>
|
||||
* <element name="Produktmetadaten" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "BOA_Request_Type", propOrder = {
|
||||
"produktmetadaten"
|
||||
})
|
||||
@XmlSeeAlso({
|
||||
CalculateRequestGenType.class,
|
||||
CreateOfferRequestGenType.class,
|
||||
CreateApplicationRequestGenType.class,
|
||||
SubmitApplicationRequestGenType.class
|
||||
})
|
||||
public abstract class BOARequestType
|
||||
extends CommonProcessRequestType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Produktmetadaten")
|
||||
protected boolean produktmetadaten;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der produktmetadaten-Eigenschaft ab.
|
||||
*
|
||||
*/
|
||||
public boolean isProduktmetadaten() {
|
||||
return produktmetadaten;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der produktmetadaten-Eigenschaft fest.
|
||||
*
|
||||
*/
|
||||
public void setProduktmetadaten(boolean value) {
|
||||
this.produktmetadaten = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,42 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.CommonProcessResponseType;
|
||||
|
||||
|
||||
/**
|
||||
* Abstrakter Request für BOA
|
||||
*
|
||||
* <p>Java-Klasse für BOA_Response_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="BOA_Response_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonProcessResponse_Type">
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "BOA_Response_Type")
|
||||
@XmlSeeAlso({
|
||||
CalculateResponseGenType.class,
|
||||
CreateOfferResponseGenType.class,
|
||||
CreateApplicationResponseGenType.class,
|
||||
SubmitApplicationResponseGenType.class
|
||||
})
|
||||
public abstract class BOAResponseType
|
||||
extends CommonProcessResponseType
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
@@ -1,58 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Abstrakter Request für die Berechnung mit generischen Produktbausteinen
|
||||
*
|
||||
* <p>Java-Klasse für CalculateRequestGen_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CalculateRequestGen_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOA_Request_Type">
|
||||
* <sequence>
|
||||
* <element name="RequestUpselling" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CalculateRequestGen_Type", propOrder = {
|
||||
"requestUpselling"
|
||||
})
|
||||
public abstract class CalculateRequestGenType
|
||||
extends BOARequestType
|
||||
{
|
||||
|
||||
@XmlElement(name = "RequestUpselling", defaultValue = "false")
|
||||
protected boolean requestUpselling;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der requestUpselling-Eigenschaft ab.
|
||||
*
|
||||
*/
|
||||
public boolean isRequestUpselling() {
|
||||
return requestUpselling;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der requestUpselling-Eigenschaft fest.
|
||||
*
|
||||
*/
|
||||
public void setRequestUpselling(boolean value) {
|
||||
this.requestUpselling = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Abstrakter Response Berechnung
|
||||
*
|
||||
* <p>Java-Klasse für CalculateResponseGen_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CalculateResponseGen_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOA_Response_Type">
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CalculateResponseGen_Type")
|
||||
public abstract class CalculateResponseGenType
|
||||
extends BOAResponseType
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
@@ -1,74 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
|
||||
|
||||
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;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.DateianhangType;
|
||||
|
||||
|
||||
/**
|
||||
* Abstrakter Request der Antragserzeugung mit generischen Produktbausteinen
|
||||
*
|
||||
* <p>Java-Klasse für CreateApplicationRequestGen_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CreateApplicationRequestGen_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOA_Request_Type">
|
||||
* <sequence>
|
||||
* <element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CreateApplicationRequestGen_Type", propOrder = {
|
||||
"dateianhaenge"
|
||||
})
|
||||
public abstract class CreateApplicationRequestGenType
|
||||
extends BOARequestType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Dateianhaenge")
|
||||
protected List<DateianhangType> dateianhaenge;
|
||||
|
||||
/**
|
||||
* Gets the value of the dateianhaenge 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 dateianhaenge property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getDateianhaenge().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link DateianhangType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<DateianhangType> getDateianhaenge() {
|
||||
if (dateianhaenge == null) {
|
||||
dateianhaenge = new ArrayList<DateianhangType>();
|
||||
}
|
||||
return this.dateianhaenge;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,131 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
|
||||
|
||||
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;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.DokumentInfoType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.ObjektIdType;
|
||||
|
||||
|
||||
/**
|
||||
* Abstrakter Response der Antragserzeugung
|
||||
*
|
||||
* <p>Java-Klasse für CreateApplicationResponseGen_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CreateApplicationResponseGen_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOA_Response_Type">
|
||||
* <sequence>
|
||||
* <element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type" minOccurs="0"/>
|
||||
* <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
|
||||
* <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CreateApplicationResponseGen_Type", propOrder = {
|
||||
"antragstatus",
|
||||
"antragsnummer",
|
||||
"dokumente"
|
||||
})
|
||||
public abstract class CreateApplicationResponseGenType
|
||||
extends BOAResponseType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Antragstatus")
|
||||
protected Integer antragstatus;
|
||||
@XmlElement(name = "Antragsnummer")
|
||||
protected ObjektIdType antragsnummer;
|
||||
@XmlElement(name = "Dokumente")
|
||||
protected List<DokumentInfoType> dokumente;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der antragstatus-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public Integer getAntragstatus() {
|
||||
return antragstatus;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der antragstatus-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public void setAntragstatus(Integer value) {
|
||||
this.antragstatus = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der antragsnummer-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ObjektIdType }
|
||||
*
|
||||
*/
|
||||
public ObjektIdType getAntragsnummer() {
|
||||
return antragsnummer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der antragsnummer-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ObjektIdType }
|
||||
*
|
||||
*/
|
||||
public void setAntragsnummer(ObjektIdType value) {
|
||||
this.antragsnummer = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the dokumente 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 dokumente property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getDokumente().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link DokumentInfoType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<DokumentInfoType> getDokumente() {
|
||||
if (dokumente == null) {
|
||||
dokumente = new ArrayList<DokumentInfoType>();
|
||||
}
|
||||
return this.dokumente;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Abstrakter Request für die Offerterstellung mit generischen Produktbausteinen
|
||||
*
|
||||
* <p>Java-Klasse für CreateOfferRequestGen_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CreateOfferRequestGen_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOA_Request_Type">
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CreateOfferRequestGen_Type")
|
||||
public abstract class CreateOfferRequestGenType
|
||||
extends BOARequestType
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
@@ -1,74 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
|
||||
|
||||
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;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.DokumentInfoType;
|
||||
|
||||
|
||||
/**
|
||||
* Abstrakter Response der Offerterstellung
|
||||
*
|
||||
* <p>Java-Klasse für CreateOfferResponseGen_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CreateOfferResponseGen_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOA_Response_Type">
|
||||
* <sequence>
|
||||
* <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CreateOfferResponseGen_Type", propOrder = {
|
||||
"dokumente"
|
||||
})
|
||||
public abstract class CreateOfferResponseGenType
|
||||
extends BOAResponseType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Dokumente")
|
||||
protected List<DokumentInfoType> dokumente;
|
||||
|
||||
/**
|
||||
* Gets the value of the dokumente 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 dokumente property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getDokumente().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link DokumentInfoType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<DokumentInfoType> getDokumente() {
|
||||
if (dokumente == null) {
|
||||
dokumente = new ArrayList<DokumentInfoType>();
|
||||
}
|
||||
return this.dokumente;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,103 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
|
||||
|
||||
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;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.DateianhangType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.ObjektIdType;
|
||||
|
||||
|
||||
/**
|
||||
* Abstrakter Request der Antragsüberleitung mit generischen Produktbausteinen
|
||||
*
|
||||
* <p>Java-Klasse für SubmitApplicationRequestGen_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="SubmitApplicationRequestGen_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOA_Request_Type">
|
||||
* <sequence>
|
||||
* <element name="Dateianhaenge" type="{urn:omds3CommonServiceTypes-1-1-0}Dateianhang_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "SubmitApplicationRequestGen_Type", propOrder = {
|
||||
"dateianhaenge",
|
||||
"antragsnummer"
|
||||
})
|
||||
public abstract class SubmitApplicationRequestGenType
|
||||
extends BOARequestType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Dateianhaenge")
|
||||
protected List<DateianhangType> dateianhaenge;
|
||||
@XmlElement(name = "Antragsnummer")
|
||||
protected ObjektIdType antragsnummer;
|
||||
|
||||
/**
|
||||
* Gets the value of the dateianhaenge 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 dateianhaenge property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getDateianhaenge().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link DateianhangType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<DateianhangType> getDateianhaenge() {
|
||||
if (dateianhaenge == null) {
|
||||
dateianhaenge = new ArrayList<DateianhangType>();
|
||||
}
|
||||
return this.dateianhaenge;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der antragsnummer-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ObjektIdType }
|
||||
*
|
||||
*/
|
||||
public ObjektIdType getAntragsnummer() {
|
||||
return antragsnummer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der antragsnummer-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ObjektIdType }
|
||||
*
|
||||
*/
|
||||
public void setAntragsnummer(ObjektIdType value) {
|
||||
this.antragsnummer = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,123 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.on2antrag.common;
|
||||
|
||||
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;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.DokumentInfoType;
|
||||
import at.vvo.omds.types.omds3Types.r1_4_0.common.ObjektIdType;
|
||||
|
||||
|
||||
/**
|
||||
* Abstrakter Response der Antragsüberleitung
|
||||
*
|
||||
* <p>Java-Klasse für SubmitApplicationResponseGen_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="SubmitApplicationResponseGen_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}BOA_Response_Type">
|
||||
* <sequence>
|
||||
* <element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type"/>
|
||||
* <element name="Antragsnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
|
||||
* <element name="Dokumente" type="{urn:omds3CommonServiceTypes-1-1-0}DokumentInfo_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "SubmitApplicationResponseGen_Type", propOrder = {
|
||||
"antragstatus",
|
||||
"antragsnummer",
|
||||
"dokumente"
|
||||
})
|
||||
public abstract class SubmitApplicationResponseGenType
|
||||
extends BOAResponseType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Antragstatus")
|
||||
protected int antragstatus;
|
||||
@XmlElement(name = "Antragsnummer", required = true)
|
||||
protected ObjektIdType antragsnummer;
|
||||
@XmlElement(name = "Dokumente")
|
||||
protected List<DokumentInfoType> dokumente;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der antragstatus-Eigenschaft ab.
|
||||
*
|
||||
*/
|
||||
public int getAntragstatus() {
|
||||
return antragstatus;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der antragstatus-Eigenschaft fest.
|
||||
*
|
||||
*/
|
||||
public void setAntragstatus(int value) {
|
||||
this.antragstatus = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der antragsnummer-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ObjektIdType }
|
||||
*
|
||||
*/
|
||||
public ObjektIdType getAntragsnummer() {
|
||||
return antragsnummer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der antragsnummer-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ObjektIdType }
|
||||
*
|
||||
*/
|
||||
public void setAntragsnummer(ObjektIdType value) {
|
||||
this.antragsnummer = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the dokumente 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 dokumente property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getDokumente().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link DokumentInfoType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<DokumentInfoType> getDokumente() {
|
||||
if (dokumente == null) {
|
||||
dokumente = new ArrayList<DokumentInfoType>();
|
||||
}
|
||||
return this.dokumente;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -10,7 +10,7 @@ import javax.xml.ws.Service;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 3.2.0
|
||||
* 2019-09-01T09:48:45.539+02:00
|
||||
* 2019-09-02T09:52:47.160+02:00
|
||||
* Generated source version: 3.2.0
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -13,11 +13,10 @@ import javax.jws.WebResult;
|
||||
import javax.jws.WebService;
|
||||
import javax.jws.soap.SOAPBinding;
|
||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
import javax.xml.ws.soap.MTOM;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 3.2.0
|
||||
* 2019-09-01T09:48:45.443+02:00
|
||||
* 2019-09-02T09:52:47.098+02:00
|
||||
* Generated source version: 3.2.0
|
||||
*
|
||||
*/
|
||||
@@ -28,7 +27,7 @@ import javax.xml.ws.soap.MTOM;
|
||||
targetNamespace = "urn:omds3Services-1-4-0",
|
||||
wsdlLocation = "file:/C:/Users/Jens/git/omdsservicedefinitions-master/OMDSServiceDefinition/src/main/resources/def/r1_4_0/omds3Services.wsdl",
|
||||
endpointInterface = "at.vvo.omds.types.omds3Types.r1_4_0.service.OmdsServicePortType")
|
||||
@MTOM(enabled = true, threshold = 1024)
|
||||
|
||||
public class OmdsServicePortImpl implements OmdsServicePortType {
|
||||
|
||||
private static final Logger LOG = Logger.getLogger(OmdsServicePortImpl.class.getName());
|
||||
|
||||
@@ -9,7 +9,7 @@ import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 3.2.0
|
||||
* 2019-09-01T09:48:45.507+02:00
|
||||
* 2019-09-02T09:52:47.145+02:00
|
||||
* Generated source version: 3.2.0
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -16,11 +16,10 @@ import javax.jws.WebResult;
|
||||
import javax.jws.WebService;
|
||||
import javax.jws.soap.SOAPBinding;
|
||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
import javax.xml.ws.soap.MTOMFeature;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 3.2.0
|
||||
* 2019-09-01T09:48:45.307+02:00
|
||||
* 2019-09-02T09:52:47.020+02:00
|
||||
* Generated source version: 3.2.0
|
||||
*
|
||||
*/
|
||||
@@ -45,9 +44,9 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME);
|
||||
OmdsServicePortType port = ss.getOmdsServicePort(new MTOMFeature(1024));
|
||||
OmdsServicePortType port = ss.getOmdsServicePort();
|
||||
|
||||
{
|
||||
System.out.println("Invoking getOMDSPackageList...");
|
||||
|
||||
@@ -6,7 +6,7 @@ import javax.xml.ws.WebFault;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 3.2.0
|
||||
* 2019-09-01T09:48:45.423+02:00
|
||||
* 2019-09-02T09:52:47.082+02:00
|
||||
* Generated source version: 3.2.0
|
||||
*/
|
||||
|
||||
|
||||
@@ -1,11 +1,9 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_4_0.servicetypes;
|
||||
|
||||
import javax.activation.DataHandler;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlMimeType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@@ -41,8 +39,7 @@ public class ArcContent {
|
||||
@XmlElement(required = true)
|
||||
protected ArcImageInfo arcImageInfo;
|
||||
@XmlElement(required = true)
|
||||
@XmlMimeType("application/octet-stream")
|
||||
protected DataHandler arcImage;
|
||||
protected byte[] arcImage;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der arcImageInfo-Eigenschaft ab.
|
||||
@@ -73,10 +70,9 @@ public class ArcContent {
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DataHandler }
|
||||
*
|
||||
* byte[]
|
||||
*/
|
||||
public DataHandler getArcImage() {
|
||||
public byte[] getArcImage() {
|
||||
return arcImage;
|
||||
}
|
||||
|
||||
@@ -85,10 +81,9 @@ public class ArcContent {
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DataHandler }
|
||||
*
|
||||
* byte[]
|
||||
*/
|
||||
public void setArcImage(DataHandler value) {
|
||||
public void setArcImage(byte[] value) {
|
||||
this.arcImage = value;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user