no.nav.tjeneste.virksomhet.ytelse.v1.informasjon.Sak Maven / Gradle / Ivy
package no.nav.tjeneste.virksomhet.ytelse.v1.informasjon;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for Sak complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Sak">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="fagssystem" type="{http://nav.no/tjeneste/virksomhet/ytelse/v1/informasjon}Fagsystem" minOccurs="0"/>
* <element name="periode" type="{http://nav.no/tjeneste/virksomhet/ytelse/v1/informasjon}Periode"/>
* <element name="sakID_Fagsystem" type="{http://nav.no/tjeneste/virksomhet/ytelse/v1/informasjon}Identifikator" minOccurs="0"/>
* <element name="saksid" type="{http://nav.no/tjeneste/virksomhet/ytelse/v1/informasjon}Identifikator"/>
* <element name="saksstatus" type="{http://nav.no/tjeneste/virksomhet/ytelse/v1/informasjon}Saksstatustyper"/>
* <element name="sakstype" type="{http://nav.no/tjeneste/virksomhet/ytelse/v1/informasjon}Sakstyper" minOccurs="0"/>
* <element name="tema" type="{http://nav.no/tjeneste/virksomhet/ytelse/v1/informasjon}Tema"/>
* <element name="gjelderPart" type="{http://nav.no/tjeneste/virksomhet/ytelse/v1/informasjon}Part"/>
* <element name="sakHarTilknyttetVedtak" type="{http://nav.no/tjeneste/virksomhet/ytelse/v1/informasjon}Vedtak" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Sak", propOrder = {
"fagssystem",
"periode",
"sakIDFagsystem",
"saksid",
"saksstatus",
"sakstype",
"tema",
"gjelderPart",
"sakHarTilknyttetVedtak"
})
public class Sak {
protected String fagssystem;
@XmlElement(required = true)
protected Periode periode;
@XmlElement(name = "sakID_Fagsystem")
protected String sakIDFagsystem;
@XmlElement(required = true)
protected String saksid;
@XmlElement(required = true)
protected String saksstatus;
protected String sakstype;
@XmlElement(required = true)
protected Tema tema;
@XmlElement(required = true)
protected Part gjelderPart;
protected List sakHarTilknyttetVedtak;
/**
* Gets the value of the fagssystem property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFagssystem() {
return fagssystem;
}
/**
* Sets the value of the fagssystem property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFagssystem(String value) {
this.fagssystem = value;
}
/**
* Gets the value of the periode property.
*
* @return
* possible object is
* {@link Periode }
*
*/
public Periode getPeriode() {
return periode;
}
/**
* Sets the value of the periode property.
*
* @param value
* allowed object is
* {@link Periode }
*
*/
public void setPeriode(Periode value) {
this.periode = value;
}
/**
* Gets the value of the sakIDFagsystem property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSakIDFagsystem() {
return sakIDFagsystem;
}
/**
* Sets the value of the sakIDFagsystem property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSakIDFagsystem(String value) {
this.sakIDFagsystem = value;
}
/**
* Gets the value of the saksid property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSaksid() {
return saksid;
}
/**
* Sets the value of the saksid property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSaksid(String value) {
this.saksid = value;
}
/**
* Gets the value of the saksstatus property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSaksstatus() {
return saksstatus;
}
/**
* Sets the value of the saksstatus property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSaksstatus(String value) {
this.saksstatus = value;
}
/**
* Gets the value of the sakstype property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSakstype() {
return sakstype;
}
/**
* Sets the value of the sakstype property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSakstype(String value) {
this.sakstype = value;
}
/**
* Gets the value of the tema property.
*
* @return
* possible object is
* {@link Tema }
*
*/
public Tema getTema() {
return tema;
}
/**
* Sets the value of the tema property.
*
* @param value
* allowed object is
* {@link Tema }
*
*/
public void setTema(Tema value) {
this.tema = value;
}
/**
* Gets the value of the gjelderPart property.
*
* @return
* possible object is
* {@link Part }
*
*/
public Part getGjelderPart() {
return gjelderPart;
}
/**
* Sets the value of the gjelderPart property.
*
* @param value
* allowed object is
* {@link Part }
*
*/
public void setGjelderPart(Part value) {
this.gjelderPart = value;
}
/**
* Gets the value of the sakHarTilknyttetVedtak property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the sakHarTilknyttetVedtak property.
*
*
* For example, to add a new item, do as follows:
*
* getSakHarTilknyttetVedtak().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Vedtak }
*
*
*/
public List getSakHarTilknyttetVedtak() {
if (sakHarTilknyttetVedtak == null) {
sakHarTilknyttetVedtak = new ArrayList();
}
return this.sakHarTilknyttetVedtak;
}
}