no.nav.tjeneste.virksomhet.behandleinngaaendejournal.v1.informasjon.ArkivSak Maven / Gradle / Ivy
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.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Informasjon om saksobjektet
*
* Java class for ArkivSak complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ArkivSak">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="arkivSakId" type="{http://nav.no/tjeneste/virksomhet/behandleInngaaendeJournal/v1/informasjon}Identifikator"/>
* <element name="arkivSakSystem" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ArkivSak", propOrder = {
"arkivSakId",
"arkivSakSystem"
})
public class ArkivSak {
@XmlElement(required = true)
protected String arkivSakId;
@XmlElement(required = true)
protected String arkivSakSystem;
/**
* Gets the value of the arkivSakId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getArkivSakId() {
return arkivSakId;
}
/**
* Sets the value of the arkivSakId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setArkivSakId(String value) {
this.arkivSakId = value;
}
/**
* Gets the value of the arkivSakSystem property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getArkivSakSystem() {
return arkivSakSystem;
}
/**
* Sets the value of the arkivSakSystem property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setArkivSakSystem(String value) {
this.arkivSakSystem = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy