no.nav.tjeneste.virksomhet.sak.v1.meldinger.HentSakResponse Maven / Gradle / Ivy
package no.nav.tjeneste.virksomhet.sak.v1.meldinger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import no.nav.tjeneste.virksomhet.sak.v1.informasjon.Sak;
/**
* Java class for HentSakResponse complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HentSakResponse">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="sak" type="{http://nav.no/tjeneste/virksomhet/sak/v1/informasjon}Sak"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HentSakResponse", propOrder = {
"sak"
})
public class HentSakResponse {
@XmlElement(required = true)
protected Sak sak;
/**
* Gets the value of the sak property.
*
* @return
* possible object is
* {@link Sak }
*
*/
public Sak getSak() {
return sak;
}
/**
* Sets the value of the sak property.
*
* @param value
* allowed object is
* {@link Sak }
*
*/
public void setSak(Sak value) {
this.sak = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy