de.gematik.ws.conn.eventservice.v7.RenewSubscriptions Maven / Gradle / Ivy
package de.gematik.ws.conn.eventservice.v7;
import java.util.ArrayList;
import java.util.List;
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.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" maxOccurs="1000"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"context",
"subscriptionID"
})
@XmlRootElement(name = "RenewSubscriptions")
public class RenewSubscriptions {
@XmlElement(name = "Context", namespace = "http://ws.gematik.de/conn/ConnectorContext/v2.0", required = true)
protected ContextType context;
@XmlElement(name = "SubscriptionID", required = true)
protected List subscriptionID;
/**
* 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.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the Jakarta XML Binding object.
* This is why there is not a set
method for the subscriptionID property.
*
*
* For example, to add a new item, do as follows:
*
* getSubscriptionID().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getSubscriptionID() {
if (subscriptionID == null) {
subscriptionID = new ArrayList();
}
return this.subscriptionID;
}
}