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