no.nav.tjeneste.virksomhet.sak.v1.meldinger.FinnSakRequest Maven / Gradle / Ivy
package no.nav.tjeneste.virksomhet.sak.v1.meldinger;
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.XmlType;
import no.nav.tjeneste.virksomhet.sak.v1.informasjon.Aktoer;
import no.nav.tjeneste.virksomhet.sak.v1.informasjon.Fagomraader;
import no.nav.tjeneste.virksomhet.sak.v1.informasjon.Fagsystemer;
/**
* Betinget krav: (fagsystemSakId + fagsystem) eller bruker må være i request. Hvis ikke returneres feil: ugyldigInnput.
*
* Java class for FinnSakRequest complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FinnSakRequest">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="bruker" type="{http://nav.no/tjeneste/virksomhet/sak/v1/informasjon}Aktoer" minOccurs="0"/>
* <element name="fagsystemSakId" type="{http://nav.no/tjeneste/virksomhet/sak/v1/informasjon}Identifikator" minOccurs="0"/>
* <element name="fagomraadeListe" type="{http://nav.no/tjeneste/virksomhet/sak/v1/informasjon}Fagomraader" maxOccurs="unbounded" minOccurs="0"/>
* <element name="fagsystem" type="{http://nav.no/tjeneste/virksomhet/sak/v1/informasjon}Fagsystemer" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FinnSakRequest", propOrder = {
"bruker",
"fagsystemSakId",
"fagomraadeListe",
"fagsystem"
})
public class FinnSakRequest {
protected Aktoer bruker;
protected String fagsystemSakId;
protected List fagomraadeListe;
protected Fagsystemer fagsystem;
/**
* Gets the value of the bruker property.
*
* @return
* possible object is
* {@link Aktoer }
*
*/
public Aktoer getBruker() {
return bruker;
}
/**
* Sets the value of the bruker property.
*
* @param value
* allowed object is
* {@link Aktoer }
*
*/
public void setBruker(Aktoer value) {
this.bruker = value;
}
/**
* Gets the value of the fagsystemSakId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFagsystemSakId() {
return fagsystemSakId;
}
/**
* Sets the value of the fagsystemSakId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFagsystemSakId(String value) {
this.fagsystemSakId = value;
}
/**
* Gets the value of the fagomraadeListe 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 fagomraadeListe property.
*
*
* For example, to add a new item, do as follows:
*
* getFagomraadeListe().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Fagomraader }
*
*
*/
public List getFagomraadeListe() {
if (fagomraadeListe == null) {
fagomraadeListe = new ArrayList();
}
return this.fagomraadeListe;
}
/**
* Gets the value of the fagsystem property.
*
* @return
* possible object is
* {@link Fagsystemer }
*
*/
public Fagsystemer getFagsystem() {
return fagsystem;
}
/**
* Sets the value of the fagsystem property.
*
* @param value
* allowed object is
* {@link Fagsystemer }
*
*/
public void setFagsystem(Fagsystemer value) {
this.fagsystem = value;
}
}