Class OMRSRepositoryConnector
java.lang.Object
org.odpi.openmetadata.frameworks.connectors.Connector
org.odpi.openmetadata.frameworks.connectors.ConnectorBase
org.odpi.openmetadata.repositoryservices.connectors.stores.metadatacollectionstore.repositoryconnector.OMRSRepositoryConnector
- All Implemented Interfaces:
AuditLoggingComponent
,SecureConnectorExtension
,OMRSMetadataCollectionManager
- Direct Known Subclasses:
EnterpriseOMRSRepositoryConnector
,GraphOMRSRepositoryConnector
,InMemoryOMRSRepositoryConnector
,LocalOMRSRepositoryConnector
,OMRSRESTRepositoryConnector
,XTDBOMRSRepositoryConnector
public abstract class OMRSRepositoryConnector
extends ConnectorBase
implements OMRSMetadataCollectionManager, AuditLoggingComponent
The OMRSRepositoryConnector defines the interface for an OMRS Repository Connector. It is an abstract
class since not all the methods for OMRSMetadataCollectionManager are implemented.
-
Nested Class Summary
Nested classes/interfaces inherited from class org.odpi.openmetadata.frameworks.connectors.ConnectorBase
ConnectorBase.ProtectedConnection
-
Field Summary
Modifier and TypeFieldDescriptionprotected AuditLog
protected int
protected OMRSMetadataCollection
protected String
protected String
protected String
protected OMRSRepositoryHelper
protected String
protected OMRSRepositoryValidator
protected String
protected String
protected String
Fields inherited from class org.odpi.openmetadata.frameworks.connectors.ConnectorBase
connectedAssetProperties, connectionBean, connectionProperties, connectorInstanceId, secretsStoreConnectorMap
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturn the component description that is used by this connector in the audit log.int
Return the maximum PageSizeReturns the metadata collection object that provides an OMRS abstraction of the metadata within a metadata repository.Return the unique id for this metadata collection.Return the metadata collection name of this repository connector.Return the name of the organization that runs/owns the server used to access the repository.Return the repository helper for this connector.Return the name of the repository where the metadata collection resides.Return the repository validator for this connector.Return the name of the server where the metadata collection resides.Return the descriptive string describing the type of the server.Return the userId that the local server should use when processing events and there is no external user driving the operation.void
setAuditLog
(AuditLog auditLog) Receive an audit log object that can be used to record audit log messages.void
setMaxPageSize
(int maxPageSize) Set up the maximum PageSizevoid
setMetadataCollectionId
(String metadataCollectionId) Set up the unique id for this metadata collection.void
setMetadataCollectionName
(String metadataCollectionName) Explicitly set up the metadata collection name.void
setOrganizationName
(String organizationName) Set up the name of the organization that runs/owns the server used to access the repository.void
setRepositoryHelper
(OMRSRepositoryHelper repositoryHelper) Set up a repository helper object for the repository connector to use.void
setRepositoryName
(String repositoryName) Set up the name of the repository where the metadata collection resides.void
setRepositoryValidator
(OMRSRepositoryValidator repositoryValidator) Set up a repository validator for the repository connector to use.void
setServerName
(String serverName) Set up the name of the server where the metadata collection resides.void
setServerType
(String serverType) Set up the descriptive string describing the type of the server.void
setServerUserId
(String localServerUserId) Set up the userId that the local server should use when processing events and there is no external user driving the operation.void
validateRepositoryIsActive
(String methodName) Throw a RepositoryErrorException if the connector is not active.Methods inherited from class org.odpi.openmetadata.frameworks.connectors.ConnectorBase
disconnect, disconnectConnectors, equals, getArrayConfigurationProperty, getAssetTypeName, getBooleanConfigurationProperty, getConnectedAssetProperties, getConnection, getConnectorInstanceId, getIntConfigurationProperty, getNetworkAddresses, getStringConfigurationProperty, getSuppliedPlaceholderProperties, hashCode, initialize, initializeConnectedAssetProperties, initializeSecretsStoreConnector, isActive, start, throwMissingConfigurationProperty, throwMissingResource, throwNoAsset, throwWrongTypeOfAsset, throwWrongTypeOfResource, throwWrongTypeOfRootSchema, toString
Methods inherited from class org.odpi.openmetadata.frameworks.connectors.Connector
clearStatisticProperty, clearStatisticTimestamp, getConnectorStatistics, getStatisticCounter, getStatisticProperty, getStatisticTimestamp, incrementStatisticCounter, initializeStatisticCounter, setStatisticProperty, setStatisticTimestamp
-
Field Details
-
repositoryHelper
-
repositoryValidator
-
repositoryName
-
serverName
-
serverType
-
organizationName
-
serverUserId
-
maxPageSize
protected int maxPageSize -
metadataCollectionId
-
metadataCollectionName
-
metadataCollection
-
auditLog
-
-
Constructor Details
-
OMRSRepositoryConnector
public OMRSRepositoryConnector()Default constructor nothing to do
-
-
Method Details
-
setAuditLog
Receive an audit log object that can be used to record audit log messages. The caller has initialized it with the correct component description and log destinations.- Specified by:
setAuditLog
in interfaceAuditLoggingComponent
- Parameters:
auditLog
- audit log object
-
getConnectorComponentDescription
Return the component description that is used by this connector in the audit log.- Specified by:
getConnectorComponentDescription
in interfaceAuditLoggingComponent
- Returns:
- id, name, description, wiki page URL.
-
setRepositoryHelper
Set up a repository helper object for the repository connector to use.- Specified by:
setRepositoryHelper
in interfaceOMRSMetadataCollectionManager
- Parameters:
repositoryHelper
- helper object for building and querying TypeDefs and metadata instances.
-
getRepositoryHelper
Return the repository helper for this connector.- Returns:
- helper object for building and querying TypeDefs and metadata instances.
-
setRepositoryValidator
Set up a repository validator for the repository connector to use.- Specified by:
setRepositoryValidator
in interfaceOMRSMetadataCollectionManager
- Parameters:
repositoryValidator
- validator object to check the validity of TypeDefs and metadata instances.
-
getRepositoryValidator
Return the repository validator for this connector.- Returns:
- validator object to check the validity of TypeDefs and metadata instances.
-
getRepositoryName
Return the name of the repository where the metadata collection resides.- Specified by:
getRepositoryName
in interfaceOMRSMetadataCollectionManager
- Returns:
- String name
-
setRepositoryName
Set up the name of the repository where the metadata collection resides.- Specified by:
setRepositoryName
in interfaceOMRSMetadataCollectionManager
- Parameters:
repositoryName
- String name
-
getServerName
Return the name of the server where the metadata collection resides.- Specified by:
getServerName
in interfaceOMRSMetadataCollectionManager
- Returns:
- String name
-
setServerName
Set up the name of the server where the metadata collection resides.- Specified by:
setServerName
in interfaceOMRSMetadataCollectionManager
- Parameters:
serverName
- String name
-
getServerType
Return the descriptive string describing the type of the server. This might be the name of the product, or similar identifier.- Specified by:
getServerType
in interfaceOMRSMetadataCollectionManager
- Returns:
- String name
-
setServerType
Set up the descriptive string describing the type of the server. This might be the name of the product, or similar identifier.- Specified by:
setServerType
in interfaceOMRSMetadataCollectionManager
- Parameters:
serverType
- String server type
-
getOrganizationName
Return the name of the organization that runs/owns the server used to access the repository.- Specified by:
getOrganizationName
in interfaceOMRSMetadataCollectionManager
- Returns:
- String name
-
setOrganizationName
Set up the name of the organization that runs/owns the server used to access the repository.- Specified by:
setOrganizationName
in interfaceOMRSMetadataCollectionManager
- Parameters:
organizationName
- String organization name
-
getServerUserId
Return the userId that the local server should use when processing events and there is no external user driving the operation.- Specified by:
getServerUserId
in interfaceOMRSMetadataCollectionManager
- Returns:
- user id
-
setServerUserId
Set up the userId that the local server should use when processing events and there is no external user driving the operation.- Specified by:
setServerUserId
in interfaceOMRSMetadataCollectionManager
- Parameters:
localServerUserId
- string user id
-
getMetadataCollectionId
Return the unique id for this metadata collection.- Specified by:
getMetadataCollectionId
in interfaceOMRSMetadataCollectionManager
- Returns:
- String unique Id
-
setMetadataCollectionId
Set up the unique id for this metadata collection.- Specified by:
setMetadataCollectionId
in interfaceOMRSMetadataCollectionManager
- Parameters:
metadataCollectionId
- String unique Id
-
getMetadataCollectionName
Return the metadata collection name of this repository connector. It defaults to the server name if not set up explicitly.- Returns:
- display name of the metadata collection.
-
setMetadataCollectionName
Explicitly set up the metadata collection name.- Parameters:
metadataCollectionName
- display name of the metadata collection.
-
getMaxPageSize
public int getMaxPageSize()Return the maximum PageSize- Specified by:
getMaxPageSize
in interfaceOMRSMetadataCollectionManager
- Returns:
- maximum number of elements that can be retrieved on a request.
-
setMaxPageSize
public void setMaxPageSize(int maxPageSize) Set up the maximum PageSize- Specified by:
setMaxPageSize
in interfaceOMRSMetadataCollectionManager
- Parameters:
maxPageSize
- maximum number of elements that can be retrieved on a request.
-
validateRepositoryIsActive
Throw a RepositoryErrorException if the connector is not active.- Parameters:
methodName
- name of calling method- Throws:
RepositoryErrorException
- repository connector has not started or has been disconnected.
-
getMetadataCollection
Returns the metadata collection object that provides an OMRS abstraction of the metadata within a metadata repository.- Specified by:
getMetadataCollection
in interfaceOMRSMetadataCollectionManager
- Returns:
- OMRSMetadataInstanceStore metadata information retrieved from the metadata repository.
- Throws:
RepositoryErrorException
- no metadata collection
-