summaryrefslogtreecommitdiff
path: root/mocca-1.2.11/bkucommon/src/test/java/moaspss/generated/CreateXMLSignatureRequestType.java
diff options
context:
space:
mode:
Diffstat (limited to 'mocca-1.2.11/bkucommon/src/test/java/moaspss/generated/CreateXMLSignatureRequestType.java')
-rw-r--r--mocca-1.2.11/bkucommon/src/test/java/moaspss/generated/CreateXMLSignatureRequestType.java466
1 files changed, 0 insertions, 466 deletions
diff --git a/mocca-1.2.11/bkucommon/src/test/java/moaspss/generated/CreateXMLSignatureRequestType.java b/mocca-1.2.11/bkucommon/src/test/java/moaspss/generated/CreateXMLSignatureRequestType.java
deleted file mode 100644
index aad14567..00000000
--- a/mocca-1.2.11/bkucommon/src/test/java/moaspss/generated/CreateXMLSignatureRequestType.java
+++ /dev/null
@@ -1,466 +0,0 @@
-/*
-* Copyright 2008 Federal Chancellery Austria and
-* Graz University of Technology
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-package moaspss.generated;
-
-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.XmlSeeAlso;
-import javax.xml.bind.annotation.XmlType;
-import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
-import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
-
-
-/**
- * <p>Java class for CreateXMLSignatureRequestType complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType name="CreateXMLSignatureRequestType">
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element name="KeyIdentifier" type="{http://reference.e-government.gv.at/namespace/moa/20020822#}KeyIdentifierType"/>
- * &lt;element name="SingleSignatureInfo" maxOccurs="unbounded">
- * &lt;complexType>
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element name="DataObjectInfo" maxOccurs="unbounded">
- * &lt;complexType>
- * &lt;complexContent>
- * &lt;extension base="{http://reference.e-government.gv.at/namespace/moa/20020822#}DataObjectInfoType">
- * &lt;attribute name="ChildOfManifest" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
- * &lt;/extension>
- * &lt;/complexContent>
- * &lt;/complexType>
- * &lt;/element>
- * &lt;element name="CreateSignatureInfo" minOccurs="0">
- * &lt;complexType>
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element name="CreateSignatureEnvironment" type="{http://reference.e-government.gv.at/namespace/moa/20020822#}ContentOptionalRefType"/>
- * &lt;choice>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/moa/20020822#}CreateSignatureEnvironmentProfile"/>
- * &lt;element name="CreateSignatureEnvironmentProfileID" type="{http://reference.e-government.gv.at/namespace/moa/20020822#}ProfileIdentifierType"/>
- * &lt;/choice>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * &lt;/element>
- * &lt;/sequence>
- * &lt;attribute name="SecurityLayerConformity" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * &lt;/element>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "CreateXMLSignatureRequestType", propOrder = {
- "keyIdentifier",
- "singleSignatureInfo"
-})
-@XmlSeeAlso({
- CreateXMLSignatureRequest.class
-})
-public class CreateXMLSignatureRequestType {
-
- @XmlElement(name = "KeyIdentifier", required = true)
- protected String keyIdentifier;
- @XmlElement(name = "SingleSignatureInfo", required = true)
- protected List<CreateXMLSignatureRequestType.SingleSignatureInfo> singleSignatureInfo;
-
- /**
- * Gets the value of the keyIdentifier property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getKeyIdentifier() {
- return keyIdentifier;
- }
-
- /**
- * Sets the value of the keyIdentifier property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setKeyIdentifier(String value) {
- this.keyIdentifier = value;
- }
-
- /**
- * Gets the value of the singleSignatureInfo 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 singleSignatureInfo property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getSingleSignatureInfo().add(newItem);
- * </pre>
- *
- *
- * <p>
- * Objects of the following type(s) are allowed in the list
- * {@link CreateXMLSignatureRequestType.SingleSignatureInfo }
- *
- *
- */
- public List<CreateXMLSignatureRequestType.SingleSignatureInfo> getSingleSignatureInfo() {
- if (singleSignatureInfo == null) {
- singleSignatureInfo = new ArrayList<CreateXMLSignatureRequestType.SingleSignatureInfo>();
- }
- return this.singleSignatureInfo;
- }
-
-
- /**
- * <p>Java class for anonymous complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType>
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element name="DataObjectInfo" maxOccurs="unbounded">
- * &lt;complexType>
- * &lt;complexContent>
- * &lt;extension base="{http://reference.e-government.gv.at/namespace/moa/20020822#}DataObjectInfoType">
- * &lt;attribute name="ChildOfManifest" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
- * &lt;/extension>
- * &lt;/complexContent>
- * &lt;/complexType>
- * &lt;/element>
- * &lt;element name="CreateSignatureInfo" minOccurs="0">
- * &lt;complexType>
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element name="CreateSignatureEnvironment" type="{http://reference.e-government.gv.at/namespace/moa/20020822#}ContentOptionalRefType"/>
- * &lt;choice>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/moa/20020822#}CreateSignatureEnvironmentProfile"/>
- * &lt;element name="CreateSignatureEnvironmentProfileID" type="{http://reference.e-government.gv.at/namespace/moa/20020822#}ProfileIdentifierType"/>
- * &lt;/choice>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * &lt;/element>
- * &lt;/sequence>
- * &lt;attribute name="SecurityLayerConformity" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "", propOrder = {
- "dataObjectInfo",
- "createSignatureInfo"
- })
- public static class SingleSignatureInfo {
-
- @XmlElement(name = "DataObjectInfo", required = true)
- protected List<CreateXMLSignatureRequestType.SingleSignatureInfo.DataObjectInfo> dataObjectInfo;
- @XmlElement(name = "CreateSignatureInfo")
- protected CreateXMLSignatureRequestType.SingleSignatureInfo.CreateSignatureInfo createSignatureInfo;
- @XmlAttribute(name = "SecurityLayerConformity")
- protected Boolean securityLayerConformity;
-
- /**
- * Gets the value of the dataObjectInfo 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 dataObjectInfo property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getDataObjectInfo().add(newItem);
- * </pre>
- *
- *
- * <p>
- * Objects of the following type(s) are allowed in the list
- * {@link CreateXMLSignatureRequestType.SingleSignatureInfo.DataObjectInfo }
- *
- *
- */
- public List<CreateXMLSignatureRequestType.SingleSignatureInfo.DataObjectInfo> getDataObjectInfo() {
- if (dataObjectInfo == null) {
- dataObjectInfo = new ArrayList<CreateXMLSignatureRequestType.SingleSignatureInfo.DataObjectInfo>();
- }
- return this.dataObjectInfo;
- }
-
- /**
- * Gets the value of the createSignatureInfo property.
- *
- * @return
- * possible object is
- * {@link CreateXMLSignatureRequestType.SingleSignatureInfo.CreateSignatureInfo }
- *
- */
- public CreateXMLSignatureRequestType.SingleSignatureInfo.CreateSignatureInfo getCreateSignatureInfo() {
- return createSignatureInfo;
- }
-
- /**
- * Sets the value of the createSignatureInfo property.
- *
- * @param value
- * allowed object is
- * {@link CreateXMLSignatureRequestType.SingleSignatureInfo.CreateSignatureInfo }
- *
- */
- public void setCreateSignatureInfo(CreateXMLSignatureRequestType.SingleSignatureInfo.CreateSignatureInfo value) {
- this.createSignatureInfo = value;
- }
-
- /**
- * Gets the value of the securityLayerConformity property.
- *
- * @return
- * possible object is
- * {@link Boolean }
- *
- */
- public boolean isSecurityLayerConformity() {
- if (securityLayerConformity == null) {
- return true;
- } else {
- return securityLayerConformity;
- }
- }
-
- /**
- * Sets the value of the securityLayerConformity property.
- *
- * @param value
- * allowed object is
- * {@link Boolean }
- *
- */
- public void setSecurityLayerConformity(Boolean value) {
- this.securityLayerConformity = value;
- }
-
-
- /**
- * <p>Java class for anonymous complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType>
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element name="CreateSignatureEnvironment" type="{http://reference.e-government.gv.at/namespace/moa/20020822#}ContentOptionalRefType"/>
- * &lt;choice>
- * &lt;element ref="{http://reference.e-government.gv.at/namespace/moa/20020822#}CreateSignatureEnvironmentProfile"/>
- * &lt;element name="CreateSignatureEnvironmentProfileID" type="{http://reference.e-government.gv.at/namespace/moa/20020822#}ProfileIdentifierType"/>
- * &lt;/choice>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "", propOrder = {
- "createSignatureEnvironment",
- "createSignatureEnvironmentProfile",
- "createSignatureEnvironmentProfileID"
- })
- public static class CreateSignatureInfo {
-
- @XmlElement(name = "CreateSignatureEnvironment", required = true)
- protected ContentOptionalRefType createSignatureEnvironment;
- @XmlElement(name = "CreateSignatureEnvironmentProfile")
- protected CreateSignatureEnvironmentProfile createSignatureEnvironmentProfile;
- @XmlElement(name = "CreateSignatureEnvironmentProfileID")
- @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
- protected String createSignatureEnvironmentProfileID;
-
- /**
- * Gets the value of the createSignatureEnvironment property.
- *
- * @return
- * possible object is
- * {@link ContentOptionalRefType }
- *
- */
- public ContentOptionalRefType getCreateSignatureEnvironment() {
- return createSignatureEnvironment;
- }
-
- /**
- * Sets the value of the createSignatureEnvironment property.
- *
- * @param value
- * allowed object is
- * {@link ContentOptionalRefType }
- *
- */
- public void setCreateSignatureEnvironment(ContentOptionalRefType value) {
- this.createSignatureEnvironment = value;
- }
-
- /**
- * Gets the value of the createSignatureEnvironmentProfile property.
- *
- * @return
- * possible object is
- * {@link CreateSignatureEnvironmentProfile }
- *
- */
- public CreateSignatureEnvironmentProfile getCreateSignatureEnvironmentProfile() {
- return createSignatureEnvironmentProfile;
- }
-
- /**
- * Sets the value of the createSignatureEnvironmentProfile property.
- *
- * @param value
- * allowed object is
- * {@link CreateSignatureEnvironmentProfile }
- *
- */
- public void setCreateSignatureEnvironmentProfile(CreateSignatureEnvironmentProfile value) {
- this.createSignatureEnvironmentProfile = value;
- }
-
- /**
- * Gets the value of the createSignatureEnvironmentProfileID property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getCreateSignatureEnvironmentProfileID() {
- return createSignatureEnvironmentProfileID;
- }
-
- /**
- * Sets the value of the createSignatureEnvironmentProfileID property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setCreateSignatureEnvironmentProfileID(String value) {
- this.createSignatureEnvironmentProfileID = value;
- }
-
- }
-
-
- /**
- * <p>Java class for anonymous complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType>
- * &lt;complexContent>
- * &lt;extension base="{http://reference.e-government.gv.at/namespace/moa/20020822#}DataObjectInfoType">
- * &lt;attribute name="ChildOfManifest" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
- * &lt;/extension>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "")
- public static class DataObjectInfo
- extends DataObjectInfoType
- {
-
- @XmlAttribute(name = "ChildOfManifest")
- protected Boolean childOfManifest;
-
- /**
- * Gets the value of the childOfManifest property.
- *
- * @return
- * possible object is
- * {@link Boolean }
- *
- */
- public boolean isChildOfManifest() {
- if (childOfManifest == null) {
- return false;
- } else {
- return childOfManifest;
- }
- }
-
- /**
- * Sets the value of the childOfManifest property.
- *
- * @param value
- * allowed object is
- * {@link Boolean }
- *
- */
- public void setChildOfManifest(Boolean value) {
- this.childOfManifest = value;
- }
-
- }
-
- }
-
-}