Keine benannten BOA-Typen mehr in Rechtsschutz, dafür anonyme Typen direkt in den Elementen.

This commit is contained in:
2020-11-17 17:09:12 +01:00
parent 6873a8e6f6
commit 422d684a7d
22 changed files with 299 additions and 353 deletions

View File

@@ -42,10 +42,10 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.SubmitApplicationReq
}) })
@XmlSeeAlso({ @XmlSeeAlso({
FetchPolicyRequestType.class, FetchPolicyRequestType.class,
CalculateRequestType.class, SubmitApplicationRequestType.class,
CreateOfferRequestType.class,
CreateApplicationRequestType.class, CreateApplicationRequestType.class,
SubmitApplicationRequestType.class CreateOfferRequestType.class,
CalculateRequestType.class
}) })
public abstract class CommonProcessRequestType public abstract class CommonProcessRequestType
extends CommonRequestType extends CommonRequestType

View File

@@ -41,11 +41,11 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.SubmitApplicationRes
"aenderungsgrund" "aenderungsgrund"
}) })
@XmlSeeAlso({ @XmlSeeAlso({
CalculateResponseType.class, FetchPolicyResponseType.class,
CreateOfferResponseType.class,
CreateApplicationResponseType.class,
SubmitApplicationResponseType.class, SubmitApplicationResponseType.class,
FetchPolicyResponseType.class CreateApplicationResponseType.class,
CreateOfferResponseType.class,
CalculateResponseType.class
}) })
public abstract class CommonProcessResponseType public abstract class CommonProcessResponseType
extends CommonResponseType extends CommonResponseType

View File

@@ -68,8 +68,8 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on7schaden.SubmitClaimResponseType;
SubmitClaimResponseType.class, SubmitClaimResponseType.class,
GetClaimResponseType.class, GetClaimResponseType.class,
FinderResponseType.class, FinderResponseType.class,
CommonProcessResponseType.class, ChangeCommunicationObjectResponseType.class,
ChangeCommunicationObjectResponseType.class CommonProcessResponseType.class
}) })
public abstract class CommonResponseType { public abstract class CommonResponseType {

View File

@@ -54,19 +54,11 @@ public class ObjectFactory {
} }
/** /**
* Create an instance of {@link ResponseStatusType } * Create an instance of {@link TechnicalKeyValueType }
* *
*/ */
public ResponseStatusType createResponseStatusType() { public TechnicalKeyValueType createTechnicalKeyValueType() {
return new ResponseStatusType(); return new TechnicalKeyValueType();
}
/**
* Create an instance of {@link PersonType }
*
*/
public PersonType createPersonType() {
return new PersonType();
} }
/** /**
@@ -77,6 +69,38 @@ public class ObjectFactory {
return new ObjektIdType(); return new ObjektIdType();
} }
/**
* Create an instance of {@link ResponseStatusType }
*
*/
public ResponseStatusType createResponseStatusType() {
return new ResponseStatusType();
}
/**
* Create an instance of {@link DokumentInfoType }
*
*/
public DokumentInfoType createDokumentInfoType() {
return new DokumentInfoType();
}
/**
* Create an instance of {@link DateianhangType }
*
*/
public DateianhangType createDateianhangType() {
return new DateianhangType();
}
/**
* Create an instance of {@link PersonType }
*
*/
public PersonType createPersonType() {
return new PersonType();
}
/** /**
* Create an instance of {@link ServiceFault } * Create an instance of {@link ServiceFault }
* *
@@ -125,14 +149,6 @@ public class ObjectFactory {
return new LegitimationType(); return new LegitimationType();
} }
/**
* Create an instance of {@link DateianhangType }
*
*/
public DateianhangType createDateianhangType() {
return new DateianhangType();
}
/** /**
* Create an instance of {@link KontierungType } * Create an instance of {@link KontierungType }
* *
@@ -173,14 +189,6 @@ public class ObjectFactory {
return new VersicherungssteuerType(); return new VersicherungssteuerType();
} }
/**
* Create an instance of {@link TechnicalKeyValueType }
*
*/
public TechnicalKeyValueType createTechnicalKeyValueType() {
return new TechnicalKeyValueType();
}
/** /**
* Create an instance of {@link VertragspersonType } * Create an instance of {@link VertragspersonType }
* *
@@ -341,14 +349,6 @@ public class ObjectFactory {
return new ErsatzpolizzenType(); return new ErsatzpolizzenType();
} }
/**
* Create an instance of {@link DokumentInfoType }
*
*/
public DokumentInfoType createDokumentInfoType() {
return new DokumentInfoType();
}
/** /**
* Create an instance of {@link ZahlungsdatenType } * Create an instance of {@link ZahlungsdatenType }
* *

View File

@@ -7,7 +7,7 @@ import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.leben.CalculateLebenRequestType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.leben.CalculateLebenRequestType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CalculateRechtsschutzRequestType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CalculateRechtsschutzRequest;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CalculateSachPrivatRequestType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.CalculateUnfallRequestType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.CalculateUnfallRequestType;
@@ -39,9 +39,9 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.CalculateUnfallReque
}) })
@XmlSeeAlso({ @XmlSeeAlso({
CalculateSachPrivatRequestType.class, CalculateSachPrivatRequestType.class,
CalculateRechtsschutzRequestType.class,
CalculateLebenRequestType.class, CalculateLebenRequestType.class,
CalculateUnfallRequestType.class CalculateUnfallRequestType.class,
CalculateRechtsschutzRequest.class
}) })
public abstract class CalculateRequestGenType public abstract class CalculateRequestGenType
extends CalculateRequestType extends CalculateRequestType

View File

@@ -6,7 +6,7 @@ import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.leben.CalculateLebenResponseType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.leben.CalculateLebenResponseType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CalculateRechtsschutzResponseType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CalculateRechtsschutzResponse;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CalculateSachPrivatResponseType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.CalculateUnfallResponseType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.CalculateUnfallResponseType;
@@ -33,9 +33,9 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.CalculateUnfallRespo
@XmlType(name = "CalculateResponseGen_Type") @XmlType(name = "CalculateResponseGen_Type")
@XmlSeeAlso({ @XmlSeeAlso({
CalculateSachPrivatResponseType.class, CalculateSachPrivatResponseType.class,
CalculateRechtsschutzResponseType.class,
CalculateLebenResponseType.class, CalculateLebenResponseType.class,
CalculateUnfallResponseType.class CalculateUnfallResponseType.class,
CalculateRechtsschutzResponse.class
}) })
public abstract class CalculateResponseGenType public abstract class CalculateResponseGenType
extends CalculateResponseType extends CalculateResponseType

View File

@@ -7,7 +7,7 @@ import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.leben.CreateApplicationLebenRequestType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.leben.CreateApplicationLebenRequestType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateApplicationRechtsschutzRequestType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateApplicationRechtsschutzRequest;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateApplicationSachPrivatRequestType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.CreateApplicationUnfallRequestType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.CreateApplicationUnfallRequestType;
@@ -39,9 +39,9 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.CreateApplicationUnf
}) })
@XmlSeeAlso({ @XmlSeeAlso({
CreateApplicationSachPrivatRequestType.class, CreateApplicationSachPrivatRequestType.class,
CreateApplicationRechtsschutzRequestType.class,
CreateApplicationLebenRequestType.class, CreateApplicationLebenRequestType.class,
CreateApplicationUnfallRequestType.class CreateApplicationUnfallRequestType.class,
CreateApplicationRechtsschutzRequest.class
}) })
public abstract class CreateApplicationRequestGenType public abstract class CreateApplicationRequestGenType
extends CreateApplicationRequestType extends CreateApplicationRequestType

View File

@@ -6,7 +6,7 @@ import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.leben.CreateApplicationLebenResponseType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.leben.CreateApplicationLebenResponseType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateApplicationRechtsschutzResponseType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateApplicationRechtsschutzResponse;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateApplicationSachPrivatResponseType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.CreateApplicationUnfallResponseType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.CreateApplicationUnfallResponseType;
@@ -33,9 +33,9 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.CreateApplicationUnf
@XmlType(name = "CreateApplicationResponseGen_Type") @XmlType(name = "CreateApplicationResponseGen_Type")
@XmlSeeAlso({ @XmlSeeAlso({
CreateApplicationSachPrivatResponseType.class, CreateApplicationSachPrivatResponseType.class,
CreateApplicationRechtsschutzResponseType.class,
CreateApplicationLebenResponseType.class, CreateApplicationLebenResponseType.class,
CreateApplicationUnfallResponseType.class CreateApplicationUnfallResponseType.class,
CreateApplicationRechtsschutzResponse.class
}) })
public abstract class CreateApplicationResponseGenType public abstract class CreateApplicationResponseGenType
extends CreateApplicationResponseType extends CreateApplicationResponseType

View File

@@ -7,7 +7,7 @@ import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.leben.CreateOfferLebenRequestType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.leben.CreateOfferLebenRequestType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateOfferRechtsschutzRequestType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateOfferRechtsschutzRequest;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateOfferSachPrivatRequestType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.CreateOfferUnfallRequestType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.CreateOfferUnfallRequestType;
@@ -39,9 +39,9 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.CreateOfferUnfallReq
}) })
@XmlSeeAlso({ @XmlSeeAlso({
CreateOfferSachPrivatRequestType.class, CreateOfferSachPrivatRequestType.class,
CreateOfferRechtsschutzRequestType.class,
CreateOfferLebenRequestType.class, CreateOfferLebenRequestType.class,
CreateOfferUnfallRequestType.class CreateOfferUnfallRequestType.class,
CreateOfferRechtsschutzRequest.class
}) })
public abstract class CreateOfferRequestGenType public abstract class CreateOfferRequestGenType
extends CreateOfferRequestType extends CreateOfferRequestType

View File

@@ -6,7 +6,7 @@ import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.leben.CreateOfferLebenResponseType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.leben.CreateOfferLebenResponseType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateOfferRechtsschutzResponseType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.CreateOfferRechtsschutzResponse;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.CreateOfferSachPrivatResponseType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.CreateOfferUnfallResponseType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.CreateOfferUnfallResponseType;
@@ -33,9 +33,9 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.CreateOfferUnfallRes
@XmlType(name = "CreateOfferResponseGen_Type") @XmlType(name = "CreateOfferResponseGen_Type")
@XmlSeeAlso({ @XmlSeeAlso({
CreateOfferSachPrivatResponseType.class, CreateOfferSachPrivatResponseType.class,
CreateOfferRechtsschutzResponseType.class,
CreateOfferLebenResponseType.class, CreateOfferLebenResponseType.class,
CreateOfferUnfallResponseType.class CreateOfferUnfallResponseType.class,
CreateOfferRechtsschutzResponse.class
}) })
public abstract class CreateOfferResponseGenType public abstract class CreateOfferResponseGenType
extends CreateOfferResponseType extends CreateOfferResponseType

View File

@@ -7,7 +7,7 @@ import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.leben.SubmitApplicationLebenRequestType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.leben.SubmitApplicationLebenRequestType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SubmitApplicationRechtsschutzRequestType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SubmitApplicationRechtsschutzRequest;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatRequestType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.SubmitApplicationUnfallRequestType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.SubmitApplicationUnfallRequestType;
@@ -39,9 +39,9 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.SubmitApplicationUnf
}) })
@XmlSeeAlso({ @XmlSeeAlso({
SubmitApplicationSachPrivatRequestType.class, SubmitApplicationSachPrivatRequestType.class,
SubmitApplicationRechtsschutzRequestType.class,
SubmitApplicationLebenRequestType.class, SubmitApplicationLebenRequestType.class,
SubmitApplicationUnfallRequestType.class SubmitApplicationUnfallRequestType.class,
SubmitApplicationRechtsschutzRequest.class
}) })
public abstract class SubmitApplicationRequestGenType public abstract class SubmitApplicationRequestGenType
extends SubmitApplicationRequestType extends SubmitApplicationRequestType

View File

@@ -6,7 +6,7 @@ import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.leben.SubmitApplicationLebenResponseType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.leben.SubmitApplicationLebenResponseType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SubmitApplicationRechtsschutzResponseType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs.SubmitApplicationRechtsschutzResponse;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.sachPrivat.SubmitApplicationSachPrivatResponseType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.SubmitApplicationUnfallResponseType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.SubmitApplicationUnfallResponseType;
@@ -33,9 +33,9 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.unfall.SubmitApplicationUnf
@XmlType(name = "SubmitApplicationResponseGen_Type") @XmlType(name = "SubmitApplicationResponseGen_Type")
@XmlSeeAlso({ @XmlSeeAlso({
SubmitApplicationSachPrivatResponseType.class, SubmitApplicationSachPrivatResponseType.class,
SubmitApplicationRechtsschutzResponseType.class,
SubmitApplicationLebenResponseType.class, SubmitApplicationLebenResponseType.class,
SubmitApplicationUnfallResponseType.class SubmitApplicationUnfallResponseType.class,
SubmitApplicationRechtsschutzResponse.class
}) })
public abstract class SubmitApplicationResponseGenType public abstract class SubmitApplicationResponseGenType
extends SubmitApplicationResponseType extends SubmitApplicationResponseType

View File

@@ -4,6 +4,7 @@ package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs;
import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CalculateRequestGenType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CalculateRequestGenType;
@@ -11,12 +12,12 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CalculateRequestGenT
/** /**
* Typ des Requestobjekts für eine Berechnung Rechtsschutz * Typ des Requestobjekts für eine Berechnung Rechtsschutz
* *
* <p>Java-Klasse für CalculateRechtsschutzRequest_Type complex type. * <p>Java-Klasse für anonymous complex type.
* *
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
* *
* <pre> * <pre>
* &lt;complexType name="CalculateRechtsschutzRequest_Type"&gt; * &lt;complexType&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type"&gt; * &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateRequestGen_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
@@ -30,10 +31,11 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CalculateRequestGenT
* *
*/ */
@XmlAccessorType(XmlAccessType.FIELD) @XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CalculateRechtsschutzRequest_Type", propOrder = { @XmlType(name = "", propOrder = {
"berechnungsanfrage" "berechnungsanfrage"
}) })
public class CalculateRechtsschutzRequestType @XmlRootElement(name = "CalculateRechtsschutzRequest")
public class CalculateRechtsschutzRequest
extends CalculateRequestGenType extends CalculateRequestGenType
{ {

View File

@@ -4,19 +4,18 @@ package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs;
import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CalculateResponseGenType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CalculateResponseGenType;
/** /**
* Typ des Responseobjekt bei der Rechtsschutz-Berechnung * <p>Java-Klasse für anonymous complex type.
*
* <p>Java-Klasse für CalculateRechtsschutzResponse_Type complex type.
* *
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
* *
* <pre> * <pre>
* &lt;complexType name="CalculateRechtsschutzResponse_Type"&gt; * &lt;complexType&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type"&gt; * &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CalculateResponseGen_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
@@ -30,10 +29,11 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CalculateResponseGen
* *
*/ */
@XmlAccessorType(XmlAccessType.FIELD) @XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CalculateRechtsschutzResponse_Type", propOrder = { @XmlType(name = "", propOrder = {
"berechnungsantwort" "berechnungsantwort"
}) })
public class CalculateRechtsschutzResponseType @XmlRootElement(name = "CalculateRechtsschutzResponse")
public class CalculateRechtsschutzResponse
extends CalculateResponseGenType extends CalculateResponseGenType
{ {

View File

@@ -4,19 +4,18 @@ package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs;
import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CreateApplicationRequestGenType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CreateApplicationRequestGenType;
/** /**
* Type des Requestobjekts für die Erstellung eines Rechtsschutzantrags * <p>Java-Klasse für anonymous complex type.
*
* <p>Java-Klasse für CreateApplicationRechtsschutzRequest_Type complex type.
* *
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
* *
* <pre> * <pre>
* &lt;complexType name="CreateApplicationRechtsschutzRequest_Type"&gt; * &lt;complexType&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type"&gt; * &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationRequestGen_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
@@ -30,10 +29,11 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CreateApplicationReq
* *
*/ */
@XmlAccessorType(XmlAccessType.FIELD) @XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CreateApplicationRechtsschutzRequest_Type", propOrder = { @XmlType(name = "", propOrder = {
"antragsanfrage" "antragsanfrage"
}) })
public class CreateApplicationRechtsschutzRequestType @XmlRootElement(name = "CreateApplicationRechtsschutzRequest")
public class CreateApplicationRechtsschutzRequest
extends CreateApplicationRequestGenType extends CreateApplicationRequestGenType
{ {

View File

@@ -4,19 +4,18 @@ package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs;
import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CreateApplicationResponseGenType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CreateApplicationResponseGenType;
/** /**
* Type des Responseobjekts bei der Erstellung eines Rechtsschutzantrags * <p>Java-Klasse r anonymous complex type.
*
* <p>Java-Klasse für CreateApplicationRechtsschutzResponse_Type complex type.
* *
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
* *
* <pre> * <pre>
* &lt;complexType name="CreateApplicationRechtsschutzResponse_Type"&gt; * &lt;complexType&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type"&gt; * &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateApplicationResponseGen_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
@@ -30,10 +29,11 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CreateApplicationRes
* *
*/ */
@XmlAccessorType(XmlAccessType.FIELD) @XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CreateApplicationRechtsschutzResponse_Type", propOrder = { @XmlType(name = "", propOrder = {
"antragsantwort" "antragsantwort"
}) })
public class CreateApplicationRechtsschutzResponseType @XmlRootElement(name = "CreateApplicationRechtsschutzResponse")
public class CreateApplicationRechtsschutzResponse
extends CreateApplicationResponseGenType extends CreateApplicationResponseGenType
{ {

View File

@@ -4,19 +4,18 @@ package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs;
import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CreateOfferRequestGenType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CreateOfferRequestGenType;
/** /**
* Typ des Requestobjekts für eine Erstellung eines Rechstsschutz-Offerts * <p>Java-Klasse für anonymous complex type.
*
* <p>Java-Klasse für CreateOfferRechtsschutzRequest_Type complex type.
* *
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
* *
* <pre> * <pre>
* &lt;complexType name="CreateOfferRechtsschutzRequest_Type"&gt; * &lt;complexType&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type"&gt; * &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferRequestGen_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
@@ -30,10 +29,11 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CreateOfferRequestGe
* *
*/ */
@XmlAccessorType(XmlAccessType.FIELD) @XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CreateOfferRechtsschutzRequest_Type", propOrder = { @XmlType(name = "", propOrder = {
"offertanfrage" "offertanfrage"
}) })
public class CreateOfferRechtsschutzRequestType @XmlRootElement(name = "CreateOfferRechtsschutzRequest")
public class CreateOfferRechtsschutzRequest
extends CreateOfferRequestGenType extends CreateOfferRequestGenType
{ {

View File

@@ -4,19 +4,18 @@ package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs;
import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CreateOfferResponseGenType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CreateOfferResponseGenType;
/** /**
* Type des Responseobjekts bei der Erstellung eines Rechtsschutz-Offerts * <p>Java-Klasse für anonymous complex type.
*
* <p>Java-Klasse für CreateOfferRechtsschutzResponse_Type complex type.
* *
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
* *
* <pre> * <pre>
* &lt;complexType name="CreateOfferRechtsschutzResponse_Type"&gt; * &lt;complexType&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type"&gt; * &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}CreateOfferResponseGen_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
@@ -30,10 +29,11 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.CreateOfferResponseG
* *
*/ */
@XmlAccessorType(XmlAccessType.FIELD) @XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CreateOfferRechtsschutzResponse_Type", propOrder = { @XmlType(name = "", propOrder = {
"offertantwort" "offertantwort"
}) })
public class CreateOfferRechtsschutzResponseType @XmlRootElement(name = "CreateOfferRechtsschutzResponse")
public class CreateOfferRechtsschutzResponse
extends CreateOfferResponseGenType extends CreateOfferResponseGenType
{ {

View File

@@ -1,10 +1,7 @@
package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs; package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlElementDecl;
import javax.xml.bind.annotation.XmlRegistry; import javax.xml.bind.annotation.XmlRegistry;
import javax.xml.namespace.QName;
/** /**
@@ -24,14 +21,6 @@ import javax.xml.namespace.QName;
@XmlRegistry @XmlRegistry
public class ObjectFactory { public class ObjectFactory {
private final static QName _CalculateRechtsschutzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", "CalculateRechtsschutzRequest");
private final static QName _CalculateRechtsschutzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", "CalculateRechtsschutzResponse");
private final static QName _CreateOfferRechtsschutzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", "CreateOfferRechtsschutzRequest");
private final static QName _CreateOfferRechtsschutzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", "CreateOfferRechtsschutzResponse");
private final static QName _CreateApplicationRechtsschutzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", "CreateApplicationRechtsschutzRequest");
private final static QName _CreateApplicationRechtsschutzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", "CreateApplicationRechtsschutzResponse");
private final static QName _SubmitApplicationRechtsschutzRequest_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", "SubmitApplicationRechtsschutzRequest");
private final static QName _SubmitApplicationRechtsschutzResponse_QNAME = new QName("urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", "SubmitApplicationRechtsschutzResponse");
/** /**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs
@@ -41,59 +30,91 @@ public class ObjectFactory {
} }
/** /**
* Create an instance of {@link CalculateRechtsschutzRequestType } * Create an instance of {@link CalculateRechtsschutzRequest }
* *
*/ */
public CalculateRechtsschutzRequestType createCalculateRechtsschutzRequestType() { public CalculateRechtsschutzRequest createCalculateRechtsschutzRequest() {
return new CalculateRechtsschutzRequestType(); return new CalculateRechtsschutzRequest();
} }
/** /**
* Create an instance of {@link CalculateRechtsschutzResponseType } * Create an instance of {@link SpezBerechnungRechtsschutzType }
* *
*/ */
public CalculateRechtsschutzResponseType createCalculateRechtsschutzResponseType() { public SpezBerechnungRechtsschutzType createSpezBerechnungRechtsschutzType() {
return new CalculateRechtsschutzResponseType(); return new SpezBerechnungRechtsschutzType();
} }
/** /**
* Create an instance of {@link CreateOfferRechtsschutzRequestType } * Create an instance of {@link CalculateRechtsschutzResponse }
* *
*/ */
public CreateOfferRechtsschutzRequestType createCreateOfferRechtsschutzRequestType() { public CalculateRechtsschutzResponse createCalculateRechtsschutzResponse() {
return new CreateOfferRechtsschutzRequestType(); return new CalculateRechtsschutzResponse();
} }
/** /**
* Create an instance of {@link CreateOfferRechtsschutzResponseType } * Create an instance of {@link CreateOfferRechtsschutzRequest }
* *
*/ */
public CreateOfferRechtsschutzResponseType createCreateOfferRechtsschutzResponseType() { public CreateOfferRechtsschutzRequest createCreateOfferRechtsschutzRequest() {
return new CreateOfferRechtsschutzResponseType(); return new CreateOfferRechtsschutzRequest();
} }
/** /**
* Create an instance of {@link CreateApplicationRechtsschutzRequestType } * Create an instance of {@link SpezOffertRechtsschutzType }
* *
*/ */
public CreateApplicationRechtsschutzRequestType createCreateApplicationRechtsschutzRequestType() { public SpezOffertRechtsschutzType createSpezOffertRechtsschutzType() {
return new CreateApplicationRechtsschutzRequestType(); return new SpezOffertRechtsschutzType();
} }
/** /**
* Create an instance of {@link CreateApplicationRechtsschutzResponseType } * Create an instance of {@link CreateOfferRechtsschutzResponse }
* *
*/ */
public CreateApplicationRechtsschutzResponseType createCreateApplicationRechtsschutzResponseType() { public CreateOfferRechtsschutzResponse createCreateOfferRechtsschutzResponse() {
return new CreateApplicationRechtsschutzResponseType(); return new CreateOfferRechtsschutzResponse();
} }
/** /**
* Create an instance of {@link SubmitApplicationRechtsschutzResponseType } * Create an instance of {@link CreateApplicationRechtsschutzRequest }
* *
*/ */
public SubmitApplicationRechtsschutzResponseType createSubmitApplicationRechtsschutzResponseType() { public CreateApplicationRechtsschutzRequest createCreateApplicationRechtsschutzRequest() {
return new SubmitApplicationRechtsschutzResponseType(); return new CreateApplicationRechtsschutzRequest();
}
/**
* Create an instance of {@link SpezAntragRechtsschutzType }
*
*/
public SpezAntragRechtsschutzType createSpezAntragRechtsschutzType() {
return new SpezAntragRechtsschutzType();
}
/**
* Create an instance of {@link CreateApplicationRechtsschutzResponse }
*
*/
public CreateApplicationRechtsschutzResponse createCreateApplicationRechtsschutzResponse() {
return new CreateApplicationRechtsschutzResponse();
}
/**
* Create an instance of {@link SubmitApplicationRechtsschutzRequest }
*
*/
public SubmitApplicationRechtsschutzRequest createSubmitApplicationRechtsschutzRequest() {
return new SubmitApplicationRechtsschutzRequest();
}
/**
* Create an instance of {@link SubmitApplicationRechtsschutzResponse }
*
*/
public SubmitApplicationRechtsschutzResponse createSubmitApplicationRechtsschutzResponse() {
return new SubmitApplicationRechtsschutzResponse();
} }
/** /**
@@ -120,108 +141,4 @@ public class ObjectFactory {
return new ElementarproduktRechtsschutzType(); return new ElementarproduktRechtsschutzType();
} }
/**
* Create an instance of {@link SpezBerechnungRechtsschutzType }
*
*/
public SpezBerechnungRechtsschutzType createSpezBerechnungRechtsschutzType() {
return new SpezBerechnungRechtsschutzType();
}
/**
* Create an instance of {@link SpezOffertRechtsschutzType }
*
*/
public SpezOffertRechtsschutzType createSpezOffertRechtsschutzType() {
return new SpezOffertRechtsschutzType();
}
/**
* Create an instance of {@link SpezAntragRechtsschutzType }
*
*/
public SpezAntragRechtsschutzType createSpezAntragRechtsschutzType() {
return new SpezAntragRechtsschutzType();
}
/**
* Create an instance of {@link SubmitApplicationRechtsschutzRequestType }
*
*/
public SubmitApplicationRechtsschutzRequestType createSubmitApplicationRechtsschutzRequestType() {
return new SubmitApplicationRechtsschutzRequestType();
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link CalculateRechtsschutzRequestType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", name = "CalculateRechtsschutzRequest")
public JAXBElement<CalculateRechtsschutzRequestType> createCalculateRechtsschutzRequest(CalculateRechtsschutzRequestType value) {
return new JAXBElement<CalculateRechtsschutzRequestType>(_CalculateRechtsschutzRequest_QNAME, CalculateRechtsschutzRequestType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link CalculateRechtsschutzResponseType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", name = "CalculateRechtsschutzResponse")
public JAXBElement<CalculateRechtsschutzResponseType> createCalculateRechtsschutzResponse(CalculateRechtsschutzResponseType value) {
return new JAXBElement<CalculateRechtsschutzResponseType>(_CalculateRechtsschutzResponse_QNAME, CalculateRechtsschutzResponseType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferRechtsschutzRequestType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", name = "CreateOfferRechtsschutzRequest")
public JAXBElement<CreateOfferRechtsschutzRequestType> createCreateOfferRechtsschutzRequest(CreateOfferRechtsschutzRequestType value) {
return new JAXBElement<CreateOfferRechtsschutzRequestType>(_CreateOfferRechtsschutzRequest_QNAME, CreateOfferRechtsschutzRequestType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link CreateOfferRechtsschutzResponseType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", name = "CreateOfferRechtsschutzResponse")
public JAXBElement<CreateOfferRechtsschutzResponseType> createCreateOfferRechtsschutzResponse(CreateOfferRechtsschutzResponseType value) {
return new JAXBElement<CreateOfferRechtsschutzResponseType>(_CreateOfferRechtsschutzResponse_QNAME, CreateOfferRechtsschutzResponseType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationRechtsschutzRequestType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", name = "CreateApplicationRechtsschutzRequest")
public JAXBElement<CreateApplicationRechtsschutzRequestType> createCreateApplicationRechtsschutzRequest(CreateApplicationRechtsschutzRequestType value) {
return new JAXBElement<CreateApplicationRechtsschutzRequestType>(_CreateApplicationRechtsschutzRequest_QNAME, CreateApplicationRechtsschutzRequestType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link CreateApplicationRechtsschutzResponseType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", name = "CreateApplicationRechtsschutzResponse")
public JAXBElement<CreateApplicationRechtsschutzResponseType> createCreateApplicationRechtsschutzResponse(CreateApplicationRechtsschutzResponseType value) {
return new JAXBElement<CreateApplicationRechtsschutzResponseType>(_CreateApplicationRechtsschutzResponse_QNAME, CreateApplicationRechtsschutzResponseType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationRechtsschutzResponseType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", name = "SubmitApplicationRechtsschutzRequest")
public JAXBElement<SubmitApplicationRechtsschutzResponseType> createSubmitApplicationRechtsschutzRequest(SubmitApplicationRechtsschutzResponseType value) {
return new JAXBElement<SubmitApplicationRechtsschutzResponseType>(_SubmitApplicationRechtsschutzRequest_QNAME, SubmitApplicationRechtsschutzResponseType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link SubmitApplicationRechtsschutzResponseType }{@code >}}
*
*/
@XmlElementDecl(namespace = "urn:at.vvo.omds.types.omds3types.v1-4-0.on2antrag.rs", name = "SubmitApplicationRechtsschutzResponse")
public JAXBElement<SubmitApplicationRechtsschutzResponseType> createSubmitApplicationRechtsschutzResponse(SubmitApplicationRechtsschutzResponseType value) {
return new JAXBElement<SubmitApplicationRechtsschutzResponseType>(_SubmitApplicationRechtsschutzResponse_QNAME, SubmitApplicationRechtsschutzResponseType.class, null, value);
}
} }

View File

@@ -4,6 +4,7 @@ package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs;
import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.SubmitApplicationRequestGenType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.SubmitApplicationRequestGenType;
@@ -11,12 +12,12 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.SubmitApplicationReq
/** /**
* Type des Requests, um den Antrag einzureichen * Type des Requests, um den Antrag einzureichen
* *
* <p>Java-Klasse für SubmitApplicationRechtsschutzRequest_Type complex type. * <p>Java-Klasse für anonymous complex type.
* *
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
* *
* <pre> * <pre>
* &lt;complexType name="SubmitApplicationRechtsschutzRequest_Type"&gt; * &lt;complexType&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type"&gt; * &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationRequestGen_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
@@ -30,10 +31,11 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.SubmitApplicationReq
* *
*/ */
@XmlAccessorType(XmlAccessType.FIELD) @XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SubmitApplicationRechtsschutzRequest_Type", propOrder = { @XmlType(name = "", propOrder = {
"antragsanfrage" "antragsanfrage"
}) })
public class SubmitApplicationRechtsschutzRequestType @XmlRootElement(name = "SubmitApplicationRechtsschutzRequest")
public class SubmitApplicationRechtsschutzRequest
extends SubmitApplicationRequestGenType extends SubmitApplicationRequestGenType
{ {

View File

@@ -4,19 +4,18 @@ package at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.rs;
import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlType;
import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.SubmitApplicationResponseGenType; import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.SubmitApplicationResponseGenType;
/** /**
* Type des Response beim Eineichen des Antrags * <p>Java-Klasse für anonymous complex type.
*
* <p>Java-Klasse für SubmitApplicationRechtsschutzResponse_Type complex type.
* *
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
* *
* <pre> * <pre>
* &lt;complexType name="SubmitApplicationRechtsschutzResponse_Type"&gt; * &lt;complexType&gt;
* &lt;complexContent&gt; * &lt;complexContent&gt;
* &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type"&gt; * &lt;extension base="{urn:at.vvo.omds.types.omds3types.v1-3-0.on2antrag.common}SubmitApplicationResponseGen_Type"&gt;
* &lt;sequence&gt; * &lt;sequence&gt;
@@ -30,10 +29,11 @@ import at.vvo.omds.types.omds3Types.r1_6_0.on2antrag.common.SubmitApplicationRes
* *
*/ */
@XmlAccessorType(XmlAccessType.FIELD) @XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SubmitApplicationRechtsschutzResponse_Type", propOrder = { @XmlType(name = "", propOrder = {
"antragsantwort" "antragsantwort"
}) })
public class SubmitApplicationRechtsschutzResponseType @XmlRootElement(name = "SubmitApplicationRechtsschutzResponse")
public class SubmitApplicationRechtsschutzResponse
extends SubmitApplicationResponseGenType extends SubmitApplicationResponseGenType
{ {

View File

@@ -125,140 +125,165 @@
</xsd:complexContent> </xsd:complexContent>
</xsd:complexType> </xsd:complexType>
<!-- Typen und Elemente für die Methoden --> <!-- Typen und Elemente für die Methoden -->
<xsd:complexType name="CalculateRechtsschutzRequest_Type"> <xsd:element name="CalculateRechtsschutzRequest">
<xsd:annotation>
<xsd:documentation>Typ des Requestobjekts für eine Berechnung Rechtsschutz</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="ac:CalculateRequestGen_Type">
<xsd:sequence>
<xsd:element name="Berechnungsanfrage" type="SpezBerechnungRechtsschutz_Type"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="CalculateRechtsschutzResponse_Type">
<xsd:annotation>
<xsd:documentation>Typ des Responseobjekt bei der Rechtsschutz-Berechnung</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="ac:CalculateResponseGen_Type">
<xsd:sequence>
<xsd:element name="Berechnungsantwort" type="SpezBerechnungRechtsschutz_Type"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="CreateOfferRechtsschutzRequest_Type">
<xsd:annotation>
<xsd:documentation>Typ des Requestobjekts für eine Erstellung eines Rechstsschutz-Offerts</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="ac:CreateOfferRequestGen_Type">
<xsd:sequence>
<xsd:element name="Offertanfrage" type="SpezOffertRechtsschutz_Type"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="CreateOfferRechtsschutzResponse_Type">
<xsd:annotation>
<xsd:documentation>Type des Responseobjekts bei der Erstellung eines Rechtsschutz-Offerts</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="ac:CreateOfferResponseGen_Type">
<xsd:sequence>
<xsd:element name="Offertantwort" type="SpezOffertRechtsschutz_Type"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="CreateApplicationRechtsschutzRequest_Type">
<xsd:annotation>
<xsd:documentation>Type des Requestobjekts für die Erstellung eines Rechtsschutzantrags</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="ac:CreateApplicationRequestGen_Type">
<xsd:sequence>
<xsd:element name="Antragsanfrage" type="SpezAntragRechtsschutz_Type"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="CreateApplicationRechtsschutzResponse_Type">
<xsd:annotation>
<xsd:documentation>Type des Responseobjekts bei der Erstellung eines Rechtsschutzantrags</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="ac:CreateApplicationResponseGen_Type">
<xsd:sequence>
<xsd:element name="Antragsantwort" type="SpezAntragRechtsschutz_Type"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="SubmitApplicationRechtsschutzRequest_Type">
<xsd:annotation>
<xsd:documentation>Type des Requests, um den Antrag einzureichen</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="ac:SubmitApplicationRequestGen_Type">
<xsd:sequence>
<xsd:element name="Antragsanfrage" type="SpezAntragRechtsschutz_Type"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="SubmitApplicationRechtsschutzResponse_Type">
<xsd:annotation>
<xsd:documentation>Type des Response beim Eineichen des Antrags</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="ac:SubmitApplicationResponseGen_Type">
<xsd:sequence>
<xsd:element name="Antragsantwort" type="SpezAntragRechtsschutz_Type"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:element name="CalculateRechtsschutzRequest" type="CalculateRechtsschutzRequest_Type">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Requestobjekt für eine Berechnung Rechtsschutz</xsd:documentation> <xsd:documentation>Requestobjekt für eine Berechnung Rechtsschutz</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:complexType>
<xsd:annotation>
<xsd:documentation>Typ des Requestobjekts für eine Berechnung Rechtsschutz</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="ac:CalculateRequestGen_Type">
<xsd:sequence>
<xsd:element name="Berechnungsanfrage" type="SpezBerechnungRechtsschutz_Type"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
</xsd:element> </xsd:element>
<xsd:element name="CalculateRechtsschutzResponse" type="CalculateRechtsschutzResponse_Type">
<xsd:element name="CalculateRechtsschutzResponse">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Responseobjekt bei der Rechtsschutz-Berechnung</xsd:documentation> <xsd:documentation>Responseobjekt bei der Rechtsschutz-Berechnung</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:complexType>
<xsd:complexContent>
<xsd:extension base="ac:CalculateResponseGen_Type">
<xsd:sequence>
<xsd:element name="Berechnungsantwort" type="SpezBerechnungRechtsschutz_Type"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
</xsd:element> </xsd:element>
<xsd:element name="CreateOfferRechtsschutzRequest" type="CreateOfferRechtsschutzRequest_Type">
<xsd:element name="CreateOfferRechtsschutzRequest">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Requestobjekt für eine Erstellung eines Rechstsschutz-Offerts</xsd:documentation> <xsd:documentation>Requestobjekt für eine Erstellung eines Rechstsschutz-Offerts</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:complexType>
<xsd:complexContent>
<xsd:extension base="ac:CreateOfferRequestGen_Type">
<xsd:sequence>
<xsd:element name="Offertanfrage" type="SpezOffertRechtsschutz_Type"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
</xsd:element> </xsd:element>
<xsd:element name="CreateOfferRechtsschutzResponse" type="CreateOfferRechtsschutzResponse_Type">
<xsd:element name="CreateOfferRechtsschutzResponse">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Responseobjekt bei der Erstellung eines Rechtsschutz-Offerts</xsd:documentation> <xsd:documentation>Responseobjekt bei der Erstellung eines Rechtsschutz-Offerts</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:complexType>
<xsd:complexContent>
<xsd:extension base="ac:CreateOfferResponseGen_Type">
<xsd:sequence>
<xsd:element name="Offertantwort" type="SpezOffertRechtsschutz_Type"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
</xsd:element> </xsd:element>
<xsd:element name="CreateApplicationRechtsschutzRequest" type="CreateApplicationRechtsschutzRequest_Type"> <xsd:element name="CreateApplicationRechtsschutzRequest">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Requestobjekt für die Erstellung eines Rechtsschutzantrags</xsd:documentation> <xsd:documentation>Requestobjekt für die Erstellung eines Rechtsschutzantrags</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:complexType>
<xsd:complexContent>
<xsd:extension base="ac:CreateApplicationRequestGen_Type">
<xsd:sequence>
<xsd:element name="Antragsanfrage" type="SpezAntragRechtsschutz_Type"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
</xsd:element> </xsd:element>
<xsd:element name="CreateApplicationRechtsschutzResponse" type="CreateApplicationRechtsschutzResponse_Type"> <xsd:element name="CreateApplicationRechtsschutzResponse">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Responseobjekt bei der Erstellung eines Rechtsschutzantrags</xsd:documentation> <xsd:documentation>Responseobjekt bei der Erstellung eines Rechtsschutzantrags</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:complexType>
<xsd:complexContent>
<xsd:extension base="ac:CreateApplicationResponseGen_Type">
<xsd:sequence>
<xsd:element name="Antragsantwort" type="SpezAntragRechtsschutz_Type"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
</xsd:element> </xsd:element>
<xsd:element name="SubmitApplicationRechtsschutzRequest" type="SubmitApplicationRechtsschutzRequest_Type"> <xsd:element name="SubmitApplicationRechtsschutzRequest">
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Requests, um den Antrag einzureichen</xsd:documentation> <xsd:documentation>Requests, um den Antrag einzureichen</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:complexType>
<xsd:annotation>
<xsd:documentation>Type des Requests, um den Antrag einzureichen</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="ac:SubmitApplicationRequestGen_Type">
<xsd:sequence>
<xsd:element name="Antragsanfrage" type="SpezAntragRechtsschutz_Type"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
</xsd:element> </xsd:element>
<xsd:element name="SubmitApplicationRechtsschutzResponse" type="SubmitApplicationRechtsschutzResponse_Type"> <xsd:element name="SubmitApplicationRechtsschutzResponse" >
<xsd:annotation> <xsd:annotation>
<xsd:documentation>Response nach dem einreichen des Antrags</xsd:documentation> <xsd:documentation>Response nach dem Einreichen des Antrags</xsd:documentation>
</xsd:annotation> </xsd:annotation>
<xsd:complexType >
<xsd:complexContent>
<xsd:extension base="ac:SubmitApplicationResponseGen_Type">
<xsd:sequence>
<xsd:element name="Antragsantwort" type="SpezAntragRechtsschutz_Type"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
</xsd:element> </xsd:element>
<!-- <xsd:element name="CalculateRechtsschutzRequest" type="CalculateRechtsschutzRequest_Type">-->
<!-- <xsd:annotation>-->
<!-- <xsd:documentation>Requestobjekt für eine Berechnung Rechtsschutz</xsd:documentation>-->
<!-- </xsd:annotation>-->
<!-- </xsd:element>-->
<!-- <xsd:element name="CalculateRechtsschutzResponse" type="CalculateRechtsschutzResponse_Type">-->
<!-- <xsd:annotation>-->
<!-- <xsd:documentation>Responseobjekt bei der Rechtsschutz-Berechnung</xsd:documentation>-->
<!-- </xsd:annotation>-->
<!-- </xsd:element>-->
<!-- <xsd:element name="CreateOfferRechtsschutzRequest" type="CreateOfferRechtsschutzRequest_Type">-->
<!-- <xsd:annotation>-->
<!-- <xsd:documentation>Requestobjekt für eine Erstellung eines Rechstsschutz-Offerts</xsd:documentation>-->
<!-- </xsd:annotation>-->
<!-- </xsd:element>-->
<!-- <xsd:element name="CreateOfferRechtsschutzResponse" type="CreateOfferRechtsschutzResponse_Type">-->
<!-- <xsd:annotation>-->
<!-- <xsd:documentation>Responseobjekt bei der Erstellung eines Rechtsschutz-Offerts</xsd:documentation>-->
<!-- </xsd:annotation>-->
<!-- </xsd:element>-->
<!-- <xsd:element name="CreateApplicationRechtsschutzRequest" type="CreateApplicationRechtsschutzRequest_Type">-->
<!-- <xsd:annotation>-->
<!-- <xsd:documentation>Requestobjekt für die Erstellung eines Rechtsschutzantrags</xsd:documentation>-->
<!-- </xsd:annotation>-->
<!-- </xsd:element>-->
<!-- <xsd:element name="CreateApplicationRechtsschutzResponse" type="CreateApplicationRechtsschutzResponse_Type">-->
<!-- <xsd:annotation>-->
<!-- <xsd:documentation>Responseobjekt bei der Erstellung eines Rechtsschutzantrags</xsd:documentation>-->
<!-- </xsd:annotation>-->
<!-- </xsd:element>-->
<!-- <xsd:element name="SubmitApplicationRechtsschutzRequest" type="SubmitApplicationRechtsschutzRequest_Type">-->
<!-- <xsd:annotation>-->
<!-- <xsd:documentation>Requests, um den Antrag einzureichen</xsd:documentation>-->
<!-- </xsd:annotation>-->
<!-- </xsd:element>-->
<!-- <xsd:element name="SubmitApplicationRechtsschutzResponse" type="SubmitApplicationRechtsschutzResponse_Type">-->
<!-- <xsd:annotation>-->
<!-- <xsd:documentation>Response nach dem einreichen des Antrags</xsd:documentation>-->
<!-- </xsd:annotation>-->
<!-- </xsd:element>-->
</xsd:schema> </xsd:schema>