@Deprecated
public interface Orchestrator
Modifier and Type | Method and Description |
---|---|
com.softwareag.eda.webm.configuration.ConfigEDAOrchestrator |
getConfigEDAOrchestrator()
Deprecated.
The entire class is deprecated. See deprecation notice for
Orchestrator . |
java.lang.String |
getDefaultDestinationName(EventType eventType)
Deprecated.
The entire class is deprecated. See deprecation notice for
Orchestrator . |
java.lang.String |
getDefaultDestinationName(javax.xml.namespace.QName eventTypeQName)
Deprecated.
The entire class is deprecated. See deprecation notice for
Orchestrator . |
EventTypeArtifact |
getEventTypeArtifact(javax.xml.namespace.QName eventTypeQName)
Deprecated.
The entire class is deprecated. See deprecation notice for
Orchestrator . |
java.util.concurrent.ConcurrentHashMap<javax.xml.namespace.QName,EventTypeArtifact> |
getEventTypeArtifacts()
Deprecated.
The entire class is deprecated. See deprecation notice for
Orchestrator . |
void |
publish(EventType eventType,
java.lang.String xml)
Deprecated.
The entire class is deprecated. See deprecation notice for
Orchestrator . |
void |
publish(EventType eventType,
java.lang.String destinationName,
java.lang.String xml)
Deprecated.
The entire class is deprecated. See deprecation notice for
Orchestrator . |
void |
publish(javax.xml.namespace.QName eventTypeQName,
java.lang.String xml)
Deprecated.
The entire class is deprecated. See deprecation notice for
Orchestrator . |
void |
publish(javax.xml.namespace.QName eventTypeQName,
java.lang.String destinationName,
java.lang.String xml)
Deprecated.
The entire class is deprecated. See deprecation notice for
Orchestrator . |
void |
publish(java.lang.String destinationName,
javax.xml.bind.JAXBContext context,
com.softwareag.eda.event.Event event)
Deprecated.
The entire class is deprecated. See deprecation notice for
Orchestrator . |
void |
publishEventTypeDeploymentChange(javax.xml.namespace.QName eventTypeQName)
Deprecated.
The entire class is deprecated. See deprecation notice for
Orchestrator . |
void |
publishNoMsgSelectors(java.lang.String destinationName,
java.lang.String xml)
Deprecated.
The entire class is deprecated. See deprecation notice for
Orchestrator . |
void |
registerEventType(EventType eventType)
Deprecated.
The entire class is deprecated. See deprecation notice for
Orchestrator . |
void |
registerEventType(javax.xml.namespace.QName qName)
Deprecated.
The entire class is deprecated. See deprecation notice for
Orchestrator . |
void |
registerEventType(java.lang.String componentPath)
Deprecated.
The entire class is deprecated. See deprecation notice for
Orchestrator . |
void |
registerEventTypesInEventTypeStore()
Deprecated.
The entire class is deprecated. See deprecation notice for
Orchestrator . |
void |
release()
Deprecated.
The entire class is deprecated. See deprecation notice for
Orchestrator . |
void |
restart()
Deprecated.
The entire class is deprecated. See deprecation notice for
Orchestrator . |
boolean |
subscribe(MessageListener messageListener,
java.lang.String destinationName,
java.lang.String messageSelector)
Deprecated.
The entire class is deprecated. See deprecation notice for
Orchestrator . |
boolean |
subscribe(MessageListener messageListener,
java.lang.String destinationName,
java.lang.String messageSelector,
javax.jms.ExceptionListener exceptionListener)
Deprecated.
The entire class is deprecated. See deprecation notice for
Orchestrator . |
void |
testJNDIConnection()
Deprecated.
|
void |
unsubscribe(MessageListener messageListener,
java.lang.String destinationName,
boolean warnIfDoesNotExist)
Deprecated.
The entire class is deprecated. See deprecation notice for
Orchestrator . |
@Deprecated void publish(EventType eventType, java.lang.String destinationName, java.lang.String xml)
Orchestrator
.eventType
- the event type object represented in the XMLdestinationName
- the name of the JNDI Destination to use for announcementxml
- the event instance in XML format. This XML must comply with the related event type format found in the
eventTypeCache.@Deprecated void publish(javax.xml.namespace.QName eventTypeQName, java.lang.String xml)
Orchestrator
.eventTypeQName
- the event type name found in the eventTypeCache event type. The event type must be
registered before use.xml
- the event instance in XML format. This XML must comply with the related event type format found in the
eventTypeCache.@Deprecated void publish(javax.xml.namespace.QName eventTypeQName, java.lang.String destinationName, java.lang.String xml)
Orchestrator
.eventTypeQName
- the event type Qname found in the eventTypeCache event type. The event type must be
registered before use.destinationName
- the name of the JNDI Destination to use for announcementxml
- the event instance in XML format. This XML must comply with the related event type format found in the
eventTypeCache.@Deprecated void publish(EventType eventType, java.lang.String xml)
Orchestrator
.eventType
- the event type object represented in the XMLxml
- the event instance in XML format. This XML must comply with the related event type format found in the
eventTypeCache.@Deprecated void publishNoMsgSelectors(java.lang.String destinationName, java.lang.String xml) throws java.lang.Exception
Orchestrator
.destinationName
- the name of the JNDI Destination to use for announcementxml
- the event instance in XML format. This XML must comply with the related event type format found in the
eventTypeCache.java.lang.Exception
- ???@Deprecated void publish(java.lang.String destinationName, javax.xml.bind.JAXBContext context, com.softwareag.eda.event.Event event)
Orchestrator
.destinationName
- the name of the JNDI Destination to use for announcementcontext
- the JAXBContext of the event. Should include the class name of the Event and the event
- the event instance in event object format. This event type must first be registered in the
eventTypeCache.@Deprecated void publishEventTypeDeploymentChange(javax.xml.namespace.QName eventTypeQName) throws java.lang.Exception
Orchestrator
.eventTypeQName
- ???java.lang.Exception
- ???@Deprecated boolean subscribe(MessageListener messageListener, java.lang.String destinationName, java.lang.String messageSelector)
Orchestrator
.messageListener
- the class that implements the EDAOrchestratorInterfacedestinationName
- the name of the JMS Destination to subscribe tomessageSelector
- optional - used to filter messages based on filterable attributes of the event (as defined
in the event type XSD)@Deprecated boolean subscribe(MessageListener messageListener, java.lang.String destinationName, java.lang.String messageSelector, javax.jms.ExceptionListener exceptionListener)
Orchestrator
.messageListener
- the class that implements the MessageListenerdestinationName
- the name of the JMS Destination to subscribe tomessageSelector
- optional - used to filter messages based on filterable attributes of the event (as defined
in the event type XSD)exceptionListener
- optional - a listener that is called asynchronously by the JMS provider if a problem
with the connection is detected@Deprecated void unsubscribe(MessageListener messageListener, java.lang.String destinationName, boolean warnIfDoesNotExist)
Orchestrator
.messageListener
- the class that implements the MessageListenerdestinationName
- the name of the JMS Destination to subscribe towarnIfDoesNotExist
- flag that indicates if a warning should be written to log file if given message
listener is not subscribed for the destination name@Deprecated com.softwareag.eda.webm.configuration.ConfigEDAOrchestrator getConfigEDAOrchestrator()
Orchestrator
.@Deprecated void registerEventTypesInEventTypeStore()
Orchestrator
.@Deprecated java.util.concurrent.ConcurrentHashMap<javax.xml.namespace.QName,EventTypeArtifact> getEventTypeArtifacts()
Orchestrator
.@Deprecated java.lang.String getDefaultDestinationName(javax.xml.namespace.QName eventTypeQName)
Orchestrator
.eventTypeQName
- the event type Qname found in the eventTypeCache event type. The event type must be
registered before use.@Deprecated java.lang.String getDefaultDestinationName(EventType eventType)
Orchestrator
.eventType
- ?@Deprecated void registerEventType(EventType eventType)
Orchestrator
.eventType
- the event type object to be registered@Deprecated void registerEventType(javax.xml.namespace.QName qName) throws java.lang.Exception
Orchestrator
.qName
- the qname of the event type to be registeredjava.lang.Exception
- ?@Deprecated void registerEventType(java.lang.String componentPath) throws java.lang.Exception
Orchestrator
.componentPath
- the componentPath to the event type to be registeredjava.lang.Exception
- ?@Deprecated EventTypeArtifact getEventTypeArtifact(javax.xml.namespace.QName eventTypeQName)
Orchestrator
.eventTypeQName
- ?void testJNDIConnection()
@Deprecated void release() throws java.lang.Exception
Orchestrator
.java.lang.Exception
- ?@Deprecated void restart() throws java.lang.Exception
Orchestrator
.java.lang.Exception
- ?