Klassen nochmals neu generiert
This commit is contained in:
@@ -1,36 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_5_0.on1basis;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Abstraktes Event einer Statusänderung
|
||||
*
|
||||
* <p>Java-Klasse für AbstractStateChangeEvent_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AbstractStateChangeEvent_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AbstractStateChangeEvent_Type")
|
||||
@XmlSeeAlso({
|
||||
StateChangeEventType.class
|
||||
})
|
||||
public abstract class AbstractStateChangeEventType {
|
||||
|
||||
|
||||
}
|
||||
@@ -1,36 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_5_0.on1basis;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Abstrakter Status eines Geschaeftsfalls
|
||||
*
|
||||
* <p>Java-Klasse für AbstractStatusGeschaeftsfall_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AbstractStatusGeschaeftsfall_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AbstractStatusGeschaeftsfall_Type")
|
||||
@XmlSeeAlso({
|
||||
StatusAntragsGeschaeftsfall.class
|
||||
})
|
||||
public abstract class AbstractStatusGeschaeftsfallType {
|
||||
|
||||
|
||||
}
|
||||
@@ -1,71 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_5_0.on1basis;
|
||||
|
||||
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 fuer die Bekanntgabe von Statusänderungen
|
||||
*
|
||||
* <p>Java-Klasse für DeclareStateChangesRequest_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DeclareStateChangesRequest_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="StateChange" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStateChangeEvent_Type" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DeclareStateChangesRequest_Type", propOrder = {
|
||||
"stateChange"
|
||||
})
|
||||
public class DeclareStateChangesRequestType {
|
||||
|
||||
@XmlElement(name = "StateChange", required = true)
|
||||
protected List<AbstractStateChangeEventType> stateChange;
|
||||
|
||||
/**
|
||||
* Gets the value of the stateChange 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 stateChange property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getStateChange().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link AbstractStateChangeEventType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<AbstractStateChangeEventType> getStateChange() {
|
||||
if (stateChange == null) {
|
||||
stateChange = new ArrayList<AbstractStateChangeEventType>();
|
||||
}
|
||||
return this.stateChange;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,32 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_5_0.on1basis;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Typ fuer die Annahme von Statusänderungen
|
||||
*
|
||||
* <p>Java-Klasse für DeclareStateChangesResponse_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DeclareStateChangesResponse_Type">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DeclareStateChangesResponse_Type")
|
||||
public class DeclareStateChangesResponseType {
|
||||
|
||||
|
||||
}
|
||||
@@ -1,70 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_5_0.on1basis;
|
||||
|
||||
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.omds3Types.r1_5_0.common.CommonSearchRequestType;
|
||||
import at.vvo.omds.types.omds3Types.r1_5_0.common.GeschaeftsobjektArtType;
|
||||
|
||||
|
||||
/**
|
||||
* Typ des Requestobjektes um Geschäftsfalle abzuholen
|
||||
*
|
||||
* <p>Java-Klasse für GetStateChangesRequest_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="GetStateChangesRequest_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonSearchRequest_Type">
|
||||
* <sequence>
|
||||
* <element name="GeschaeftsobjektArt" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsobjektArt_Type" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "GetStateChangesRequest_Type", propOrder = {
|
||||
"geschaeftsobjektArt"
|
||||
})
|
||||
public class GetStateChangesRequestType
|
||||
extends CommonSearchRequestType
|
||||
{
|
||||
|
||||
@XmlElement(name = "GeschaeftsobjektArt")
|
||||
@XmlSchemaType(name = "string")
|
||||
protected GeschaeftsobjektArtType geschaeftsobjektArt;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der geschaeftsobjektArt-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link GeschaeftsobjektArtType }
|
||||
*
|
||||
*/
|
||||
public GeschaeftsobjektArtType getGeschaeftsobjektArt() {
|
||||
return geschaeftsobjektArt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der geschaeftsobjektArt-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link GeschaeftsobjektArtType }
|
||||
*
|
||||
*/
|
||||
public void setGeschaeftsobjektArt(GeschaeftsobjektArtType value) {
|
||||
this.geschaeftsobjektArt = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,74 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_5_0.on1basis;
|
||||
|
||||
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_5_0.common.CommonSearchResponseType;
|
||||
|
||||
|
||||
/**
|
||||
* Typ des Responseobjektes um Geschäftsfalle abzuholen
|
||||
*
|
||||
* <p>Java-Klasse für GetStateChangesResponse_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="GetStateChangesResponse_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:omds3CommonServiceTypes-1-1-0}CommonSearchResponse_Type">
|
||||
* <sequence>
|
||||
* <element name="Event" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStateChangeEvent_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "GetStateChangesResponse_Type", propOrder = {
|
||||
"event"
|
||||
})
|
||||
public class GetStateChangesResponseType
|
||||
extends CommonSearchResponseType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Event")
|
||||
protected List<AbstractStateChangeEventType> event;
|
||||
|
||||
/**
|
||||
* Gets the value of the event 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 event property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getEvent().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link AbstractStateChangeEventType }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<AbstractStateChangeEventType> getEvent() {
|
||||
if (event == null) {
|
||||
event = new ArrayList<AbstractStateChangeEventType>();
|
||||
}
|
||||
return this.event;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,270 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_5_0.on1basis;
|
||||
|
||||
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;
|
||||
import at.vvo.omds.types.omds3Types.r1_5_0.common.GeschaeftsobjektArtType;
|
||||
import at.vvo.omds.types.omds3Types.r1_5_0.common.ObjektIdType;
|
||||
|
||||
|
||||
/**
|
||||
* Standard-Event einer Statusänderung
|
||||
*
|
||||
* <p>Java-Klasse für StateChangeEvent_Type complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="StateChangeEvent_Type">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStateChangeEvent_Type">
|
||||
* <sequence>
|
||||
* <element name="Objektart" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsobjektArt_Type"/>
|
||||
* <element name="ObjektId" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type"/>
|
||||
* <element name="Geschaeftsfallnummer" type="{urn:omds3CommonServiceTypes-1-1-0}ObjektId_Type" minOccurs="0"/>
|
||||
* <element name="GeschaeftsfallArt" type="{urn:omds3CommonServiceTypes-1-1-0}GeschaeftsfallArt_Type" minOccurs="0"/>
|
||||
* <element name="Aenderungsdatum" type="{urn:omds20}Datum-Zeit"/>
|
||||
* <element name="StatusGueltigAbDatum" type="{urn:omds20}Datum-Zeit"/>
|
||||
* <element name="BisherigerStatus" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStatusGeschaeftsfall_Type" minOccurs="0"/>
|
||||
* <element name="NeuerStatus" type="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStatusGeschaeftsfall_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "StateChangeEvent_Type", propOrder = {
|
||||
"objektart",
|
||||
"objektId",
|
||||
"geschaeftsfallnummer",
|
||||
"geschaeftsfallArt",
|
||||
"aenderungsdatum",
|
||||
"statusGueltigAbDatum",
|
||||
"bisherigerStatus",
|
||||
"neuerStatus"
|
||||
})
|
||||
public class StateChangeEventType
|
||||
extends AbstractStateChangeEventType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Objektart", required = true)
|
||||
@XmlSchemaType(name = "string")
|
||||
protected GeschaeftsobjektArtType objektart;
|
||||
@XmlElement(name = "ObjektId", required = true)
|
||||
protected ObjektIdType objektId;
|
||||
@XmlElement(name = "Geschaeftsfallnummer")
|
||||
protected ObjektIdType geschaeftsfallnummer;
|
||||
@XmlElement(name = "GeschaeftsfallArt")
|
||||
@XmlSchemaType(name = "anySimpleType")
|
||||
protected String geschaeftsfallArt;
|
||||
@XmlElement(name = "Aenderungsdatum", required = true)
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar aenderungsdatum;
|
||||
@XmlElement(name = "StatusGueltigAbDatum", required = true)
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar statusGueltigAbDatum;
|
||||
@XmlElement(name = "BisherigerStatus")
|
||||
protected AbstractStatusGeschaeftsfallType bisherigerStatus;
|
||||
@XmlElement(name = "NeuerStatus", required = true)
|
||||
protected AbstractStatusGeschaeftsfallType neuerStatus;
|
||||
|
||||
/**
|
||||
* Ruft den Wert der objektart-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link GeschaeftsobjektArtType }
|
||||
*
|
||||
*/
|
||||
public GeschaeftsobjektArtType getObjektart() {
|
||||
return objektart;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der objektart-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link GeschaeftsobjektArtType }
|
||||
*
|
||||
*/
|
||||
public void setObjektart(GeschaeftsobjektArtType value) {
|
||||
this.objektart = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* 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 geschaeftsfallnummer-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ObjektIdType }
|
||||
*
|
||||
*/
|
||||
public ObjektIdType getGeschaeftsfallnummer() {
|
||||
return geschaeftsfallnummer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der geschaeftsfallnummer-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ObjektIdType }
|
||||
*
|
||||
*/
|
||||
public void setGeschaeftsfallnummer(ObjektIdType value) {
|
||||
this.geschaeftsfallnummer = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der geschaeftsfallArt-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getGeschaeftsfallArt() {
|
||||
return geschaeftsfallArt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der geschaeftsfallArt-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setGeschaeftsfallArt(String value) {
|
||||
this.geschaeftsfallArt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der aenderungsdatum-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getAenderungsdatum() {
|
||||
return aenderungsdatum;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der aenderungsdatum-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setAenderungsdatum(XMLGregorianCalendar value) {
|
||||
this.aenderungsdatum = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der statusGueltigAbDatum-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getStatusGueltigAbDatum() {
|
||||
return statusGueltigAbDatum;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der statusGueltigAbDatum-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setStatusGueltigAbDatum(XMLGregorianCalendar value) {
|
||||
this.statusGueltigAbDatum = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der bisherigerStatus-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link AbstractStatusGeschaeftsfallType }
|
||||
*
|
||||
*/
|
||||
public AbstractStatusGeschaeftsfallType getBisherigerStatus() {
|
||||
return bisherigerStatus;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der bisherigerStatus-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link AbstractStatusGeschaeftsfallType }
|
||||
*
|
||||
*/
|
||||
public void setBisherigerStatus(AbstractStatusGeschaeftsfallType value) {
|
||||
this.bisherigerStatus = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der neuerStatus-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link AbstractStatusGeschaeftsfallType }
|
||||
*
|
||||
*/
|
||||
public AbstractStatusGeschaeftsfallType getNeuerStatus() {
|
||||
return neuerStatus;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der neuerStatus-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link AbstractStatusGeschaeftsfallType }
|
||||
*
|
||||
*/
|
||||
public void setNeuerStatus(AbstractStatusGeschaeftsfallType value) {
|
||||
this.neuerStatus = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,58 +0,0 @@
|
||||
|
||||
package at.vvo.omds.types.omds3Types.r1_5_0.on1basis;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* Status eines Antrags
|
||||
*
|
||||
* <p>Java-Klasse für StatusAntragsGeschaeftsfall complex type.
|
||||
*
|
||||
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="StatusAntragsGeschaeftsfall">
|
||||
* <complexContent>
|
||||
* <extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on1basisfunktionen}AbstractStatusGeschaeftsfall_Type">
|
||||
* <sequence>
|
||||
* <element name="Antragstatus" type="{urn:omds3CommonServiceTypes-1-1-0}SubmitApplicationStatus_Type"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "StatusAntragsGeschaeftsfall", propOrder = {
|
||||
"antragstatus"
|
||||
})
|
||||
public class StatusAntragsGeschaeftsfall
|
||||
extends AbstractStatusGeschaeftsfallType
|
||||
{
|
||||
|
||||
@XmlElement(name = "Antragstatus")
|
||||
protected int antragstatus;
|
||||
|
||||
/**
|
||||
* 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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -6,7 +6,6 @@ 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.omds3Types.r1_5_0.common.ProduktGenerischType;
|
||||
import at.vvo.omds.types.omds3Types.r1_5_0.common.VerkaufsproduktGenerischType;
|
||||
@@ -28,7 +27,6 @@ import at.vvo.omds.types.omds3Types.r1_5_0.common.VersichertesInteresseType;
|
||||
* <element name="Produkte" type="{urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.sachprivat}ProduktSachPrivat_Type" maxOccurs="unbounded"/>
|
||||
* <element name="Zusatzprodukte" type="{urn:omds3CommonServiceTypes-1-1-0}ProduktGenerisch_Type" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="VersicherteObjekte" type="{urn:omds3CommonServiceTypes-1-1-0}VersichertesInteresse_Type" maxOccurs="unbounded"/>
|
||||
* <element name="RefSicherstellungLfnr" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
@@ -41,8 +39,7 @@ import at.vvo.omds.types.omds3Types.r1_5_0.common.VersichertesInteresseType;
|
||||
@XmlType(name = "VerkaufsproduktSachPrivat_Type", propOrder = {
|
||||
"produkte",
|
||||
"zusatzprodukte",
|
||||
"versicherteObjekte",
|
||||
"refSicherstellungLfnr"
|
||||
"versicherteObjekte"
|
||||
})
|
||||
public class VerkaufsproduktSachPrivatType
|
||||
extends VerkaufsproduktGenerischType
|
||||
@@ -54,9 +51,6 @@ public class VerkaufsproduktSachPrivatType
|
||||
protected List<ProduktGenerischType> zusatzprodukte;
|
||||
@XmlElement(name = "VersicherteObjekte", required = true)
|
||||
protected List<VersichertesInteresseType> versicherteObjekte;
|
||||
@XmlElement(name = "RefSicherstellungLfnr")
|
||||
@XmlSchemaType(name = "unsignedShort")
|
||||
protected Integer refSicherstellungLfnr;
|
||||
|
||||
/**
|
||||
* Gets the value of the produkte property.
|
||||
@@ -145,28 +139,4 @@ public class VerkaufsproduktSachPrivatType
|
||||
return this.versicherteObjekte;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ruft den Wert der refSicherstellungLfnr-Eigenschaft ab.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public Integer getRefSicherstellungLfnr() {
|
||||
return refSicherstellungLfnr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legt den Wert der refSicherstellungLfnr-Eigenschaft fest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public void setRefSicherstellungLfnr(Integer value) {
|
||||
this.refSicherstellungLfnr = value;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@ import javax.xml.ws.Service;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 3.2.0
|
||||
* 2020-07-12T18:10:49.252+02:00
|
||||
* 2020-07-12T21:05:50.400+02:00
|
||||
* Generated source version: 3.2.0
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -11,12 +11,12 @@ import javax.jws.WebMethod;
|
||||
import javax.jws.WebParam;
|
||||
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;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 3.2.0
|
||||
* 2020-07-12T18:10:49.205+02:00
|
||||
* 2020-07-12T21:05:50.340+02:00
|
||||
* Generated source version: 3.2.0
|
||||
*
|
||||
*/
|
||||
@@ -27,7 +27,7 @@ import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
targetNamespace = "urn:omds3Services-1-4-0",
|
||||
wsdlLocation = "file:/C:/Users/Jens/git/omdsservicedefinitions/OMDSServiceDefinition/src/main/resources/def/r1_5_0/omds3Services.wsdl",
|
||||
endpointInterface = "at.vvo.omds.types.omds3Types.r1_5_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
|
||||
* 2020-07-12T18:10:49.236+02:00
|
||||
* 2020-07-12T21:05:50.377+02:00
|
||||
* Generated source version: 3.2.0
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -16,10 +16,11 @@ 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
|
||||
* 2020-07-12T18:10:49.080+02:00
|
||||
* 2020-07-12T21:05:50.224+02:00
|
||||
* Generated source version: 3.2.0
|
||||
*
|
||||
*/
|
||||
@@ -44,9 +45,11 @@ public final class OmdsServicePortType_OmdsServicePort_Client {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME);
|
||||
OmdsServicePortType port = ss.getOmdsServicePort();
|
||||
OmdsServicePortType port = ss.getOmdsServicePort(new MTOMFeature(1024));
|
||||
// OmdsService ss = new OmdsService(wsdlURL, SERVICE_NAME);
|
||||
// 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
|
||||
* 2020-07-12T18:10:49.189+02:00
|
||||
* 2020-07-12T21:05:50.332+02:00
|
||||
* Generated source version: 3.2.0
|
||||
*/
|
||||
|
||||
|
||||
Reference in New Issue
Block a user