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

no.nav.tjeneste.virksomhet.arbeidogaktivitetsak.v1.feil.ForretningsmessigUnntak Maven / Gradle / Ivy

There is a newer version: 1.2019.09.25-00.21-49b69f0625e0
Show newest version

package no.nav.tjeneste.virksomhet.arbeidogaktivitetsak.v1.feil;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for ForretningsmessigUnntak complex type. * *

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

 * <complexType name="ForretningsmessigUnntak">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="feilkilde" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="feilaarsak" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="feilmelding" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="tidspunkt" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ForretningsmessigUnntak", propOrder = { "feilkilde", "feilaarsak", "feilmelding", "tidspunkt" }) @XmlSeeAlso({ Sikkerhetsbegrensning.class, UgyldigInput.class }) public class ForretningsmessigUnntak { @XmlElement(required = true) protected String feilkilde; @XmlElement(required = true) protected String feilaarsak; @XmlElement(required = true) protected String feilmelding; @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar tidspunkt; /** * Gets the value of the feilkilde property. * * @return * possible object is * {@link String } * */ public String getFeilkilde() { return feilkilde; } /** * Sets the value of the feilkilde property. * * @param value * allowed object is * {@link String } * */ public void setFeilkilde(String value) { this.feilkilde = value; } /** * Gets the value of the feilaarsak property. * * @return * possible object is * {@link String } * */ public String getFeilaarsak() { return feilaarsak; } /** * Sets the value of the feilaarsak property. * * @param value * allowed object is * {@link String } * */ public void setFeilaarsak(String value) { this.feilaarsak = value; } /** * Gets the value of the feilmelding property. * * @return * possible object is * {@link String } * */ public String getFeilmelding() { return feilmelding; } /** * Sets the value of the feilmelding property. * * @param value * allowed object is * {@link String } * */ public void setFeilmelding(String value) { this.feilmelding = value; } /** * Gets the value of the tidspunkt property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getTidspunkt() { return tidspunkt; } /** * Sets the value of the tidspunkt property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setTidspunkt(XMLGregorianCalendar value) { this.tidspunkt = value; } public ForretningsmessigUnntak withFeilkilde(String value) { setFeilkilde(value); return this; } public ForretningsmessigUnntak withFeilaarsak(String value) { setFeilaarsak(value); return this; } public ForretningsmessigUnntak withFeilmelding(String value) { setFeilmelding(value); return this; } public ForretningsmessigUnntak withTidspunkt(XMLGregorianCalendar value) { setTidspunkt(value); return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy