de.gematik.ws.conn.eventservice.v7.GetSubscription Maven / Gradle / Ivy
The newest version!
package de.gematik.ws.conn.eventservice.v7;
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.XmlAttribute;
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/ConnectorContext/v2.0}Context"/>
* <element ref="{http://ws.gematik.de/conn/EventService/v7.2}SubscriptionID" minOccurs="0"/>
* </sequence>
* <attribute name="mandant-wide" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"context",
"subscriptionID"
})
@XmlRootElement(name = "GetSubscription")
public class GetSubscription {
@XmlElement(name = "Context", namespace = "http://ws.gematik.de/conn/ConnectorContext/v2.0", required = true)
protected ContextType context;
@XmlElement(name = "SubscriptionID")
protected String subscriptionID;
@XmlAttribute(name = "mandant-wide")
protected Boolean mandantWide;
/**
* 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 subscriptionID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSubscriptionID() {
return subscriptionID;
}
/**
* Sets the value of the subscriptionID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSubscriptionID(String value) {
this.subscriptionID = value;
}
/**
* Gets the value of the mandantWide property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public boolean isMandantWide() {
if (mandantWide == null) {
return false;
} else {
return mandantWide;
}
}
/**
* Sets the value of the mandantWide property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setMandantWide(Boolean value) {
this.mandantWide = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy