no.nav.tjeneste.virksomhet.arbeidogaktivitetsak.v1.informasjon.Statuser Maven / Gradle / Ivy
package no.nav.tjeneste.virksomhet.arbeidogaktivitetsak.v1.informasjon;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for Statuser complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Statuser">
* <simpleContent>
* <extension base="<http://nav.no/tjeneste/virksomhet/arbeidOgAktivitetSak/v1/informasjon>Kodeverdi">
* <attribute name="kodeverksRef" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
* </extension>
* </simpleContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Statuser")
public class Statuser
extends Kodeverdi
{
@XmlAttribute(name = "kodeverksRef")
@XmlSchemaType(name = "anyURI")
protected String kodeverksRef;
/**
* Gets the value of the kodeverksRef property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKodeverksRef() {
return kodeverksRef;
}
/**
* Sets the value of the kodeverksRef property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKodeverksRef(String value) {
this.kodeverksRef = value;
}
public Statuser withKodeverksRef(String value) {
setKodeverksRef(value);
return this;
}
@Override
public Statuser withValue(String value) {
setValue(value);
return this;
}
@Override
public Statuser withKodeRef(String value) {
setKodeRef(value);
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy