All Downloads are FREE. Search and download functionalities are using the official Maven repository.

no.nav.melding.virksomhet.henvendelsebehandling.behandlingsresultat.v1.XMLSuperwrapper Maven / Gradle / Ivy

There is a newer version: 1.2019.09.25-00.21-49b69f0625e0
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2013.09.18 at 04:46:59 PM CEST 
//


package no.nav.melding.virksomhet.henvendelsebehandling.behandlingsresultat.v1;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for superwrapper element declaration. * *

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

 * <element name="superwrapper">
 *   <complexType>
 *     <complexContent>
 *       <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *         <sequence>
 *           <element name="anything" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
 *         </sequence>
 *       </restriction>
 *     </complexContent>
 *   </complexType>
 * </element>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "anything" }) @XmlRootElement(name = "superwrapper") public class XMLSuperwrapper { @XmlElement(required = true) protected Object anything; /** * Gets the value of the anything property. * * @return * possible object is * {@link Object } * */ public Object getAnything() { return anything; } /** * Sets the value of the anything property. * * @param value * allowed object is * {@link Object } * */ public void setAnything(Object value) { this.anything = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy