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

de.gematik.ws.conn.signatureservice.v7.GetSignatureModeResponse Maven / Gradle / Ivy

The newest version!

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

import javax.xml.datatype.Duration;
import de.gematik.ws.conn.connectorcommon.v5.Status;
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.XmlSchemaType;
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/ConnectorCommon/v5.0}Status"/>
 *         <element name="ComfortSignatureStatus" type="{http://ws.gematik.de/conn/SignatureService/v7.5}ComfortSignatureStatusEnum"/>
 *         <element name="ComfortSignatureMax" type="{http://ws.gematik.de/conn/SignatureService/v7.5}CountType"/>
 *         <element name="ComfortSignatureTimer" type="{http://www.w3.org/2001/XMLSchema}duration"/>
 *         <element ref="{http://ws.gematik.de/conn/SignatureService/v7.5}SessionInfo" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "status", "comfortSignatureStatus", "comfortSignatureMax", "comfortSignatureTimer", "sessionInfo" }) @XmlRootElement(name = "GetSignatureModeResponse") public class GetSignatureModeResponse { @XmlElement(name = "Status", namespace = "http://ws.gematik.de/conn/ConnectorCommon/v5.0", required = true) protected Status status; @XmlElement(name = "ComfortSignatureStatus", required = true) @XmlSchemaType(name = "string") protected ComfortSignatureStatusEnum comfortSignatureStatus; @XmlElement(name = "ComfortSignatureMax") @XmlSchemaType(name = "integer") protected int comfortSignatureMax; @XmlElement(name = "ComfortSignatureTimer", required = true) protected Duration comfortSignatureTimer; @XmlElement(name = "SessionInfo") protected SessionInfo sessionInfo; /** * Gets the value of the status property. * * @return * possible object is * {@link Status } * */ public Status getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link Status } * */ public void setStatus(Status value) { this.status = value; } /** * Gets the value of the comfortSignatureStatus property. * * @return * possible object is * {@link ComfortSignatureStatusEnum } * */ public ComfortSignatureStatusEnum getComfortSignatureStatus() { return comfortSignatureStatus; } /** * Sets the value of the comfortSignatureStatus property. * * @param value * allowed object is * {@link ComfortSignatureStatusEnum } * */ public void setComfortSignatureStatus(ComfortSignatureStatusEnum value) { this.comfortSignatureStatus = value; } /** * Gets the value of the comfortSignatureMax property. * */ public int getComfortSignatureMax() { return comfortSignatureMax; } /** * Sets the value of the comfortSignatureMax property. * */ public void setComfortSignatureMax(int value) { this.comfortSignatureMax = value; } /** * Gets the value of the comfortSignatureTimer property. * * @return * possible object is * {@link Duration } * */ public Duration getComfortSignatureTimer() { return comfortSignatureTimer; } /** * Sets the value of the comfortSignatureTimer property. * * @param value * allowed object is * {@link Duration } * */ public void setComfortSignatureTimer(Duration value) { this.comfortSignatureTimer = value; } /** * Gets the value of the sessionInfo property. * * @return * possible object is * {@link SessionInfo } * */ public SessionInfo getSessionInfo() { return sessionInfo; } /** * Sets the value of the sessionInfo property. * * @param value * allowed object is * {@link SessionInfo } * */ public void setSessionInfo(SessionInfo value) { this.sessionInfo = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy