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