org.odpi.openmetadata.commonservices.generichandlers.ProcessHandler Maven / Gradle / Ivy
The newest version!
/* SPDX-License-Identifier: Apache-2.0 */
/* Copyright Contributors to the ODPi Egeria project. */
package org.odpi.openmetadata.commonservices.generichandlers;
import org.odpi.openmetadata.frameworks.openmetadata.types.OpenMetadataProperty;
import org.odpi.openmetadata.frameworks.openmetadata.types.OpenMetadataType;
import org.odpi.openmetadata.commonservices.ffdc.InvalidParameterHandler;
import org.odpi.openmetadata.commonservices.repositoryhandler.RepositoryHandler;
import org.odpi.openmetadata.frameworks.auditlog.AuditLog;
import org.odpi.openmetadata.frameworks.connectors.ffdc.InvalidParameterException;
import org.odpi.openmetadata.frameworks.connectors.ffdc.PropertyServerException;
import org.odpi.openmetadata.frameworks.connectors.ffdc.UserNotAuthorizedException;
import org.odpi.openmetadata.metadatasecurity.server.OpenMetadataServerSecurityVerifier;
import org.odpi.openmetadata.repositoryservices.connectors.stores.metadatacollectionstore.properties.instances.*;
import org.odpi.openmetadata.repositoryservices.connectors.stores.metadatacollectionstore.repositoryconnector.OMRSRepositoryHelper;
import org.odpi.openmetadata.repositoryservices.ffdc.exception.TypeErrorException;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* ProcessHandler provides the methods to create and maintain processes and their contents.
* It does not currently support effectivity dates - but probably should.
*/
public class ProcessHandler extends ReferenceableHandler
{
private final AssetHandler processHandler;
private final PortHandler portHandler;
private final OpenMetadataAPIGenericConverter dataFlowConverter;
private final Class dataFlowBeanClass;
private final OpenMetadataAPIGenericConverter controlFlowConverter;
private final Class controlFlowBeanClass;
private final OpenMetadataAPIGenericConverter processCallConverter;
private final Class processCallBeanClass;
private final OpenMetadataAPIGenericConverter lineageMappingConverter;
private final Class lineageMappingClass;
/**
* Construct the handler information needed to interact with the repository services
*
* @param converter specific converter for the PROCESS bean class
* @param beanClass name of bean class that is represented by the generic class PROCESS
* @param portConverter specific converter for the PORT bean class
* @param portBeanClass name of bean class that is represented by the generic class PORT
* @param dataFlowConverter specific converter for the DATA_FLOW bean class
* @param dataFlowBeanClass name of bean class that is represented by the generic class DATA_FLOW
* @param controlFlowConverter specific converter for the CONTROL_FLOW bean class
* @param controlFlowBeanClass name of bean class that is represented by the generic class CONTROL_FLOW
* @param processCallConverter specific converter for the PROCESS_CALL bean class
* @param processCallBeanClass name of bean class that is represented by the generic class PROCESS_CALL
* @param lineageMappingConverter specific converter for the LINEAGE_MAPPING bean class
* @param lineageMappingClass name of bean class that is represented by the generic class LINEAGE_MAPPING
* @param serviceName name of this service
* @param serverName name of the local server
* @param invalidParameterHandler handler for managing parameter errors
* @param repositoryHandler manages calls to the repository services
* @param repositoryHelper provides utilities for manipulating the repository services objects
* @param localServerUserId userId for this server
* @param securityVerifier open metadata security services verifier
* @param supportedZones list of zones that the access service is allowed to serve Asset instances from.
* @param defaultZones list of zones that the access service should set in all new Asset instances.
* @param publishZones list of zones that the access service sets up in published Asset instances.
* @param auditLog destination for audit log events.
*/
public ProcessHandler(OpenMetadataAPIGenericConverter converter,
Class beanClass,
OpenMetadataAPIGenericConverter portConverter,
Class portBeanClass,
OpenMetadataAPIGenericConverter dataFlowConverter,
Class dataFlowBeanClass,
OpenMetadataAPIGenericConverter controlFlowConverter,
Class controlFlowBeanClass,
OpenMetadataAPIGenericConverter processCallConverter,
Class processCallBeanClass,
OpenMetadataAPIGenericConverter lineageMappingConverter,
Class lineageMappingClass,
String serviceName,
String serverName,
InvalidParameterHandler invalidParameterHandler,
RepositoryHandler repositoryHandler,
OMRSRepositoryHelper repositoryHelper,
String localServerUserId,
OpenMetadataServerSecurityVerifier securityVerifier,
List supportedZones,
List defaultZones,
List publishZones,
AuditLog auditLog)
{
super(converter,
beanClass,
serviceName,
serverName,
invalidParameterHandler,
repositoryHandler,
repositoryHelper,
localServerUserId,
securityVerifier,
supportedZones,
defaultZones,
publishZones,
auditLog);
this.processHandler = new AssetHandler<>(converter,
beanClass,
serviceName,
serverName,
invalidParameterHandler,
repositoryHandler,
repositoryHelper,
localServerUserId,
securityVerifier,
supportedZones,
defaultZones,
publishZones,
auditLog);
this.portHandler = new PortHandler<>(portConverter,
portBeanClass,
serviceName,
serverName,
invalidParameterHandler,
repositoryHandler,
repositoryHelper,
localServerUserId,
securityVerifier,
supportedZones,
defaultZones,
publishZones,
auditLog);
this.dataFlowConverter = dataFlowConverter;
this.dataFlowBeanClass = dataFlowBeanClass;
this.controlFlowConverter = controlFlowConverter;
this.controlFlowBeanClass = controlFlowBeanClass;
this.processCallConverter = processCallConverter;
this.processCallBeanClass = processCallBeanClass;
this.lineageMappingConverter = lineageMappingConverter;
this.lineageMappingClass = lineageMappingClass;
}
/* =====================================================================================================================
* A process describes a well-defined series of steps that gets something done.
*/
/**
* Create a new metadata element to represent a process.
*
* @param userId calling user
* @param externalSourceGUID unique identifier of software capability representing the caller
* @param externalSourceName unique name of software capability representing the caller
* @param qualifiedName unique name for this asset
* @param name the short name property for the process
* @param resourceName the full name property for the process
* @param versionIdentifier the stored version identifier property for the process
* @param technicalDescription the stored description property associated with the process
* @param deployedImplementationType technology type
* @param formula the formula that characterize the processing behavior of the process
* @param formulaType the language of the formula
* @param implementationLanguage the implementation language used to create the process
* @param additionalProperties any arbitrary properties not part of the type system
* @param suppliedTypeName name of the type that is a subtype of asset - or null to create standard type
* @param suppliedExtendedProperties properties from any subtype
* @param initialStatus status value for the new process (default = ACTIVE)
* @param effectiveFrom starting time for this relationship (null for all time)
* @param effectiveTo ending time for this relationship (null for all time)
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @return unique identifier of the new process
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public String createProcess(String userId,
String externalSourceGUID,
String externalSourceName,
String qualifiedName,
String name,
String resourceName,
String versionIdentifier,
String technicalDescription,
String deployedImplementationType,
String formula,
String formulaType,
String implementationLanguage,
Map additionalProperties,
String suppliedTypeName,
Map suppliedExtendedProperties,
InstanceStatus initialStatus,
Date effectiveFrom,
Date effectiveTo,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
String typeName = OpenMetadataType.PROCESS.typeName;
if (suppliedTypeName != null)
{
typeName = suppliedTypeName;
}
invalidParameterHandler.validateTypeName(typeName,
OpenMetadataType.PROCESS.typeName,
serviceName,
methodName,
repositoryHelper);
Map extendedProperties = suppliedExtendedProperties;
if (formula != null)
{
if (extendedProperties == null)
{
extendedProperties = new HashMap<>();
}
extendedProperties.put(OpenMetadataProperty.FORMULA.name, formula);
}
if (formulaType != null)
{
if (extendedProperties == null)
{
extendedProperties = new HashMap<>();
}
extendedProperties.put(OpenMetadataProperty.FORMULA_TYPE.name, formulaType);
}
if (implementationLanguage != null)
{
if (extendedProperties == null)
{
extendedProperties = new HashMap<>();
}
extendedProperties.put(OpenMetadataProperty.IMPLEMENTATION_LANGUAGE.name, implementationLanguage);
}
return processHandler.createAssetInRepository(userId,
externalSourceGUID,
externalSourceName,
qualifiedName,
name,
resourceName,
versionIdentifier,
technicalDescription,
deployedImplementationType,
additionalProperties,
typeName,
extendedProperties,
initialStatus,
effectiveFrom,
effectiveTo,
effectiveTime,
methodName);
}
/**
* Create a new metadata element to represent a process using an existing metadata element as a template.
*
* @param userId calling user
* @param externalSourceGUID unique identifier of software capability representing the caller
* @param externalSourceName unique name of software capability representing the caller
* @param templateGUID unique identifier of the metadata element to copy
* @param templateGUIDParameterName parameter supplying templateGUID
* @param qualifiedName unique name for the term - used in other configuration
* @param qualifiedNameParameterName parameter supplying qualifiedName
* @param technicalName short name for the process
* @param versionIdentifier version identifier for the process
* @param description description of the process
* @param forLineage the request is to support lineage retrieval this means entities with the Memento classification can be returned
* @param forDuplicateProcessing the request is for duplicate processing and so must not deduplicate
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @return unique identifier of the new process
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public String createProcessFromTemplate(String userId,
String externalSourceGUID,
String externalSourceName,
String templateGUID,
String templateGUIDParameterName,
String qualifiedName,
String qualifiedNameParameterName,
String technicalName,
String versionIdentifier,
String description,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
return processHandler.addAssetFromTemplate(userId,
externalSourceGUID,
externalSourceName,
templateGUID,
templateGUIDParameterName,
OpenMetadataType.PROCESS.typeGUID,
OpenMetadataType.PROCESS.typeName,
qualifiedName,
qualifiedNameParameterName,
technicalName,
versionIdentifier,
description,
null,
null,
null,
forLineage,
forDuplicateProcessing,
effectiveTime,
methodName);
}
/**
* Update the metadata element representing a process.
*
* @param userId calling user
* @param externalSourceGUID unique identifier of software capability representing the caller
* @param externalSourceName unique name of software capability representing the caller
* @param processGUID unique identifier of the metadata element to update
* @param processGUIDParameterName unique identifier of the process in the external process manager
* @param isMergeUpdate should the new properties be merged with existing properties (true) or completely replace them (false)?
* @param qualifiedName unique name for this asset
* @param name the display name property for the process
* @param resourceName the full name property for the process
* @param versionIdentifier version identifier for the process
* @param technicalDescription the stored description property associated with the process
* @param deployedImplementationType technology type
* @param formula the formula that characterize the processing behavior of the process
* @param implementationLanguage the implementation language used to create the process
* @param additionalProperties any arbitrary properties not part of the type system
* @param suppliedTypeName name of the type that is a subtype of asset - or null to create standard type
* @param suppliedExtendedProperties properties from any subtype
* @param effectiveFrom time when this process becomes visible to queries - null for any time
* @param effectiveTo time when this process stops being visible to queries - null for never
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public void updateProcess(String userId,
String externalSourceGUID,
String externalSourceName,
String processGUID,
String processGUIDParameterName,
boolean isMergeUpdate,
String qualifiedName,
String name,
String resourceName,
String versionIdentifier,
String technicalDescription,
String deployedImplementationType,
String formula,
String implementationLanguage,
Map additionalProperties,
String suppliedTypeName,
Map suppliedExtendedProperties,
Date effectiveFrom,
Date effectiveTo,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
String typeName = OpenMetadataType.PROCESS.typeName;
if (suppliedTypeName != null)
{
typeName = suppliedTypeName;
}
String typeGUID = invalidParameterHandler.validateTypeName(typeName,
OpenMetadataType.ASSET.typeName,
serviceName,
methodName,
repositoryHelper);
Map extendedProperties = suppliedExtendedProperties;
if (formula != null)
{
if (extendedProperties == null)
{
extendedProperties = new HashMap<>();
}
extendedProperties.put(OpenMetadataProperty.FORMULA.name, formula);
}
if (implementationLanguage != null)
{
if (extendedProperties == null)
{
extendedProperties = new HashMap<>();
}
extendedProperties.put(OpenMetadataProperty.IMPLEMENTATION_LANGUAGE.name, implementationLanguage);
}
processHandler.updateAsset(userId,
externalSourceGUID,
externalSourceName,
processGUID,
processGUIDParameterName,
qualifiedName,
name,
resourceName,
versionIdentifier,
technicalDescription,
deployedImplementationType,
additionalProperties,
typeGUID,
typeName,
supportedZones,
extendedProperties,
effectiveFrom,
effectiveTo,
isMergeUpdate,
forLineage,
forDuplicateProcessing,
effectiveTime,
methodName);
}
/**
* Update the status of the metadata element representing a process.
*
* @param userId calling user
* @param externalSourceGUID unique identifier of software capability representing the caller
* @param externalSourceName unique name of software capability representing the caller
* @param processGUID unique identifier of the process to update
* @param processGUIDParameterName unique identifier of the process in the external process manager
* @param processStatus new status for the process
* @param processStatusParameterName parameter supplying processStatus
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public void updateProcessStatus(String userId,
String externalSourceGUID,
String externalSourceName,
String processGUID,
String processGUIDParameterName,
InstanceStatus processStatus,
String processStatusParameterName,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
this.updateBeanStatusInRepository(userId,
externalSourceGUID,
externalSourceName,
processGUID,
processGUIDParameterName,
OpenMetadataType.PROCESS.typeGUID,
OpenMetadataType.PROCESS.typeName,
forLineage,
forDuplicateProcessing,
supportedZones,
processStatus,
processStatusParameterName,
effectiveTime,
methodName);
}
/**
* Create a parent-child relationship between two processes.
*
* @param userId calling user
* @param externalSourceGUID unique identifier of software capability representing the caller
* @param externalSourceName unique name of software capability representing the caller
* @param parentProcessGUID unique identifier of the process in the external process manager that is to be the parent process
* @param parentProcessGUIDParameterName parameter supplying parentProcessGUID
* @param childProcessGUID unique identifier of the process in the external process manager that is to be the nested sub-process
* @param childProcessGUIDParameterName parameter supplying childProcessGUID
* @param effectiveFrom the date when this element is active - null for active now
* @param effectiveTo the date when this element becomes inactive - null for active until deleted
* @param containmentType describes the ownership of the sub-process
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public void setupProcessParent(String userId,
String externalSourceGUID,
String externalSourceName,
String parentProcessGUID,
String parentProcessGUIDParameterName,
String childProcessGUID,
String childProcessGUIDParameterName,
Date effectiveFrom,
Date effectiveTo,
int containmentType,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
InstanceProperties properties;
try
{
properties = repositoryHelper.addEnumPropertyToInstance(serviceName,
null,
OpenMetadataType.CONTAINMENT_TYPE_PROPERTY_NAME,
OpenMetadataType.PROCESS_CONTAINMENT_TYPE_ENUM_TYPE_GUID,
OpenMetadataType.PROCESS_CONTAINMENT_TYPE_ENUM_TYPE_NAME,
containmentType,
methodName);
}
catch (TypeErrorException classificationNotSupported)
{
throw new InvalidParameterException(classificationNotSupported, OpenMetadataType.CONTAINMENT_TYPE_PROPERTY_NAME);
}
processHandler.linkElementToElement(userId,
externalSourceGUID,
externalSourceName,
parentProcessGUID,
parentProcessGUIDParameterName,
OpenMetadataType.PROCESS.typeName,
childProcessGUID,
childProcessGUIDParameterName,
OpenMetadataType.PROCESS.typeName,
forLineage,
forDuplicateProcessing,
supportedZones,
OpenMetadataType.PROCESS_HIERARCHY_TYPE_GUID,
OpenMetadataType.PROCESS_HIERARCHY_TYPE_NAME,
properties,
effectiveFrom,
effectiveTo,
effectiveTime,
methodName);
}
/**
* Remove a parent-child relationship between two processes.
*
* @param userId calling user
* @param externalSourceGUID unique identifier of software capability representing the caller
* @param externalSourceName unique name of software capability representing the caller
* @param parentProcessGUID unique identifier of the process in the external process manager that is to be the parent process
* @param parentProcessGUIDParameterName parameter supplying parentProcessGUID
* @param childProcessGUID unique identifier of the process in the external process manager that is to be the nested sub-process
* @param childProcessGUIDParameterName parameter supplying childProcessGUID
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public void clearProcessParent(String userId,
String externalSourceGUID,
String externalSourceName,
String parentProcessGUID,
String parentProcessGUIDParameterName,
String childProcessGUID,
String childProcessGUIDParameterName,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
processHandler.unlinkElementFromElement(userId,
false,
externalSourceGUID,
externalSourceName,
parentProcessGUID,
parentProcessGUIDParameterName,
OpenMetadataType.PROCESS.typeName,
childProcessGUID,
childProcessGUIDParameterName,
OpenMetadataType.PROCESS.typeGUID,
OpenMetadataType.PROCESS.typeName,
forLineage,
forDuplicateProcessing,
supportedZones,
OpenMetadataType.PROCESS_HIERARCHY_TYPE_GUID,
OpenMetadataType.PROCESS_HIERARCHY_TYPE_NAME,
effectiveTime,
methodName);
}
/**
* Update the zones for the process so that it becomes visible to consumers.
* (The zones are set to the list of zones in the publishedZones option configured for each
* instance of the Asset Manager OMAS).
*
* @param userId calling user
* @param processGUID unique identifier of the metadata element to publish
* @param processGUIDParameterName parameter supplying processGUID
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public void publishProcess(String userId,
String processGUID,
String processGUIDParameterName,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
processHandler.publishAsset(userId,
processGUID,
processGUIDParameterName,
forLineage,
forDuplicateProcessing,
effectiveTime,
methodName);
}
/**
* Update the zones for the process so that it is no longer visible to consumers.
*
* @param userId calling user
* @param processGUID unique identifier of the metadata element to withdraw
* @param processGUIDParameterName parameter supplying processGUID
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public void withdrawProcess(String userId,
String processGUID,
String processGUIDParameterName,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
processHandler.publishAsset(userId,
processGUID,
processGUIDParameterName,
forLineage,
forDuplicateProcessing,
effectiveTime,
methodName);
}
/**
* Remove the metadata element representing a process.
*
* @param userId calling user
* @param externalSourceGUID unique identifier of software capability representing the caller
* @param externalSourceName unique name of software capability representing the caller
* @param processGUID unique identifier of the metadata element to remove
* @param processGUIDParameterName unique identifier of the process in the external process manager
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public void removeProcess(String userId,
String externalSourceGUID,
String externalSourceName,
String processGUID,
String processGUIDParameterName,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
processHandler.deleteBeanInRepository(userId,
externalSourceGUID,
externalSourceName,
processGUID,
processGUIDParameterName,
OpenMetadataType.PROCESS.typeGUID,
OpenMetadataType.PROCESS.typeName,
null,
null,
forLineage,
forDuplicateProcessing,
effectiveTime,
methodName);
}
/**
* Retrieve the list of process metadata elements that contain the search string.
* The search string is treated as a regular expression.
*
* @param userId calling user
* @param searchString string to find in the properties
* @param searchStringParameterName parameter supplying searchString
* @param startFrom paging start point
* @param pageSize maximum results that can be returned
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @return list of matching metadata elements
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public List findProcesses(String userId,
String searchString,
String searchStringParameterName,
int startFrom,
int pageSize,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
invalidParameterHandler.validateUserId(userId, methodName);
invalidParameterHandler.validateSearchString(searchString, searchStringParameterName, methodName);
int validatedPageSize = invalidParameterHandler.validatePaging(startFrom, pageSize, methodName);
return processHandler.findAssets(userId,
OpenMetadataType.PROCESS.typeGUID,
OpenMetadataType.PROCESS.typeName,
searchString,
searchStringParameterName,
startFrom,
validatedPageSize,
forLineage,
forDuplicateProcessing,
effectiveTime,
methodName);
}
/**
* Retrieve the list of process metadata elements with a matching qualified or display name.
* There are no wildcards supported on this request.
*
* @param userId calling user
* @param name name to search for
* @param nameParameterName parameter supplying name
* @param startFrom paging start point
* @param pageSize maximum results that can be returned
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @return list of matching metadata elements
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public List getProcessesByName(String userId,
String name,
String nameParameterName,
int startFrom,
int pageSize,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
return processHandler.getAssetsByName(userId,
OpenMetadataType.PROCESS.typeGUID,
OpenMetadataType.PROCESS.typeName,
name,
nameParameterName,
supportedZones,
startFrom,
pageSize,
forLineage,
forDuplicateProcessing,
effectiveTime,
methodName);
}
/**
* Retrieve the process metadata element with the supplied unique identifier.
*
* @param userId calling user
* @param processGUID unique identifier of the requested metadata element
* @param processGUIDParameterName parameter supplying processGUID
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @return requested metadata element
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public PROCESS getProcessByGUID(String userId,
String processGUID,
String processGUIDParameterName,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
return processHandler.getBeanFromRepository(userId,
processGUID,
processGUIDParameterName,
OpenMetadataType.PROCESS.typeName,
forLineage,
forDuplicateProcessing,
effectiveTime,
methodName);
}
/**
* Retrieve the process metadata element with the supplied unique identifier.
*
* @param userId calling user
* @param processGUID unique identifier of the requested metadata element
* @param processGUIDParameterName parameter supplying processGUID
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @return parent process element
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public PROCESS getProcessParent(String userId,
String processGUID,
String processGUIDParameterName,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
return processHandler.getAttachedElement(userId,
processGUID,
processGUIDParameterName,
OpenMetadataType.PROCESS.typeName,
OpenMetadataType.PROCESS_HIERARCHY_TYPE_GUID,
OpenMetadataType.PROCESS_HIERARCHY_TYPE_NAME,
OpenMetadataType.PROCESS.typeName,
2,
forLineage,
forDuplicateProcessing,
supportedZones,
effectiveTime,
methodName);
}
/**
* Retrieve the process metadata element with the supplied unique identifier.
*
* @param userId calling user
* @param processGUID unique identifier of the requested metadata element
* @param processGUIDParameterName parameter supplying processGUID
* @param startFrom paging start point
* @param pageSize maximum results that can be returned
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @return list of process element
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public List getSubProcesses(String userId,
String processGUID,
String processGUIDParameterName,
int startFrom,
int pageSize,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
invalidParameterHandler.validateUserId(userId, methodName);
invalidParameterHandler.validateGUID(processGUID, processGUIDParameterName, methodName);
int validatedPageSize = invalidParameterHandler.validatePaging(startFrom, pageSize, methodName);
return processHandler.getAttachedElements(userId,
null,
null,
processGUID,
processGUIDParameterName,
OpenMetadataType.PROCESS.typeName,
OpenMetadataType.PROCESS_HIERARCHY_TYPE_GUID,
OpenMetadataType.PROCESS_HIERARCHY_TYPE_NAME,
OpenMetadataType.PROCESS.typeName,
null,
null,
2,
forLineage,
forDuplicateProcessing,
supportedZones,
startFrom,
validatedPageSize,
effectiveTime,
methodName);
}
/* ===============================================================================
* A process typically contains ports that show the flow of data and control to and from it.
*/
/**
* Create a new metadata element to represent a port.
*
* @param userId calling user
* @param externalSourceGUID unique identifier of software capability representing the caller
* @param externalSourceName unique name of software capability representing the caller
* @param processGUID unique identifier of the process where the port is located
* @param processGUIDParameterName parameter supplying processGUID
* @param qualifiedName unique name for the port - used in other configuration
* @param displayName short display name for the port
* @param portType description of the port
* @param additionalProperties additional properties for a port
* @param suppliedTypeName type name from the caller (enables creation of subtypes)
* @param extendedProperties properties for a port subtype
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @return unique identifier of the new metadata element for the port
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public String createPort(String userId,
String externalSourceGUID,
String externalSourceName,
String processGUID,
String processGUIDParameterName,
String qualifiedName,
String displayName,
int portType,
Map additionalProperties,
String suppliedTypeName,
Map extendedProperties,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
return portHandler.createPort(userId,
externalSourceGUID,
externalSourceName,
processGUID,
processGUIDParameterName,
qualifiedName,
displayName,
portType,
additionalProperties,
suppliedTypeName,
extendedProperties,
forLineage,
forDuplicateProcessing,
effectiveTime,
methodName);
}
/**
* Update the properties of the metadata element representing a port. This call replaces
* all existing properties with the supplied properties.
*
* @param userId calling user
* @param externalSourceGUID unique identifier of software capability representing the caller
* @param externalSourceName unique name of software capability representing the caller
* @param portGUID unique identifier of the port to update
* @param portGUIDParameterName parameter supplying portGUID
* @param qualifiedName unique name for the port - used in other configuration
* @param displayName short display name for the port
* @param portType description of the port
* @param additionalProperties additional properties for a port
* @param suppliedTypeName type name from the caller (enables creation of subtypes)
* @param extendedProperties properties for a port subtype
* @param effectiveFrom the date when this element is active - null for active now
* @param effectiveTo the date when this element becomes inactive - null for active until deleted
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public void updatePort(String userId,
String externalSourceGUID,
String externalSourceName,
String portGUID,
String portGUIDParameterName,
String qualifiedName,
String displayName,
int portType,
Map additionalProperties,
String suppliedTypeName,
Map extendedProperties,
Date effectiveFrom,
Date effectiveTo,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
portHandler.updatePort(userId,
externalSourceGUID,
externalSourceName,
portGUID,
portGUIDParameterName,
qualifiedName,
displayName,
portType,
additionalProperties,
suppliedTypeName,
extendedProperties,
effectiveFrom,
effectiveTo,
forLineage,
forDuplicateProcessing,
effectiveTime,
methodName);
}
/**
* Link a port to a process.
*
* @param userId calling user
* @param externalSourceGUID unique identifier of software capability representing the caller
* @param externalSourceName unique name of software capability representing the caller
* @param processGUID unique identifier of the process
* @param processGUIDParameterName parameter supplying processGUID
* @param portGUID unique identifier of the port
* @param portGUIDParameterName parameter supplying portGUID
* @param effectiveFrom the date when this element is active - null for active now
* @param effectiveTo the date when this element becomes inactive - null for active until deleted
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public void setupProcessPort(String userId,
String externalSourceGUID,
String externalSourceName,
String processGUID,
String processGUIDParameterName,
String portGUID,
String portGUIDParameterName,
Date effectiveFrom,
Date effectiveTo,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
portHandler.setupProcessPort(userId,
externalSourceGUID,
externalSourceName,
processGUID,
processGUIDParameterName,
portGUID,
portGUIDParameterName,
effectiveFrom,
effectiveTo,
forLineage,
forDuplicateProcessing,
effectiveTime,
methodName);
}
/**
* Unlink a port from a process.
*
* @param userId calling user
* @param externalSourceGUID unique identifier of software capability representing the caller
* @param externalSourceName unique name of software capability representing the caller
* @param processGUID unique identifier of the process
* @param processGUIDParameterName parameter supplying processGUID
* @param portGUID unique identifier of the port
* @param portGUIDParameterName parameter supplying portGUID
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public void clearProcessPort(String userId,
String externalSourceGUID,
String externalSourceName,
String processGUID,
String processGUIDParameterName,
String portGUID,
String portGUIDParameterName,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
portHandler.clearProcessPort(userId,
externalSourceGUID,
externalSourceName,
processGUID,
processGUIDParameterName,
portGUID,
portGUIDParameterName,
forLineage,
forDuplicateProcessing,
effectiveTime,
methodName);
}
/**
* Link two ports together to show that portTwo is an implementation of portOne. (That is, portOne delegates to
* portTwo.)
*
* @param userId calling user
* @param externalSourceGUID unique identifier of software capability representing the caller
* @param externalSourceName unique name of software capability representing the caller
* @param portOneGUID unique identifier of the port at end 1
* @param portOneGUIDParameterName parameter supplying portOneGUID
* @param portTwoGUID unique identifier of the port at end 2
* @param portTwoGUIDParameterName parameter supplying portTwoGUID
* @param effectiveFrom the date when this element is active - null for active now
* @param effectiveTo the date when this element becomes inactive - null for active until deleted
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public void setupPortDelegation(String userId,
String externalSourceGUID,
String externalSourceName,
String portOneGUID,
String portOneGUIDParameterName,
String portTwoGUID,
String portTwoGUIDParameterName,
Date effectiveFrom,
Date effectiveTo,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
portHandler.setupPortDelegation(userId,
externalSourceGUID,
externalSourceName,
portOneGUID,
portOneGUIDParameterName,
portTwoGUID,
portTwoGUIDParameterName,
effectiveFrom,
effectiveTo,
forLineage,
forDuplicateProcessing,
effectiveTime,
methodName);
}
/**
* Remove the port delegation relationship between two ports.
*
* @param userId calling user
* @param externalSourceGUID unique identifier of software capability representing the caller
* @param externalSourceName unique name of software capability representing the caller
* @param portOneGUID unique identifier of the port at end 1
* @param portOneGUIDParameterName parameter supplying portOneGUID
* @param portTwoGUID unique identifier of the port at end 2
* @param portTwoGUIDParameterName parameter supplying portTwoGUID
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public void clearPortDelegation(String userId,
String externalSourceGUID,
String externalSourceName,
String portOneGUID,
String portOneGUIDParameterName,
String portTwoGUID,
String portTwoGUIDParameterName,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
portHandler.clearPortDelegation(userId,
externalSourceGUID,
externalSourceName,
portOneGUID,
portOneGUIDParameterName,
portTwoGUID,
portTwoGUIDParameterName,
forLineage,
forDuplicateProcessing,
effectiveTime,
methodName);
}
/**
* Link a schema type to a port to show the structure of data it accepts.
*
* @param userId calling user
* @param externalSourceGUID unique identifier of software capability representing the caller
* @param externalSourceName unique name of software capability representing the caller
* @param portGUID unique identifier of the port
* @param portGUIDParameterName parameter supplying portGUID
* @param schemaTypeGUID unique identifier of the schemaType
* @param schemaTypeGUIDParameterName parameter supplying schemaTypeGUID
* @param effectiveFrom the date when this element is active - null for active now
* @param effectiveTo the date when this element becomes inactive - null for active until deleted
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public void setupPortSchemaType(String userId,
String externalSourceGUID,
String externalSourceName,
String portGUID,
String portGUIDParameterName,
String schemaTypeGUID,
String schemaTypeGUIDParameterName,
Date effectiveFrom,
Date effectiveTo,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
portHandler.setupPortSchemaType(userId,
externalSourceGUID,
externalSourceName,
portGUID,
portGUIDParameterName,
schemaTypeGUID,
schemaTypeGUIDParameterName,
effectiveFrom,
effectiveTo,
forLineage,
forDuplicateProcessing,
effectiveTime,
methodName);
}
/**
* Remove the schema type from a port.
*
* @param userId calling user
* @param externalSourceGUID unique identifier of software capability representing the caller
* @param externalSourceName unique name of software capability representing the caller
* @param portGUID unique identifier of the port
* @param portGUIDParameterName parameter supplying portGUID
* @param schemaTypeGUID unique identifier of the schemaType
* @param schemaTypeGUIDParameterName parameter supplying schemaTypeGUID
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public void clearPortSchemaType(String userId,
String externalSourceGUID,
String externalSourceName,
String portGUID,
String portGUIDParameterName,
String schemaTypeGUID,
String schemaTypeGUIDParameterName,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
portHandler.clearPortSchemaType(userId,
externalSourceGUID,
externalSourceName,
portGUID,
portGUIDParameterName,
schemaTypeGUID,
schemaTypeGUIDParameterName,
forLineage,
forDuplicateProcessing,
effectiveTime,
methodName);
}
/**
* Remove the metadata element representing a port.
*
* @param userId calling user
* @param externalSourceGUID unique identifier of software capability representing the caller
* @param externalSourceName unique name of software capability representing the caller
* @param portGUID unique identifier of the metadata element to remove
* @param portGUIDParameterName parameter supplying portGUID
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public void removePort(String userId,
String externalSourceGUID,
String externalSourceName,
String portGUID,
String portGUIDParameterName,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
portHandler.removePort(userId,
externalSourceGUID,
externalSourceName,
portGUID,
portGUIDParameterName,
forLineage,
forDuplicateProcessing,
effectiveTime, methodName);
}
/**
* Retrieve the list of port metadata elements that contain the search string.
* The search string is treated as a regular expression.
*
* @param userId calling user
* @param searchString string to find in the properties
* @param searchStringParameterName parameter supplying searchString
* @param startFrom paging start point
* @param pageSize maximum results that can be returned
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @return list of matching metadata elements
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public List findPorts(String userId,
String searchString,
String searchStringParameterName,
int startFrom,
int pageSize,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
return portHandler.findPorts(userId,
searchString,
searchStringParameterName,
startFrom,
pageSize,
forLineage,
forDuplicateProcessing,
effectiveTime, methodName);
}
/**
* Retrieve the list of ports associated with a process.
*
* @param userId calling user
* @param processGUID unique identifier of the process of interest
* @param processGUIDParameterName parameter passing processGUID
* @param startFrom paging start point
* @param pageSize maximum results that can be returned
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @return list of associated metadata elements
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public List getPortsForProcess(String userId,
String processGUID,
String processGUIDParameterName,
int startFrom,
int pageSize,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
return portHandler.getPortsForProcess(userId,
processGUID,
processGUIDParameterName,
startFrom,
pageSize,
forLineage,
forDuplicateProcessing,
effectiveTime,
methodName);
}
/**
* Retrieve the list of ports that delegate to this port.
*
* @param userId calling user
* @param portGUID unique identifier of the starting port
* @param portGUIDParameterName parameter passing portGUID
* @param startFrom paging start point
* @param pageSize maximum results that can be returned
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @return list of associated metadata elements
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public List getPortUse(String userId,
String portGUID,
String portGUIDParameterName,
int startFrom,
int pageSize,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
return portHandler.getPortUse(userId,
portGUID,
portGUIDParameterName,
startFrom,
pageSize,
forLineage,
forDuplicateProcessing,
effectiveTime,
methodName);
}
/**
* Retrieve the port that this port delegates to.
*
* @param userId calling user
* @param portGUID unique identifier of the starting port alias
* @param portGUIDParameterName parameter passing portGUID
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @return matching metadata element
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public PORT getPortDelegation(String userId,
String portGUID,
String portGUIDParameterName,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
return portHandler.getPortDelegation(userId,
portGUID,
portGUIDParameterName,
forLineage,
forDuplicateProcessing,
effectiveTime,
methodName);
}
/**
* Retrieve the list of port metadata elements with a matching qualified or display name.
* There are no wildcards supported on this request.
*
* @param userId calling user
* @param name name to search for
* @param nameParameterName parameter supplying name
* @param startFrom paging start point
* @param pageSize maximum results that can be returned
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @return list of matching metadata elements
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public List getPortsByName(String userId,
String name,
String nameParameterName,
int startFrom,
int pageSize,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
return portHandler.getPortsByName(userId,
name,
nameParameterName,
startFrom,
pageSize,
forLineage,
forDuplicateProcessing,
effectiveTime, methodName);
}
/**
* Retrieve the port metadata element with the supplied unique identifier.
*
* @param userId calling user
* @param portGUID unique identifier of the requested metadata element
* @param portGUIDParameterName parameter passing portGUID
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @return matching metadata element
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public PORT getPortByGUID(String userId,
String portGUID,
String portGUIDParameterName,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
return portHandler.getPortByGUID(userId,
portGUID,
portGUIDParameterName,
forLineage,
forDuplicateProcessing,
effectiveTime,
methodName);
}
/* ===============================================================================
* Process linkage and lineage stitching
*/
/**
* Link two elements together to show that data flows from one to the other.
*
* @param userId calling user
* @param externalSourceGUID unique identifier of software capability representing the caller
* @param externalSourceName unique name of software capability representing the caller
* @param dataSupplierGUID unique identifier of the data supplier
* @param dataSupplierGUIDParameterName parameter supplying dataSupplierGUID
* @param dataConsumerGUID unique identifier of the data consumer
* @param dataConsumerGUIDParameterName parameter supplying dataConsumerGUID
* @param effectiveFrom the date when this element is active - null for active now
* @param effectiveTo the date when this element becomes inactive - null for active until deleted
* @param qualifiedName unique identifier for this relationship
* @param description description and/or purpose of the data flow
* @param formula function that determines the subset of the data that flows
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @return unique identifier of the relationship
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public String setupDataFlow(String userId,
String externalSourceGUID,
String externalSourceName,
String dataSupplierGUID,
String dataSupplierGUIDParameterName,
String dataConsumerGUID,
String dataConsumerGUIDParameterName,
Date effectiveFrom,
Date effectiveTo,
String qualifiedName,
String description,
String formula,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
invalidParameterHandler.validateUserId(userId, methodName);
invalidParameterHandler.validateGUID(dataSupplierGUID, dataSupplierGUIDParameterName, methodName);
invalidParameterHandler.validateGUID(dataConsumerGUID, dataConsumerGUIDParameterName, methodName);
InstanceProperties relationshipProperties = repositoryHelper.addStringPropertyToInstance(serviceName,
null,
OpenMetadataProperty.QUALIFIED_NAME.name,
qualifiedName,
methodName);
relationshipProperties = repositoryHelper.addStringPropertyToInstance(serviceName,
relationshipProperties,
OpenMetadataProperty.DESCRIPTION.name,
description,
methodName);
relationshipProperties = repositoryHelper.addStringPropertyToInstance(serviceName,
relationshipProperties,
OpenMetadataProperty.FORMULA.name,
formula,
methodName);
return super.multiLinkElementToElement(userId,
externalSourceGUID,
externalSourceName,
dataSupplierGUID,
dataSupplierGUIDParameterName,
OpenMetadataType.REFERENCEABLE.typeName,
dataConsumerGUID,
dataConsumerGUIDParameterName,
OpenMetadataType.REFERENCEABLE.typeName,
forLineage,
forDuplicateProcessing,
supportedZones,
OpenMetadataType.DATA_FLOW_TYPE_GUID,
OpenMetadataType.DATA_FLOW_TYPE_NAME,
this.setUpEffectiveDates(relationshipProperties, effectiveFrom, effectiveTo),
effectiveTime,
methodName);
}
/**
* Retrieve the data flow relationship between two elements. The qualifiedName is optional unless there
* is more than one data flow relationships between these two elements since it is used to disambiguate
* the request.
*
* @param userId calling user
* @param dataSupplierGUID unique identifier of the data supplier
* @param dataSupplierGUIDParameterName parameter supplying dataSupplierGUID
* @param dataConsumerGUID unique identifier of the data consumer
* @param dataConsumerGUIDParameterName parameter supplying dataConsumerGUID
* @param qualifiedName unique identifier for this relationship
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime time when the relationship is effective
* @param methodName calling method
*
* @return unique identifier and properties of the relationship
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public DATA_FLOW getDataFlow(String userId,
String dataSupplierGUID,
String dataSupplierGUIDParameterName,
String dataConsumerGUID,
String dataConsumerGUIDParameterName,
String qualifiedName,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
invalidParameterHandler.validateUserId(userId, methodName);
invalidParameterHandler.validateGUID(dataSupplierGUID, dataSupplierGUIDParameterName, methodName);
invalidParameterHandler.validateGUID(dataConsumerGUID, dataConsumerGUIDParameterName, methodName);
List relationships = super.getAttachmentLinks(userId,
dataSupplierGUID,
dataSupplierGUIDParameterName,
OpenMetadataType.REFERENCEABLE.typeName,
OpenMetadataType.DATA_FLOW_TYPE_GUID,
OpenMetadataType.DATA_FLOW_TYPE_NAME,
dataConsumerGUID,
OpenMetadataType.REFERENCEABLE.typeName,
2,
forLineage,
forDuplicateProcessing,
supportedZones,
0,
0,
effectiveTime,
methodName);
if (relationships != null)
{
for (Relationship relationship : relationships)
{
if (relationship != null)
{
if (qualifiedName == null)
{
return dataFlowConverter.getNewRelationshipBean(dataFlowBeanClass, relationship, methodName);
}
String relationshipQualifiedName = repositoryHelper.getStringProperty(serviceName,
OpenMetadataProperty.QUALIFIED_NAME.name,
relationship.getProperties(),
methodName);
if (qualifiedName.equals(relationshipQualifiedName))
{
return dataFlowConverter.getNewRelationshipBean(dataFlowBeanClass, relationship, methodName);
}
}
}
}
return null;
}
/**
* Update relationship between two elements that shows that data flows from one to the other.
*
* @param userId calling user
* @param externalSourceGUID unique identifier of software capability representing the caller
* @param externalSourceName unique name of software capability representing the caller
* @param dataFlowGUID unique identifier of the data flow relationship
* @param dataFlowGUIDParameterName parameter supplying dataFlowGUID
* @param effectiveFrom the date when this element is active - null for active now
* @param effectiveTo the date when this element becomes inactive - null for active until deleted
* @param qualifiedName unique identifier for this relationship
* @param description description and/or purpose of the data flow
* @param formula function that determines the subset of the data that flows
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public void updateDataFlow(String userId,
String externalSourceGUID,
String externalSourceName,
String dataFlowGUID,
String dataFlowGUIDParameterName,
Date effectiveFrom,
Date effectiveTo,
String qualifiedName,
String description,
String formula,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
invalidParameterHandler.validateUserId(userId, methodName);
invalidParameterHandler.validateGUID(dataFlowGUID, dataFlowGUIDParameterName, methodName);
InstanceProperties properties = repositoryHelper.addStringPropertyToInstance(serviceName,
null,
OpenMetadataProperty.QUALIFIED_NAME.name,
qualifiedName,
methodName);
properties = repositoryHelper.addStringPropertyToInstance(serviceName,
properties,
OpenMetadataProperty.DESCRIPTION.name,
description,
methodName);
properties = repositoryHelper.addStringPropertyToInstance(serviceName,
properties,
OpenMetadataProperty.FORMULA.name,
formula,
methodName);
super.updateRelationshipProperties(userId,
externalSourceGUID,
externalSourceName,
dataFlowGUID,
dataFlowGUIDParameterName,
OpenMetadataType.DATA_FLOW_TYPE_NAME,
false,
this.setUpEffectiveDates(properties, effectiveFrom, effectiveTo),
forLineage,
forDuplicateProcessing,
effectiveTime,
methodName);
}
/**
* Remove the data flow relationship between two elements.
*
* @param userId calling user
* @param externalSourceGUID unique identifier of software capability representing the caller
* @param externalSourceName unique name of software capability representing the caller
* @param dataFlowGUID unique identifier of the data flow relationship
* @param dataFlowGUIDParameterName parameter supplying dataFlowGUID
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public void clearDataFlow(String userId,
String externalSourceGUID,
String externalSourceName,
String dataFlowGUID,
String dataFlowGUIDParameterName,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
invalidParameterHandler.validateUserId(userId, methodName);
invalidParameterHandler.validateGUID(dataFlowGUID, dataFlowGUIDParameterName, methodName);
super.deleteRelationship(userId,
externalSourceGUID,
externalSourceName,
dataFlowGUID,
dataFlowGUIDParameterName,
OpenMetadataType.DATA_FLOW_TYPE_NAME,
forLineage,
forDuplicateProcessing,
effectiveTime,
methodName);
}
/**
* Retrieve the data flow relationships linked from a specific element to the downstream consumers.
*
* @param userId calling user
* @param dataSupplierGUID unique identifier of the data supplier
* @param dataSupplierGUIDParameterName parameter supplying dataSupplierGUID
* @param startFrom paging start point
* @param pageSize maximum results that can be returned
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @return unique identifier and properties of the relationship
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public List getDataFlowConsumers(String userId,
String dataSupplierGUID,
String dataSupplierGUIDParameterName,
int startFrom,
int pageSize,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
invalidParameterHandler.validateUserId(userId, methodName);
invalidParameterHandler.validateGUID(dataSupplierGUID, dataSupplierGUIDParameterName, methodName);
List relationships = super.getAttachmentLinks(userId,
dataSupplierGUID,
dataSupplierGUIDParameterName,
OpenMetadataType.REFERENCEABLE.typeName,
OpenMetadataType.DATA_FLOW_TYPE_GUID,
OpenMetadataType.DATA_FLOW_TYPE_NAME,
null,
OpenMetadataType.REFERENCEABLE.typeName,
2,
forLineage,
forDuplicateProcessing,
supportedZones,
startFrom,
pageSize,
effectiveTime,
methodName);
List dataFlowConsumers = new ArrayList<>();
if (relationships != null)
{
for (Relationship relationship : relationships)
{
if (relationship != null)
{
dataFlowConsumers.add(dataFlowConverter.getNewRelationshipBean(dataFlowBeanClass, relationship, methodName));
}
}
}
if (dataFlowConsumers.isEmpty())
{
dataFlowConsumers = null;
}
return dataFlowConsumers;
}
/**
* Retrieve the data flow relationships linked from a specific element to the upstream suppliers.
*
* @param userId calling user
* @param dataConsumerGUID unique identifier of the data consumer
* @param dataConsumerGUIDParameterName parameter supplying dataConsumerGUID
* @param startFrom paging start point
* @param pageSize maximum results that can be returned
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @return unique identifier and properties of the relationship
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public List getDataFlowSuppliers(String userId,
String dataConsumerGUID,
String dataConsumerGUIDParameterName,
int startFrom,
int pageSize,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
invalidParameterHandler.validateUserId(userId, methodName);
invalidParameterHandler.validateGUID(dataConsumerGUID, dataConsumerGUIDParameterName, methodName);
List relationships = super.getAttachmentLinks(userId,
dataConsumerGUID,
dataConsumerGUIDParameterName,
OpenMetadataType.REFERENCEABLE.typeName,
OpenMetadataType.DATA_FLOW_TYPE_GUID,
OpenMetadataType.DATA_FLOW_TYPE_NAME,
null,
OpenMetadataType.REFERENCEABLE.typeName,
1,
forLineage,
forDuplicateProcessing,
supportedZones,
startFrom,
pageSize,
effectiveTime,
methodName);
List dataFlowSuppliers = new ArrayList<>();
if (relationships != null)
{
for (Relationship relationship : relationships)
{
if (relationship != null)
{
dataFlowSuppliers.add(dataFlowConverter.getNewRelationshipBean(dataFlowBeanClass, relationship, methodName));
}
}
}
if (dataFlowSuppliers.isEmpty())
{
dataFlowSuppliers = null;
}
return dataFlowSuppliers;
}
/**
* Link two elements to show that when one completes the next is started.
*
* @param userId calling user
* @param externalSourceGUID unique identifier of software capability representing the caller
* @param externalSourceName unique name of software capability representing the caller
* @param currentStepGUID unique identifier of the previous step
* @param currentStepGUIDParameterName parameter supplying currentStepGUID
* @param nextStepGUID unique identifier of the next step
* @param nextStepGUIDParameterName parameter supplying nextStepGUID
* @param effectiveFrom the date when this element is active - null for active now
* @param effectiveTo the date when this element becomes inactive - null for active until deleted
* @param qualifiedName unique identifier for this relationship
* @param description description and/or purpose of the control flow
* @param guard function that must be true to travel down this control flow
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @return unique identifier for the control flow relationship
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public String setupControlFlow(String userId,
String externalSourceGUID,
String externalSourceName,
String currentStepGUID,
String currentStepGUIDParameterName,
String nextStepGUID,
String nextStepGUIDParameterName,
Date effectiveFrom,
Date effectiveTo,
String qualifiedName,
String description,
String guard,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
invalidParameterHandler.validateUserId(userId, methodName);
invalidParameterHandler.validateGUID(currentStepGUID, currentStepGUIDParameterName, methodName);
invalidParameterHandler.validateGUID(nextStepGUID, nextStepGUIDParameterName, methodName);
InstanceProperties relationshipProperties = repositoryHelper.addStringPropertyToInstance(serviceName,
null,
OpenMetadataProperty.QUALIFIED_NAME.name,
qualifiedName,
methodName);
relationshipProperties = repositoryHelper.addStringPropertyToInstance(serviceName,
relationshipProperties,
OpenMetadataProperty.DESCRIPTION.name,
description,
methodName);
relationshipProperties = repositoryHelper.addStringPropertyToInstance(serviceName,
relationshipProperties,
OpenMetadataType.GUARD_PROPERTY_NAME,
guard,
methodName);
return super.multiLinkElementToElement(userId,
externalSourceGUID,
externalSourceName,
currentStepGUID,
currentStepGUIDParameterName,
OpenMetadataType.REFERENCEABLE.typeName,
nextStepGUID,
nextStepGUIDParameterName,
OpenMetadataType.REFERENCEABLE.typeName,
forLineage,
forDuplicateProcessing,
supportedZones,
OpenMetadataType.CONTROL_FLOW_TYPE_GUID,
OpenMetadataType.CONTROL_FLOW_TYPE_NAME,
this.setUpEffectiveDates(relationshipProperties, effectiveFrom, effectiveTo),
effectiveTime,
methodName);
}
/**
* Retrieve the control flow relationship between two elements. The qualifiedName is optional unless there
* is more than one control flow relationships between these two elements since it is used to disambiguate
* the request.
*
* @param userId calling user
* @param currentStepGUID unique identifier of the previous step
* @param currentStepGUIDParameterName parameter supplying currentStepGUID
* @param nextStepGUID unique identifier of the next step
* @param nextStepGUIDParameterName parameter supplying nextStepGUID
* @param qualifiedName unique identifier for this relationship
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @return unique identifier and properties of the relationship
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public CONTROL_FLOW getControlFlow(String userId,
String currentStepGUID,
String currentStepGUIDParameterName,
String nextStepGUID,
String nextStepGUIDParameterName,
String qualifiedName,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
invalidParameterHandler.validateUserId(userId, methodName);
invalidParameterHandler.validateGUID(currentStepGUID, currentStepGUIDParameterName, methodName);
invalidParameterHandler.validateGUID(nextStepGUID, nextStepGUIDParameterName, methodName);
List relationships = super.getAttachmentLinks(userId,
currentStepGUID,
currentStepGUIDParameterName,
OpenMetadataType.REFERENCEABLE.typeName,
OpenMetadataType.CONTROL_FLOW_TYPE_GUID,
OpenMetadataType.CONTROL_FLOW_TYPE_NAME,
nextStepGUID,
OpenMetadataType.REFERENCEABLE.typeName,
2,
forLineage,
forDuplicateProcessing,
supportedZones,
0,
0,
effectiveTime,
methodName);
if (relationships != null)
{
for (Relationship relationship : relationships)
{
if (relationship != null)
{
if (qualifiedName == null)
{
return controlFlowConverter.getNewRelationshipBean(controlFlowBeanClass, relationship, methodName);
}
String relationshipQualifiedName = repositoryHelper.getStringProperty(serviceName,
OpenMetadataProperty.QUALIFIED_NAME.name,
relationship.getProperties(),
methodName);
if (qualifiedName.equals(relationshipQualifiedName))
{
return controlFlowConverter.getNewRelationshipBean(controlFlowBeanClass, relationship, methodName);
}
}
}
}
return null;
}
/**
* Update the relationship between two elements that shows that when one completes the next is started.
*
* @param userId calling user
* @param externalSourceGUID unique identifier of software capability representing the caller
* @param externalSourceName unique name of software capability representing the caller
* @param controlFlowGUID unique identifier of the control flow relationship
* @param controlFlowGUIDParameterName parameter supplying controlFlowGUID
* @param effectiveFrom the date when this element is active - null for active now
* @param effectiveTo the date when this element becomes inactive - null for active until deleted
* @param qualifiedName unique identifier for this relationship
* @param description description and/or purpose of the control flow
* @param guard function that must be true to travel down this control flow
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public void updateControlFlow(String userId,
String externalSourceGUID,
String externalSourceName,
String controlFlowGUID,
String controlFlowGUIDParameterName,
Date effectiveFrom,
Date effectiveTo,
String qualifiedName,
String description,
String guard,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
invalidParameterHandler.validateUserId(userId, methodName);
invalidParameterHandler.validateGUID(controlFlowGUID, controlFlowGUIDParameterName, methodName);
InstanceProperties properties = repositoryHelper.addStringPropertyToInstance(serviceName,
null,
OpenMetadataProperty.QUALIFIED_NAME.name,
qualifiedName,
methodName);
properties = repositoryHelper.addStringPropertyToInstance(serviceName,
properties,
OpenMetadataProperty.DESCRIPTION.name,
description,
methodName);
properties = repositoryHelper.addStringPropertyToInstance(serviceName,
properties,
OpenMetadataType.GUARD_PROPERTY_NAME,
guard,
methodName);
super.updateRelationshipProperties(userId,
externalSourceGUID,
externalSourceName,
controlFlowGUID,
controlFlowGUIDParameterName,
OpenMetadataType.CONTROL_FLOW_TYPE_NAME,
false,
this.setUpEffectiveDates(properties, effectiveFrom, effectiveTo),
forLineage,
forDuplicateProcessing,
effectiveTime,
methodName);
}
/**
* Remove the control flow relationship between two elements.
*
* @param userId calling user
* @param externalSourceGUID unique identifier of software capability representing the caller
* @param externalSourceName unique name of software capability representing the caller
* @param controlFlowGUID unique identifier of the control flow relationship
* @param controlFlowGUIDParameterName parameter supplying controlFlowGUID
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public void clearControlFlow(String userId,
String externalSourceGUID,
String externalSourceName,
String controlFlowGUID,
String controlFlowGUIDParameterName,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
invalidParameterHandler.validateUserId(userId, methodName);
invalidParameterHandler.validateGUID(controlFlowGUID, controlFlowGUIDParameterName, methodName);
super.deleteRelationship(userId,
externalSourceGUID,
externalSourceName,
controlFlowGUID,
controlFlowGUIDParameterName,
OpenMetadataType.CONTROL_FLOW_TYPE_NAME,
forLineage,
forDuplicateProcessing,
effectiveTime,
methodName);
}
/**
* Retrieve the control relationships linked from a specific element to the possible next elements in the process.
*
* @param userId calling user
* @param currentStepGUID unique identifier of the current step
* @param currentStepGUIDParameterName parameter supplying currentStepGUID
* @param startFrom paging start point
* @param pageSize maximum results that can be returned
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @return unique identifier and properties of the relationship
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public List getControlFlowNextSteps(String userId,
String currentStepGUID,
String currentStepGUIDParameterName,
int startFrom,
int pageSize,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
invalidParameterHandler.validateUserId(userId, methodName);
invalidParameterHandler.validateGUID(currentStepGUID, currentStepGUIDParameterName, methodName);
List relationships = super.getAttachmentLinks(userId,
currentStepGUID,
currentStepGUIDParameterName,
OpenMetadataType.REFERENCEABLE.typeName,
OpenMetadataType.CONTROL_FLOW_TYPE_GUID,
OpenMetadataType.CONTROL_FLOW_TYPE_NAME,
null,
OpenMetadataType.REFERENCEABLE.typeName,
2,
forLineage,
forDuplicateProcessing,
supportedZones,
startFrom,
pageSize,
effectiveTime,
methodName);
List nextSteps = new ArrayList<>();
if (relationships != null)
{
for (Relationship relationship : relationships)
{
if (relationship != null)
{
nextSteps.add(controlFlowConverter.getNewRelationshipBean(controlFlowBeanClass, relationship, methodName));
}
}
}
if (nextSteps.isEmpty())
{
nextSteps = null;
}
return nextSteps;
}
/**
* Retrieve the control relationships linked from a specific element to the possible previous elements in the process.
*
* @param userId calling user
* @param currentStepGUID unique identifier of the current step
* @param currentStepGUIDParameterName parameter supplying currentStepGUID
* @param startFrom paging start point
* @param pageSize maximum results that can be returned
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @return unique identifier and properties of the relationship
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public List getControlFlowPreviousSteps(String userId,
String currentStepGUID,
String currentStepGUIDParameterName,
int startFrom,
int pageSize,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
invalidParameterHandler.validateUserId(userId, methodName);
invalidParameterHandler.validateGUID(currentStepGUID, currentStepGUIDParameterName, methodName);
List relationships = super.getAttachmentLinks(userId,
currentStepGUID,
currentStepGUIDParameterName,
OpenMetadataType.REFERENCEABLE.typeName,
OpenMetadataType.CONTROL_FLOW_TYPE_GUID,
OpenMetadataType.CONTROL_FLOW_TYPE_NAME,
null,
OpenMetadataType.REFERENCEABLE.typeName,
1,
forLineage,
forDuplicateProcessing,
supportedZones,
startFrom,
pageSize,
effectiveTime,
methodName);
List nextSteps = new ArrayList<>();
if (relationships != null)
{
for (Relationship relationship : relationships)
{
if (relationship != null)
{
nextSteps.add(controlFlowConverter.getNewRelationshipBean(controlFlowBeanClass, relationship, methodName));
}
}
}
if (nextSteps.isEmpty())
{
nextSteps = null;
}
return nextSteps;
}
/**
* Link two elements together to show a request-response call between them.
*
* @param userId calling user
* @param externalSourceGUID unique identifier of software capability representing the caller
* @param externalSourceName unique name of software capability representing the caller
* @param callerGUID unique identifier of the element that is making the call
* @param callerGUIDParameterName parameter supplying callerGUID
* @param calledGUID unique identifier of the element that is processing the call
* @param calledGUIDParameterName parameter supplying calledGUID
* @param qualifiedName unique identifier for this relationship
* @param description description and/or purpose of the process call
* @param formula function that determines the subset of the data that flows
* @param effectiveFrom the date when this element is active - null for active now
* @param effectiveTo the date when this element becomes inactive - null for active until deleted
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @return unique identifier of the new relationship
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public String setupProcessCall(String userId,
String externalSourceGUID,
String externalSourceName,
String callerGUID,
String callerGUIDParameterName,
String calledGUID,
String calledGUIDParameterName,
Date effectiveFrom,
Date effectiveTo,
String qualifiedName,
String description,
String formula,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
invalidParameterHandler.validateUserId(userId, methodName);
invalidParameterHandler.validateGUID(callerGUID, callerGUIDParameterName, methodName);
invalidParameterHandler.validateGUID(calledGUID, calledGUIDParameterName, methodName);
InstanceProperties relationshipProperties = repositoryHelper.addStringPropertyToInstance(serviceName,
null,
OpenMetadataProperty.QUALIFIED_NAME.name,
qualifiedName,
methodName);
relationshipProperties = repositoryHelper.addStringPropertyToInstance(serviceName,
relationshipProperties,
OpenMetadataProperty.DESCRIPTION.name,
description,
methodName);
relationshipProperties = repositoryHelper.addStringPropertyToInstance(serviceName,
relationshipProperties,
OpenMetadataProperty.FORMULA.name,
formula,
methodName);
return super.multiLinkElementToElement(userId,
externalSourceGUID,
externalSourceName,
callerGUID,
callerGUIDParameterName,
OpenMetadataType.REFERENCEABLE.typeName,
calledGUID,
calledGUIDParameterName,
OpenMetadataType.REFERENCEABLE.typeName,
forLineage,
forDuplicateProcessing,
supportedZones,
OpenMetadataType.PROCESS_CALL_TYPE_GUID,
OpenMetadataType.PROCESS_CALL_TYPE_NAME,
this.setUpEffectiveDates(relationshipProperties, effectiveFrom, effectiveTo),
effectiveTime,
methodName);
}
/**
* Retrieve the process call relationship between two elements. The qualifiedName is optional unless there
* is more than one process call relationships between these two elements since it is used to disambiguate
* the request. This is often used in conjunction with update.
*
* @param userId calling user
* @param callerGUID unique identifier of the element that is making the call
* @param callerGUIDParameterName parameter supplying callerGUID
* @param calledGUID unique identifier of the element that is processing the call
* @param calledGUIDParameterName parameter supplying calledGUID
* @param qualifiedName unique identifier for this relationship
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @return unique identifier and properties of the relationship
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public PROCESS_CALL getProcessCall(String userId,
String callerGUID,
String callerGUIDParameterName,
String calledGUID,
String calledGUIDParameterName,
String qualifiedName,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
invalidParameterHandler.validateUserId(userId, methodName);
invalidParameterHandler.validateGUID(callerGUID, callerGUIDParameterName, methodName);
invalidParameterHandler.validateGUID(calledGUID, calledGUIDParameterName, methodName);
List relationships = super.getAttachmentLinks(userId,
callerGUID,
callerGUIDParameterName,
OpenMetadataType.REFERENCEABLE.typeName,
OpenMetadataType.PROCESS_CALL_TYPE_GUID,
OpenMetadataType.PROCESS_CALL_TYPE_NAME,
calledGUID,
OpenMetadataType.REFERENCEABLE.typeName,
2,
forLineage,
forDuplicateProcessing,
supportedZones,
0,
0,
effectiveTime,
methodName);
if (relationships != null)
{
for (Relationship relationship : relationships)
{
if (relationship != null)
{
if (qualifiedName == null)
{
return processCallConverter.getNewRelationshipBean(processCallBeanClass, relationship, methodName);
}
String relationshipQualifiedName = repositoryHelper.getStringProperty(serviceName,
OpenMetadataProperty.QUALIFIED_NAME.name,
relationship.getProperties(),
methodName);
if (qualifiedName.equals(relationshipQualifiedName))
{
return processCallConverter.getNewRelationshipBean(processCallBeanClass, relationship, methodName);
}
}
}
}
return null;
}
/**
* Update the relationship between two elements that shows a request-response call between them.
*
* @param userId calling user
* @param externalSourceGUID unique identifier of software capability representing the caller
* @param externalSourceName unique name of software capability representing the caller
* @param processCallGUID unique identifier of the process call relationship
* @param processCallGUIDParameterName parameter supplying processCallGUID
* @param effectiveFrom the date when this element is active - null for active now
* @param effectiveTo the date when this element becomes inactive - null for active until deleted
* @param qualifiedName unique identifier for this relationship
* @param description description and/or purpose of the process call
* @param formula function that determines the subset of the data that flows
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public void updateProcessCall(String userId,
String externalSourceGUID,
String externalSourceName,
String processCallGUID,
String processCallGUIDParameterName,
Date effectiveFrom,
Date effectiveTo,
String qualifiedName,
String description,
String formula,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
invalidParameterHandler.validateUserId(userId, methodName);
invalidParameterHandler.validateGUID(processCallGUID, processCallGUIDParameterName, methodName);
InstanceProperties properties = repositoryHelper.addStringPropertyToInstance(serviceName,
null,
OpenMetadataProperty.QUALIFIED_NAME.name,
qualifiedName,
methodName);
properties = repositoryHelper.addStringPropertyToInstance(serviceName,
properties,
OpenMetadataProperty.DESCRIPTION.name,
description,
methodName);
properties = repositoryHelper.addStringPropertyToInstance(serviceName,
properties,
OpenMetadataProperty.FORMULA.name,
formula,
methodName);
super.updateRelationshipProperties(userId,
externalSourceGUID,
externalSourceName,
processCallGUID,
processCallGUIDParameterName,
OpenMetadataType.PROCESS_CALL_TYPE_NAME,
false,
this.setUpEffectiveDates(properties, effectiveFrom, effectiveTo),
forLineage,
forDuplicateProcessing,
effectiveTime,
methodName);
}
/**
* Remove the process call relationship.
*
* @param userId calling user
* @param externalSourceGUID unique identifier of software capability representing the caller
* @param externalSourceName unique name of software capability representing the caller
* @param processCallGUID unique identifier of the process call relationship
* @param processCallGUIDParameterName parameter supplying processCallGUID
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public void clearProcessCall(String userId,
String externalSourceGUID,
String externalSourceName,
String processCallGUID,
String processCallGUIDParameterName,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
invalidParameterHandler.validateUserId(userId, methodName);
invalidParameterHandler.validateGUID(processCallGUID, processCallGUIDParameterName, methodName);
super.deleteRelationship(userId,
externalSourceGUID,
externalSourceName,
processCallGUID,
processCallGUIDParameterName,
OpenMetadataType.PROCESS_CALL_TYPE_NAME,
forLineage,
forDuplicateProcessing,
effectiveTime,
methodName);
}
/**
* Retrieve the process call relationships linked from a specific element to the elements it calls.
*
* @param userId calling user
* @param callerGUID unique identifier of the element that is making the call
* @param callerGUIDParameterName parameter supplying callerGUID
* @param startFrom paging start point
* @param pageSize maximum results that can be returned
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @return unique identifier and properties of the relationship
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public List getProcessCalled(String userId,
String callerGUID,
String callerGUIDParameterName,
int startFrom,
int pageSize,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
invalidParameterHandler.validateUserId(userId, methodName);
invalidParameterHandler.validateGUID(callerGUID, callerGUIDParameterName, methodName);
List relationships = super.getAttachmentLinks(userId,
callerGUID,
callerGUIDParameterName,
OpenMetadataType.REFERENCEABLE.typeName,
OpenMetadataType.PROCESS_CALL_TYPE_GUID,
OpenMetadataType.PROCESS_CALL_TYPE_NAME,
null,
OpenMetadataType.REFERENCEABLE.typeName,
2,
forLineage,
forDuplicateProcessing,
supportedZones,
startFrom,
pageSize,
effectiveTime,
methodName);
List called = new ArrayList<>();
if (relationships != null)
{
for (Relationship relationship : relationships)
{
if (relationship != null)
{
called.add(processCallConverter.getNewRelationshipBean(processCallBeanClass, relationship, methodName));
}
}
}
if (called.isEmpty())
{
called = null;
}
return called;
}
/**
* Retrieve the process call relationships linked from a specific element to its callers.
*
* @param userId calling user
* @param calledGUID unique identifier of the element that is processing the call
* @param calledGUIDParameterName parameter supplying calledGUID
* @param startFrom paging start point
* @param pageSize maximum results that can be returned
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @return unique identifier and properties of the relationship
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public List getProcessCallers(String userId,
String calledGUID,
String calledGUIDParameterName,
int startFrom,
int pageSize,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
invalidParameterHandler.validateUserId(userId, methodName);
invalidParameterHandler.validateGUID(calledGUID, calledGUIDParameterName, methodName);
List relationships = super.getAttachmentLinks(userId,
calledGUID,
calledGUIDParameterName,
OpenMetadataType.REFERENCEABLE.typeName,
OpenMetadataType.PROCESS_CALL_TYPE_GUID,
OpenMetadataType.PROCESS_CALL_TYPE_NAME,
null,
OpenMetadataType.REFERENCEABLE.typeName,
1,
forLineage,
forDuplicateProcessing,
supportedZones,
startFrom,
pageSize,
effectiveTime,
methodName);
List caller = new ArrayList<>();
if (relationships != null)
{
for (Relationship relationship : relationships)
{
if (relationship != null)
{
caller.add(processCallConverter.getNewRelationshipBean(processCallBeanClass, relationship, methodName));
}
}
}
if (caller.isEmpty())
{
caller = null;
}
return caller;
}
/**
* Link to elements together to show that they are part of the lineage of the data that is moving
* between the processes. Typically, the lineage relationships stitch together processes and data assets
* supported by different technologies.
*
* @param userId calling user
* @param sourceElementGUID unique identifier of the source
* @param sourceElementGUIDParameterName parameter supplying sourceElementGUID
* @param destinationElementGUID unique identifier of the destination
* @param destinationElementGUIDParameterName parameter supplying destinationElementGUID
* @param qualifiedName unique identifier for this relationship
* @param description description and/or purpose of the mapping
* @param effectiveFrom the date when this element is active - null for active now
* @param effectiveTo the date when this element becomes inactive - null for active until deleted
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @return unique identifier of the new relationship
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public String setupLineageMapping(String userId,
String sourceElementGUID,
String sourceElementGUIDParameterName,
String destinationElementGUID,
String destinationElementGUIDParameterName,
String qualifiedName,
String description,
Date effectiveFrom,
Date effectiveTo,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
invalidParameterHandler.validateUserId(userId, methodName);
invalidParameterHandler.validateGUID(sourceElementGUID, sourceElementGUIDParameterName, methodName);
invalidParameterHandler.validateGUID(destinationElementGUID, destinationElementGUIDParameterName, methodName);
InstanceProperties properties = repositoryHelper.addStringPropertyToInstance(serviceName,
null,
OpenMetadataProperty.QUALIFIED_NAME.name,
qualifiedName,
methodName);
properties = repositoryHelper.addStringPropertyToInstance(serviceName,
properties,
OpenMetadataProperty.DESCRIPTION.name,
description,
methodName);
return super.multiLinkElementToElement(userId,
null,
null,
sourceElementGUID,
sourceElementGUIDParameterName,
OpenMetadataType.REFERENCEABLE.typeName,
destinationElementGUID,
destinationElementGUIDParameterName,
OpenMetadataType.REFERENCEABLE.typeName,
forLineage,
forDuplicateProcessing,
supportedZones,
OpenMetadataType.LINEAGE_MAPPING_TYPE_GUID,
OpenMetadataType.LINEAGE_MAPPING_TYPE_NAME,
this.setUpEffectiveDates(properties, effectiveFrom, effectiveTo),
effectiveTime,
methodName);
}
/**
* Retrieve the lineage mapping relationship between two elements. The qualifiedName is optional unless there
* is more than one lineage mapping relationships between these two elements since it is used to disambiguate
* the request. This is often used in conjunction with update.
*
* @param userId calling user
* @param sourceElementGUID unique identifier of the source
* @param sourceElementGUIDParameterName parameter supplying sourceElementGUID
* @param destinationElementGUID unique identifier of the destination
* @param destinationElementGUIDParameterName parameter supplying destinationElementGUID
* @param qualifiedName unique identifier for this relationship
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @return unique identifier and properties of the relationship
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public LINEAGE_MAPPING getLineageMapping(String userId,
String sourceElementGUID,
String sourceElementGUIDParameterName,
String destinationElementGUID,
String destinationElementGUIDParameterName,
String qualifiedName,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
invalidParameterHandler.validateUserId(userId, methodName);
invalidParameterHandler.validateGUID(sourceElementGUID, sourceElementGUIDParameterName, methodName);
invalidParameterHandler.validateGUID(destinationElementGUID, destinationElementGUIDParameterName, methodName);
List relationships = super.getAttachmentLinks(userId,
sourceElementGUID,
sourceElementGUIDParameterName,
OpenMetadataType.REFERENCEABLE.typeName,
OpenMetadataType.LINEAGE_MAPPING_TYPE_GUID,
OpenMetadataType.LINEAGE_MAPPING_TYPE_NAME,
destinationElementGUID,
OpenMetadataType.REFERENCEABLE.typeName,
2,
forLineage,
forDuplicateProcessing,
supportedZones,
0,
0,
effectiveTime,
methodName);
if (relationships != null)
{
for (Relationship relationship : relationships)
{
if (relationship != null)
{
if (qualifiedName == null)
{
return lineageMappingConverter.getNewRelationshipBean(lineageMappingClass, relationship, methodName);
}
String relationshipQualifiedName = repositoryHelper.getStringProperty(serviceName,
OpenMetadataProperty.QUALIFIED_NAME.name,
relationship.getProperties(),
methodName);
if (qualifiedName.equals(relationshipQualifiedName))
{
return lineageMappingConverter.getNewRelationshipBean(lineageMappingClass, relationship, methodName);
}
}
}
}
return null;
}
/**
* Update the relationship between two elements that shows a request-response call between them.
*
* @param userId calling user
* @param lineageMappingGUID unique identifier of the process call relationship
* @param lineageMappingGUIDParameterName parameter supplying lineageMappingGUID
* @param effectiveFrom the date when this element is active - null for active now
* @param effectiveTo the date when this element becomes inactive - null for active until deleted
* @param qualifiedName unique identifier for this relationship
* @param description description and/or purpose of the mapping
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public void updateLineageMapping(String userId,
String lineageMappingGUID,
String lineageMappingGUIDParameterName,
String qualifiedName,
String description,
Date effectiveFrom,
Date effectiveTo,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
invalidParameterHandler.validateUserId(userId, methodName);
invalidParameterHandler.validateGUID(lineageMappingGUID, lineageMappingGUIDParameterName, methodName);
InstanceProperties properties = repositoryHelper.addStringPropertyToInstance(serviceName,
null,
OpenMetadataProperty.QUALIFIED_NAME.name,
qualifiedName,
methodName);
properties = repositoryHelper.addStringPropertyToInstance(serviceName,
properties,
OpenMetadataProperty.DESCRIPTION.name,
description,
methodName);
super.updateRelationshipProperties(userId,
null,
null,
lineageMappingGUID,
lineageMappingGUIDParameterName,
OpenMetadataType.LINEAGE_MAPPING_TYPE_NAME,
false,
this.setUpEffectiveDates(properties, effectiveFrom, effectiveTo),
forLineage,
forDuplicateProcessing,
effectiveTime,
methodName);
}
/**
* Remove the lineage mapping relationship.
*
* @param userId calling user
* @param lineageMappingGUID unique identifier of the lineage mapping relationship
* @param lineageMappingGUIDParameterName parameter supplying lineageMappingGUID
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public void clearLineageMapping(String userId,
String lineageMappingGUID,
String lineageMappingGUIDParameterName,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
invalidParameterHandler.validateUserId(userId, methodName);
invalidParameterHandler.validateGUID(lineageMappingGUID, lineageMappingGUIDParameterName, methodName);
super.deleteRelationship(userId,
null,
null,
lineageMappingGUID,
lineageMappingGUIDParameterName,
OpenMetadataType.LINEAGE_MAPPING_TYPE_NAME,
forLineage,
forDuplicateProcessing,
effectiveTime,
methodName);
}
/**
* Retrieve the lineage mapping relationships linked from a specific source element to its destinations.
*
* @param userId calling user
* @param sourceElementGUID unique identifier of the source
* @param sourceElementGUIDParameterName parameter supplying sourceElementGUID
* @param startFrom paging start point
* @param pageSize maximum results that can be returned
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @return list of lineage mapping relationships
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public List getDestinationLineageMappings(String userId,
String sourceElementGUID,
String sourceElementGUIDParameterName,
int startFrom,
int pageSize,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
invalidParameterHandler.validateUserId(userId, methodName);
invalidParameterHandler.validateGUID(sourceElementGUID, sourceElementGUIDParameterName, methodName);
List relationships = super.getAttachmentLinks(userId,
sourceElementGUID,
sourceElementGUIDParameterName,
OpenMetadataType.REFERENCEABLE.typeName,
OpenMetadataType.LINEAGE_MAPPING_TYPE_GUID,
OpenMetadataType.LINEAGE_MAPPING_TYPE_NAME,
null,
OpenMetadataType.REFERENCEABLE.typeName,
2,
forLineage,
forDuplicateProcessing,
supportedZones,
startFrom,
pageSize,
effectiveTime,
methodName);
List mappings = new ArrayList<>();
if (relationships != null)
{
for (Relationship relationship : relationships)
{
if (relationship != null)
{
mappings.add(lineageMappingConverter.getNewRelationshipBean(lineageMappingClass, relationship, methodName));
}
}
}
if (mappings.isEmpty())
{
mappings = null;
}
return mappings;
}
/**
* Retrieve the lineage mapping relationships linked from a specific destination element to its sources.
*
* @param userId calling user
* @param destinationElementGUID unique identifier of the destination
* @param destinationElementGUIDParameterName parameter supplying destinationElementGUID
* @param startFrom paging start point
* @param pageSize maximum results that can be returned
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
* @param effectiveTime the time that the retrieved elements must be effective for (null for any time, new Date() for now)
* @param methodName calling method
*
* @return list of lineage mapping relationships
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
public List getSourceLineageMappings(String userId,
String destinationElementGUID,
String destinationElementGUIDParameterName,
int startFrom,
int pageSize,
boolean forLineage,
boolean forDuplicateProcessing,
Date effectiveTime,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
invalidParameterHandler.validateUserId(userId, methodName);
invalidParameterHandler.validateGUID(destinationElementGUID, destinationElementGUIDParameterName, methodName);
List relationships = super.getAttachmentLinks(userId,
destinationElementGUID,
destinationElementGUIDParameterName,
OpenMetadataType.REFERENCEABLE.typeName,
OpenMetadataType.LINEAGE_MAPPING_TYPE_GUID,
OpenMetadataType.LINEAGE_MAPPING_TYPE_NAME,
null,
OpenMetadataType.REFERENCEABLE.typeName,
1,
forLineage,
forDuplicateProcessing,
supportedZones,
startFrom,
pageSize,
effectiveTime,
methodName);
List mappings = new ArrayList<>();
if (relationships != null)
{
for (Relationship relationship : relationships)
{
if (relationship != null)
{
mappings.add(lineageMappingConverter.getNewRelationshipBean(lineageMappingClass, relationship, methodName));
}
}
}
if (mappings.isEmpty())
{
mappings = null;
}
return mappings;
}
}