Package com.boomi.connector.api
Interface BrowseContext
-
- All Superinterfaces:
AtomContext,ConnectorContext
- All Known Subinterfaces:
OperationContext
- All Known Implementing Classes:
ConnectorTestContext,SimpleBrowseContext,SimpleOperationContext
public interface BrowseContext extends ConnectorContext
Contextual information about a connector browse request.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetCustomOperationType()Returns the custom type of the operation that is currently being configured.PropertyMapgetOperationProperties()Returns any operation properties flagged asincludeInBrowsefor the current OperationType in the connector's descriptor.OperationTypegetOperationType()Returns the currently configured OperationType-
Methods inherited from interface com.boomi.connector.api.AtomContext
createTempOutputStream, getConfig, getSSLContext, tempOutputStreamToInputStream, tempOutputStreamToPayload
-
Methods inherited from interface com.boomi.connector.api.ConnectorContext
getConnectionProperties, getConnector, getConnectorCache
-
-
-
-
Method Detail
-
getOperationType
OperationType getOperationType()
Returns the currently configured OperationType
-
getCustomOperationType
String getCustomOperationType()
Returns the custom type of the operation that is currently being configured. This is the customTypeId field from the connector descriptor.- Returns:
- customTypeId field from the connector descriptor.
-
getOperationProperties
PropertyMap getOperationProperties()
Returns any operation properties flagged asincludeInBrowsefor the current OperationType in the connector's descriptor.
-
-