Class RESTClientConnectorProvider
java.lang.Object
org.odpi.openmetadata.frameworks.connectors.ConnectorProvider
org.odpi.openmetadata.frameworks.connectors.ConnectorProviderBase
org.odpi.openmetadata.frameworks.connectors.OpenConnectorProviderBase
org.odpi.openmetadata.adapters.connectors.restclients.RESTClientConnectorProvider
- All Implemented Interfaces:
AuditLoggingComponent
- Direct Known Subclasses:
SpringRESTClientConnectorProvider
RESTClientConnectorProvider provides base class of the connector provider for the RESTClientConnector.
-
Field Summary
Fields inherited from class org.odpi.openmetadata.frameworks.connectors.ConnectorProviderBase
auditLog, connectorClassName, connectorComponentDescription, connectorInterfaces, connectorTypeBeanFields inherited from class org.odpi.openmetadata.frameworks.connectors.ConnectorProvider
supportedConfigurationProperties, supportedTechnologyTypes, supportedTemplateTypes -
Constructor Summary
ConstructorsConstructorDescriptionConstructor used to initialize the ConnectorProviderBase with the Java class name of the specific REST Client Connector implementation.RESTClientConnectorProvider(OpenConnectorDefinition openConnectorDescription, String connectorClassName, List<String> recognizedConfigurationPropertyNames) Constructor for an open connector provider.RESTClientConnectorProvider(OpenConnectorDefinition openConnectorDescription, String connectorClassName, List<String> recognizedConfigurationPropertyNames, List<String> connectorInterfaces, String expectedDataFormat) Constructor for an open connector provider. -
Method Summary
Methods inherited from class org.odpi.openmetadata.frameworks.connectors.ConnectorProviderBase
equals, getClassForConnector, getConnector, getConnectorClassName, getConnectorComponentDescription, getConnectorType, getNewConnectorGUID, hashCode, setAuditLog, setConnectorClassName, setConnectorComponentDescription, setConnectorTypeProperties, toStringMethods inherited from class org.odpi.openmetadata.frameworks.connectors.ConnectorProvider
getSupportedConfigurationProperties, getSupportedTechnologyTypes, getSupportedTemplateTypes
-
Constructor Details
-
RESTClientConnectorProvider
public RESTClientConnectorProvider()Constructor used to initialize the ConnectorProviderBase with the Java class name of the specific REST Client Connector implementation. This constructor should be overridden in the connector implementation. -
RESTClientConnectorProvider
public RESTClientConnectorProvider(OpenConnectorDefinition openConnectorDescription, String connectorClassName, List<String> recognizedConfigurationPropertyNames) Constructor for an open connector provider.- Parameters:
openConnectorDescription- connector definitionconnectorClassName- connector class namerecognizedConfigurationPropertyNames- list of property names that the connector supports in the configuration properties.
-
RESTClientConnectorProvider
public RESTClientConnectorProvider(OpenConnectorDefinition openConnectorDescription, String connectorClassName, List<String> recognizedConfigurationPropertyNames, List<String> connectorInterfaces, String expectedDataFormat) Constructor for an open connector provider.- Parameters:
openConnectorDescription- connector definitionconnectorClassName- connector class namerecognizedConfigurationPropertyNames- list of property names that the connector supports in the configuration properties.connectorInterfaces- list of interfaces that the connector supports.expectedDataFormat- description of the data format that the connector expects.
-