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

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

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


/**
 * Informasjon om avsender
 * 
 * 

Java class for Avsender complex type. * *

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

 * <complexType name="Avsender">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="avsenderId" type="{http://nav.no/tjeneste/virksomhet/behandleInngaaendeJournal/v1/informasjon}Identifikator" minOccurs="0"/>
 *         <element name="avsenderNavn" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Avsender", propOrder = { "avsenderId", "avsenderNavn" }) public class Avsender { protected String avsenderId; protected String avsenderNavn; /** * Gets the value of the avsenderId property. * * @return * possible object is * {@link String } * */ public String getAvsenderId() { return avsenderId; } /** * Sets the value of the avsenderId property. * * @param value * allowed object is * {@link String } * */ public void setAvsenderId(String value) { this.avsenderId = value; } /** * Gets the value of the avsenderNavn property. * * @return * possible object is * {@link String } * */ public String getAvsenderNavn() { return avsenderNavn; } /** * Sets the value of the avsenderNavn property. * * @param value * allowed object is * {@link String } * */ public void setAvsenderNavn(String value) { this.avsenderNavn = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy