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

de.gematik.ws.conn.eventservice.v7.Subscribe Maven / Gradle / Ivy


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.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}Subscription"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "context", "subscription" }) @XmlRootElement(name = "Subscribe") public class Subscribe { @XmlElement(name = "Context", namespace = "http://ws.gematik.de/conn/ConnectorContext/v2.0", required = true) protected ContextType context; @XmlElement(name = "Subscription", required = true) protected SubscriptionType subscription; /** * 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 subscription property. * * @return * possible object is * {@link SubscriptionType } * */ public SubscriptionType getSubscription() { return subscription; } /** * Sets the value of the subscription property. * * @param value * allowed object is * {@link SubscriptionType } * */ public void setSubscription(SubscriptionType value) { this.subscription = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy