no.nav.tjeneste.virksomhet.behandleinngaaendejournal.v1.informasjon.InngaaendeJournalpost Maven / Gradle / Ivy
package no.nav.tjeneste.virksomhet.behandleinngaaendejournal.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;
/**
* Informasjon om inngaende journalpost til behandling
*
* Java class for InngaaendeJournalpost complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="InngaaendeJournalpost">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="journalpostId" type="{http://nav.no/tjeneste/virksomhet/behandleInngaaendeJournal/v1/informasjon}Identifikator"/>
* <element name="avsender" type="{http://nav.no/tjeneste/virksomhet/behandleInngaaendeJournal/v1/informasjon}Avsender" minOccurs="0"/>
* <element name="innhold" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="arkivSak" type="{http://nav.no/tjeneste/virksomhet/behandleInngaaendeJournal/v1/informasjon}ArkivSak" minOccurs="0"/>
* <element name="tema" type="{http://nav.no/tjeneste/virksomhet/behandleInngaaendeJournal/v1/informasjon}Tema" minOccurs="0"/>
* <element name="bruker" type="{http://nav.no/tjeneste/virksomhet/behandleInngaaendeJournal/v1/informasjon}Aktoer" minOccurs="0"/>
* <element name="hoveddokument" type="{http://nav.no/tjeneste/virksomhet/behandleInngaaendeJournal/v1/informasjon}Dokumentinformasjon" minOccurs="0"/>
* <element name="vedleggListe" type="{http://nav.no/tjeneste/virksomhet/behandleInngaaendeJournal/v1/informasjon}Dokumentinformasjon" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "InngaaendeJournalpost", propOrder = {
"journalpostId",
"avsender",
"innhold",
"arkivSak",
"tema",
"bruker",
"hoveddokument",
"vedleggListe"
})
public class InngaaendeJournalpost {
@XmlElement(required = true)
protected String journalpostId;
protected Avsender avsender;
protected String innhold;
protected ArkivSak arkivSak;
protected Tema tema;
protected Aktoer bruker;
protected Dokumentinformasjon hoveddokument;
protected List vedleggListe;
/**
* Gets the value of the journalpostId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getJournalpostId() {
return journalpostId;
}
/**
* Sets the value of the journalpostId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setJournalpostId(String value) {
this.journalpostId = value;
}
/**
* Gets the value of the avsender property.
*
* @return
* possible object is
* {@link Avsender }
*
*/
public Avsender getAvsender() {
return avsender;
}
/**
* Sets the value of the avsender property.
*
* @param value
* allowed object is
* {@link Avsender }
*
*/
public void setAvsender(Avsender value) {
this.avsender = value;
}
/**
* Gets the value of the innhold property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getInnhold() {
return innhold;
}
/**
* Sets the value of the innhold property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setInnhold(String value) {
this.innhold = value;
}
/**
* Gets the value of the arkivSak property.
*
* @return
* possible object is
* {@link ArkivSak }
*
*/
public ArkivSak getArkivSak() {
return arkivSak;
}
/**
* Sets the value of the arkivSak property.
*
* @param value
* allowed object is
* {@link ArkivSak }
*
*/
public void setArkivSak(ArkivSak value) {
this.arkivSak = 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 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 hoveddokument property.
*
* @return
* possible object is
* {@link Dokumentinformasjon }
*
*/
public Dokumentinformasjon getHoveddokument() {
return hoveddokument;
}
/**
* Sets the value of the hoveddokument property.
*
* @param value
* allowed object is
* {@link Dokumentinformasjon }
*
*/
public void setHoveddokument(Dokumentinformasjon value) {
this.hoveddokument = value;
}
/**
* Gets the value of the vedleggListe 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 vedleggListe property.
*
*
* For example, to add a new item, do as follows:
*
* getVedleggListe().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Dokumentinformasjon }
*
*
*/
public List getVedleggListe() {
if (vedleggListe == null) {
vedleggListe = new ArrayList();
}
return this.vedleggListe;
}
}