de.gematik.ws.conn.servicedirectory.ConnectorServices Maven / Gradle / Ivy
The newest version!
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.0
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.11.11 at 11:20:41 AM CET
//
package de.gematik.ws.conn.servicedirectory;
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/int/version/ProductInformation/v1.1}ProductInformation"/>
* <element name="TLSMandatory" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="ClientAutMandatory" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element ref="{http://ws.gematik.de/conn/ServiceInformation/v2.0}ServiceInformation"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"productInformation",
"tlsMandatory",
"clientAutMandatory",
"serviceInformation"
})
@XmlRootElement(name = "ConnectorServices", namespace = "http://ws.gematik.de/conn/ServiceDirectory/v3.1")
public class ConnectorServices {
@XmlElement(name = "ProductInformation", namespace = "http://ws.gematik.de/int/version/ProductInformation/v1.1", required = true)
protected ProductInformation productInformation;
@XmlElement(name = "TLSMandatory", namespace = "http://ws.gematik.de/conn/ServiceDirectory/v3.1")
protected boolean tlsMandatory;
@XmlElement(name = "ClientAutMandatory", namespace = "http://ws.gematik.de/conn/ServiceDirectory/v3.1")
protected boolean clientAutMandatory;
@XmlElement(name = "ServiceInformation", required = true)
protected ServicesType serviceInformation;
/**
* Gets the value of the productInformation property.
*
* @return
* possible object is
* {@link ProductInformation }
*
*/
public ProductInformation getProductInformation() {
return productInformation;
}
/**
* Sets the value of the productInformation property.
*
* @param value
* allowed object is
* {@link ProductInformation }
*
*/
public void setProductInformation(ProductInformation value) {
this.productInformation = value;
}
/**
* Gets the value of the tlsMandatory property.
*
*/
public boolean isTLSMandatory() {
return tlsMandatory;
}
/**
* Sets the value of the tlsMandatory property.
*
*/
public void setTLSMandatory(boolean value) {
this.tlsMandatory = value;
}
/**
* Gets the value of the clientAutMandatory property.
*
*/
public boolean isClientAutMandatory() {
return clientAutMandatory;
}
/**
* Sets the value of the clientAutMandatory property.
*
*/
public void setClientAutMandatory(boolean value) {
this.clientAutMandatory = value;
}
/**
* Gets the value of the serviceInformation property.
*
* @return
* possible object is
* {@link ServicesType }
*
*/
public ServicesType getServiceInformation() {
return serviceInformation;
}
/**
* Sets the value of the serviceInformation property.
*
* @param value
* allowed object is
* {@link ServicesType }
*
*/
public void setServiceInformation(ServicesType value) {
this.serviceInformation = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy