generated.XMLOppgiPersonallederM Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2019.07.11 at 04:35:47 AM UTC
//
package generated;
import java.util.HashMap;
import java.util.Map;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyAttribute;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.namespace.QName;
/**
* Java class for OppgiPersonalleder_M complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="OppgiPersonalleder_M">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Skjemainnhold" type="{}Skjemainnhold"/>
* </sequence>
* <attribute name="dataFormatProvider" use="required" type="{http://www.w3.org/2001/XMLSchema}string" fixed="SERES" />
* <attribute name="dataFormatId" use="required" type="{http://www.w3.org/2001/XMLSchema}string" fixed="5363" />
* <attribute name="dataFormatVersion" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <anyAttribute/>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "OppgiPersonalleder_M", propOrder = {
"skjemainnhold"
})
public class XMLOppgiPersonallederM {
@XmlElement(name = "Skjemainnhold", required = true)
protected XMLSkjemainnhold skjemainnhold;
@XmlAttribute(name = "dataFormatProvider", required = true)
protected String dataFormatProvider;
@XmlAttribute(name = "dataFormatId", required = true)
protected String dataFormatId;
@XmlAttribute(name = "dataFormatVersion", required = true)
protected String dataFormatVersion;
@XmlAnyAttribute
private Map otherAttributes = new HashMap();
/**
* Default no-arg constructor
*
*/
public XMLOppgiPersonallederM() {
super();
}
/**
* Fully-initialising value constructor
*
*/
public XMLOppgiPersonallederM(final XMLSkjemainnhold skjemainnhold, final String dataFormatProvider, final String dataFormatId, final String dataFormatVersion, final Map otherAttributes) {
this.skjemainnhold = skjemainnhold;
this.dataFormatProvider = dataFormatProvider;
this.dataFormatId = dataFormatId;
this.dataFormatVersion = dataFormatVersion;
this.otherAttributes = otherAttributes;
}
/**
* Gets the value of the skjemainnhold property.
*
* @return
* possible object is
* {@link XMLSkjemainnhold }
*
*/
public XMLSkjemainnhold getSkjemainnhold() {
return skjemainnhold;
}
/**
* Sets the value of the skjemainnhold property.
*
* @param value
* allowed object is
* {@link XMLSkjemainnhold }
*
*/
public void setSkjemainnhold(XMLSkjemainnhold value) {
this.skjemainnhold = value;
}
/**
* Gets the value of the dataFormatProvider property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDataFormatProvider() {
if (dataFormatProvider == null) {
return "SERES";
} else {
return dataFormatProvider;
}
}
/**
* Sets the value of the dataFormatProvider property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDataFormatProvider(String value) {
this.dataFormatProvider = value;
}
/**
* Gets the value of the dataFormatId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDataFormatId() {
if (dataFormatId == null) {
return "5363";
} else {
return dataFormatId;
}
}
/**
* Sets the value of the dataFormatId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDataFormatId(String value) {
this.dataFormatId = value;
}
/**
* Gets the value of the dataFormatVersion property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDataFormatVersion() {
return dataFormatVersion;
}
/**
* Sets the value of the dataFormatVersion property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDataFormatVersion(String value) {
this.dataFormatVersion = value;
}
/**
* Gets a map that contains attributes that aren't bound to any typed property on this class.
*
*
* the map is keyed by the name of the attribute and
* the value is the string value of the attribute.
*
* the map returned by this method is live, and you can add new attribute
* by updating the map directly. Because of this design, there's no setter.
*
*
* @return
* always non-null
*/
public Map getOtherAttributes() {
return otherAttributes;
}
public XMLOppgiPersonallederM withSkjemainnhold(XMLSkjemainnhold value) {
setSkjemainnhold(value);
return this;
}
public XMLOppgiPersonallederM withDataFormatProvider(String value) {
setDataFormatProvider(value);
return this;
}
public XMLOppgiPersonallederM withDataFormatId(String value) {
setDataFormatId(value);
return this;
}
public XMLOppgiPersonallederM withDataFormatVersion(String value) {
setDataFormatVersion(value);
return this;
}
}