From 6db3f2298372d78b7dfe33833ef7227fb99f87e9 Mon Sep 17 00:00:00 2001 From: tkellner Date: Thu, 28 Nov 2013 11:05:00 +0000 Subject: remove old securitylayer bindings git-svn-id: https://joinup.ec.europa.eu/svn/mocca/trunk@1231 8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4 --- .../securitylayer/_1/InfoboxCreateRequestType.java | 268 --------------------- 1 file changed, 268 deletions(-) delete mode 100644 utils/src/main/java/at/buergerkarte/namespaces/securitylayer/_1/InfoboxCreateRequestType.java (limited to 'utils/src/main/java/at/buergerkarte/namespaces/securitylayer/_1/InfoboxCreateRequestType.java') diff --git a/utils/src/main/java/at/buergerkarte/namespaces/securitylayer/_1/InfoboxCreateRequestType.java b/utils/src/main/java/at/buergerkarte/namespaces/securitylayer/_1/InfoboxCreateRequestType.java deleted file mode 100644 index 3ef3c245..00000000 --- a/utils/src/main/java/at/buergerkarte/namespaces/securitylayer/_1/InfoboxCreateRequestType.java +++ /dev/null @@ -1,268 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2010.02.26 at 12:32:35 PM MEZ -// - - -package at.buergerkarte.namespaces.securitylayer._1; - -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 javax.xml.bind.annotation.adapters.CollapsedStringAdapter; -import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; - - -/** - *

Java class for InfoboxCreateRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="InfoboxCreateRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="InfoboxIdentifier" type="{http://www.buergerkarte.at/namespaces/securitylayer/1.2#}BoxIdentifierType"/>
- *         <element name="InfoboxType" type="{http://www.buergerkarte.at/namespaces/securitylayer/1.2#}InfoboxTypeType"/>
- *         <element name="Creator" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Purpose" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ReadAccessAuthorization" type="{http://www.buergerkarte.at/namespaces/securitylayer/1.2#}AccessAuthorizationType" minOccurs="0"/>
- *         <element name="UpdateAccessAuthorization" type="{http://www.buergerkarte.at/namespaces/securitylayer/1.2#}AccessAuthorizationType" minOccurs="0"/>
- *         <element name="ReadUserConfirmation" type="{http://www.buergerkarte.at/namespaces/securitylayer/1.2#}UserConfirmationType" minOccurs="0"/>
- *         <element name="UpdateUserConfirmation" type="{http://www.buergerkarte.at/namespaces/securitylayer/1.2#}UserConfirmationType" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InfoboxCreateRequestType", propOrder = { - "infoboxIdentifier", - "infoboxType", - "creator", - "purpose", - "readAccessAuthorization", - "updateAccessAuthorization", - "readUserConfirmation", - "updateUserConfirmation" -}) -public class InfoboxCreateRequestType { - - @XmlElement(name = "InfoboxIdentifier", required = true) - @XmlJavaTypeAdapter(CollapsedStringAdapter.class) - protected String infoboxIdentifier; - @XmlElement(name = "InfoboxType", required = true) - protected InfoboxTypeType infoboxType; - @XmlElement(name = "Creator", required = true) - protected String creator; - @XmlElement(name = "Purpose", required = true) - protected String purpose; - @XmlElement(name = "ReadAccessAuthorization") - protected AccessAuthorizationType readAccessAuthorization; - @XmlElement(name = "UpdateAccessAuthorization") - protected AccessAuthorizationType updateAccessAuthorization; - @XmlElement(name = "ReadUserConfirmation") - protected UserConfirmationType readUserConfirmation; - @XmlElement(name = "UpdateUserConfirmation") - protected UserConfirmationType updateUserConfirmation; - - /** - * Gets the value of the infoboxIdentifier property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInfoboxIdentifier() { - return infoboxIdentifier; - } - - /** - * Sets the value of the infoboxIdentifier property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInfoboxIdentifier(String value) { - this.infoboxIdentifier = value; - } - - /** - * Gets the value of the infoboxType property. - * - * @return - * possible object is - * {@link InfoboxTypeType } - * - */ - public InfoboxTypeType getInfoboxType() { - return infoboxType; - } - - /** - * Sets the value of the infoboxType property. - * - * @param value - * allowed object is - * {@link InfoboxTypeType } - * - */ - public void setInfoboxType(InfoboxTypeType value) { - this.infoboxType = value; - } - - /** - * Gets the value of the creator property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCreator() { - return creator; - } - - /** - * Sets the value of the creator property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCreator(String value) { - this.creator = value; - } - - /** - * Gets the value of the purpose property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPurpose() { - return purpose; - } - - /** - * Sets the value of the purpose property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPurpose(String value) { - this.purpose = value; - } - - /** - * Gets the value of the readAccessAuthorization property. - * - * @return - * possible object is - * {@link AccessAuthorizationType } - * - */ - public AccessAuthorizationType getReadAccessAuthorization() { - return readAccessAuthorization; - } - - /** - * Sets the value of the readAccessAuthorization property. - * - * @param value - * allowed object is - * {@link AccessAuthorizationType } - * - */ - public void setReadAccessAuthorization(AccessAuthorizationType value) { - this.readAccessAuthorization = value; - } - - /** - * Gets the value of the updateAccessAuthorization property. - * - * @return - * possible object is - * {@link AccessAuthorizationType } - * - */ - public AccessAuthorizationType getUpdateAccessAuthorization() { - return updateAccessAuthorization; - } - - /** - * Sets the value of the updateAccessAuthorization property. - * - * @param value - * allowed object is - * {@link AccessAuthorizationType } - * - */ - public void setUpdateAccessAuthorization(AccessAuthorizationType value) { - this.updateAccessAuthorization = value; - } - - /** - * Gets the value of the readUserConfirmation property. - * - * @return - * possible object is - * {@link UserConfirmationType } - * - */ - public UserConfirmationType getReadUserConfirmation() { - return readUserConfirmation; - } - - /** - * Sets the value of the readUserConfirmation property. - * - * @param value - * allowed object is - * {@link UserConfirmationType } - * - */ - public void setReadUserConfirmation(UserConfirmationType value) { - this.readUserConfirmation = value; - } - - /** - * Gets the value of the updateUserConfirmation property. - * - * @return - * possible object is - * {@link UserConfirmationType } - * - */ - public UserConfirmationType getUpdateUserConfirmation() { - return updateUserConfirmation; - } - - /** - * Sets the value of the updateUserConfirmation property. - * - * @param value - * allowed object is - * {@link UserConfirmationType } - * - */ - public void setUpdateUserConfirmation(UserConfirmationType value) { - this.updateUserConfirmation = value; - } - -} -- cgit v1.2.3