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

de.gematik.ws.conn.signatureservice.v7_4.GetJobNumberResponse Maven / Gradle / Ivy

The newest version!

package de.gematik.ws.conn.signatureservice.v7_4;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.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 ref="{http://ws.gematik.de/conn/SignatureService/v7.4}JobNumber"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "jobNumber" }) @XmlRootElement(name = "GetJobNumberResponse") public class GetJobNumberResponse { @XmlElement(name = "JobNumber", required = true) protected String jobNumber; /** * Gets the value of the jobNumber property. * * @return * possible object is * {@link String } * */ public String getJobNumber() { return jobNumber; } /** * Sets the value of the jobNumber property. * * @param value * allowed object is * {@link String } * */ public void setJobNumber(String value) { this.jobNumber = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy