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

no.nav.tjeneste.virksomhet.behandleinngaaendejournal.v1.informasjon.Kodeverdi Maven / Gradle / Ivy

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

package no.nav.tjeneste.virksomhet.behandleinngaaendejournal.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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;


/**
 * 

Java class for Kodeverdi complex type. * *

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

 * <complexType name="Kodeverdi">
 *   <simpleContent>
 *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
 *       <attribute name="kodeRef" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 *       <attribute name="termnavn" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </extension>
 *   </simpleContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Kodeverdi", propOrder = { "value" }) @XmlSeeAlso({ Tema.class, Dokumentkategori.class }) public class Kodeverdi { @XmlValue protected String value; @XmlAttribute(name = "kodeRef") @XmlSchemaType(name = "anyURI") protected String kodeRef; @XmlAttribute(name = "termnavn") protected String termnavn; /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets the value of the kodeRef property. * * @return * possible object is * {@link String } * */ public String getKodeRef() { return kodeRef; } /** * Sets the value of the kodeRef property. * * @param value * allowed object is * {@link String } * */ public void setKodeRef(String value) { this.kodeRef = value; } /** * Gets the value of the termnavn property. * * @return * possible object is * {@link String } * */ public String getTermnavn() { return termnavn; } /** * Sets the value of the termnavn property. * * @param value * allowed object is * {@link String } * */ public void setTermnavn(String value) { this.termnavn = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy