Package com.boomi.connector.api.network
Interface NetworkAuthenticatorConnector
-
- All Superinterfaces:
Connector
- All Known Implementing Classes:
WSConnector
public interface NetworkAuthenticatorConnector extends Connector
Enhanced Connector which provides a factory method to create an optionalNetworkAuthenticator
instance. Connector developers can implement this instead of the baseConnector
interface if they require an authenticator.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NetworkAuthenticator
createAuthenticator(BrowseContext context)
Factory method to create a newNetworkAuthenticator
instance based on the currentBrowseContext
.-
Methods inherited from interface com.boomi.connector.api.Connector
createBrowser, createOperation, initialize
-
-
-
-
Method Detail
-
createAuthenticator
NetworkAuthenticator createAuthenticator(BrowseContext context)
Factory method to create a newNetworkAuthenticator
instance based on the currentBrowseContext
. Implementing classes may return null if no network authentication is necessary. Non-null instances returned by this factory will be used to obtain authentication for a network connection.- Parameters:
context
- BrowserContext with connection and operation configuration- Returns:
- new
NetworkAuthenticator
instance, null if this feature is not currently used for specific connection settings
-
-