|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface ConnectorStore
Enables the creation of a Java object that performs tasks related to connectors. One task that can be performed is retrieving a list of connectors. A connector enables an endpoint to invoke a service using various invocation methods. For example, an Email connector enables an endpoint to invoke a service using email messages.
| Method Summary | |
|---|---|
Connector |
create(Connector aConnector)
Creates a connector. |
Connector |
getConnector(java.lang.String connectorId)
Retrieves a connector that corresponds to a specified identifier value. |
java.util.List |
getConnectors()
Retrieves a list of all connectors supported by the service container. |
void |
remove(Connector aConnector)
Removes an existing connector. |
| Method Detail |
|---|
java.util.List getConnectors()
java.util.List that contains supported connectors.
Each element is a Connector object.Connector
Connector getConnector(java.lang.String connectorId)
throws ConnectorNotFoundException
connectorId - An identifier value that is used to retrieve a specific connector.
Connector object that corresponds to the identifier value.
ConnectorNotFoundException - If the specified identifier value
does not correspond to a valid connector.Connector
Connector create(Connector aConnector)
throws DuplicateConnectorException,
com.adobe.idp.dsc.DSCRuntimeException
aConnector - A Connector object that represents the new connector to create.
Connector object that represents the new connector.
DuplicateConnectorException - If the specified connector already exists.
com.adobe.idp.dsc.DSCRuntimeException - If a run-time error occurred.Connector
void remove(Connector aConnector)
throws ConnectorNotFoundException
aConnector - A Connector object that represents the connector to remove.
ConnectorNotFoundException - If the specified connector does not exist.Connector
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||