de.gematik.ws.conn.certificateservice.v6.VerifyCertificate Maven / Gradle / Ivy
The newest version!
package de.gematik.ws.conn.certificateservice.v6;
import javax.xml.datatype.XMLGregorianCalendar;
import de.gematik.ws.conn.connectorcontext.v2.ContextType;
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/ConnectorContext/v2.0}Context"/>
* <element ref="{http://ws.gematik.de/conn/CertificateServiceCommon/v2.0}X509Certificate"/>
* <element name="VerificationTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"context",
"x509Certificate",
"verificationTime"
})
@XmlRootElement(name = "VerifyCertificate")
public class VerifyCertificate {
@XmlElement(name = "Context", namespace = "http://ws.gematik.de/conn/ConnectorContext/v2.0", required = true)
protected ContextType context;
@XmlElement(name = "X509Certificate", namespace = "http://ws.gematik.de/conn/CertificateServiceCommon/v2.0", required = true)
protected byte[] x509Certificate;
@XmlElement(name = "VerificationTime")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar verificationTime;
/**
* Gets the value of the context property.
*
* @return
* possible object is
* {@link ContextType }
*
*/
public ContextType getContext() {
return context;
}
/**
* Sets the value of the context property.
*
* @param value
* allowed object is
* {@link ContextType }
*
*/
public void setContext(ContextType value) {
this.context = value;
}
/**
* Gets the value of the x509Certificate property.
*
* @return
* possible object is
* byte[]
*/
public byte[] getX509Certificate() {
return x509Certificate;
}
/**
* Sets the value of the x509Certificate property.
*
* @param value
* allowed object is
* byte[]
*/
public void setX509Certificate(byte[] value) {
this.x509Certificate = value;
}
/**
* Gets the value of the verificationTime property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getVerificationTime() {
return verificationTime;
}
/**
* Sets the value of the verificationTime property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setVerificationTime(XMLGregorianCalendar value) {
this.verificationTime = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy