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

no.nav.tjeneste.virksomhet.behandleinngaaendejournal.v1.meldinger.FerdigstillJournalfoeringRequest 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.meldinger;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for FerdigstillJournalfoeringRequest complex type. * *

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

 * <complexType name="FerdigstillJournalfoeringRequest">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="journalpostId" type="{http://nav.no/tjeneste/virksomhet/behandleInngaaendeJournal/v1/informasjon}Identifikator"/>
 *       </sequence>
 *       <attGroup ref="{http://nav.no/tjeneste/virksomhet/behandleInngaaendeJournal/v1/metadata}Endringssporing"/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FerdigstillJournalfoeringRequest", propOrder = { "journalpostId" }) public class FerdigstillJournalfoeringRequest { @XmlElement(required = true) protected String journalpostId; @XmlAttribute(name = "enhetId") protected String enhetId; /** * 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 enhetId property. * * @return * possible object is * {@link String } * */ public String getEnhetId() { return enhetId; } /** * Sets the value of the enhetId property. * * @param value * allowed object is * {@link String } * */ public void setEnhetId(String value) { this.enhetId = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy