Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/* SPDX-License-Identifier: Apache 2.0 */
/* Copyright Contributors to the ODPi Egeria project. */
package org.odpi.openmetadata.commonservices.generichandlers;
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.EntityDetail;
import org.odpi.openmetadata.repositoryservices.connectors.stores.metadatacollectionstore.properties.instances.InstanceProperties;
import org.odpi.openmetadata.repositoryservices.connectors.stores.metadatacollectionstore.properties.instances.Relationship;
import org.odpi.openmetadata.repositoryservices.connectors.stores.metadatacollectionstore.repositoryconnector.OMRSRepositoryHelper;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.Map;
/**
* GovernanceDefinitionHandler provides the exchange of metadata about definition definitions between the repository and the OMAS.
* Note definition definitions are governance metadata and are always defined with LOCAL-COHORT provenance.
*
* @param class that represents the governance definition
*/
public class GovernanceDefinitionHandler extends ReferenceableHandler
{
/**
* Construct the handler with information needed to work with B objects.
*
* @param converter specific converter for this bean class
* @param beanClass name of bean class that is represented by the generic class B
* @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 B instances from
* @param defaultZones list of zones that the access service should set in all new B instances
* @param publishZones list of zones that the access service sets up in published B instances
* @param auditLog destination for audit log events
*/
public GovernanceDefinitionHandler(OpenMetadataAPIGenericConverter converter,
Class beanClass,
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);
}
/**
* Create the governance definition object.
*
* @param userId calling user
* @param qualifiedName unique name for the definition - used in other configuration
* @param title short display name for the governance definition
* @param summary brief description of the governance definition
* @param description description of the governance definition
* @param scope breadth of coverage of the governance definition
* @param domainIdentifier identifier that indicates which governance domain this definition belongs to (0=all)
* @param priority relative importance of the governance definition
* @param implications implications to the business in adopting this governance definition
* @param outcomes expected outcomes from implementing this governance definition
* @param results actual results achieved from implementing this governance definition
* @param businessImperatives for the GovernanceStrategy - how does it link to business imperatives
* @param jurisdiction for Regulations - where does this regulation apply
* @param implementationDescription for GovernanceControl - how should this be implemented
* @param namePattern for NamingStandardsRule - the pattern used to for new names
* @param details for License or Certification - additional details about the definition
* @param additionalProperties additional properties for a definition
* @param suppliedTypeName type name from the caller (enables creation of subtypes)
* @param extendedProperties properties for a definition subtype
* @param methodName calling method
*
* @return unique identifier of the new definition object
* @throws InvalidParameterException qualifiedName or userId is null
* @throws PropertyServerException problem accessing property server
* @throws UserNotAuthorizedException security access problem
*/
public String createGovernanceDefinition(String userId,
String qualifiedName,
String title,
String summary,
String description,
String scope,
int domainIdentifier,
String priority,
List implications,
List outcomes,
List results,
List businessImperatives,
String jurisdiction,
String implementationDescription,
String namePattern,
String details,
Map additionalProperties,
String suppliedTypeName,
Map extendedProperties,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
invalidParameterHandler.validateUserId(userId, methodName);
String typeName = OpenMetadataAPIMapper.GOVERNANCE_DEFINITION_TYPE_NAME;
if (suppliedTypeName != null)
{
typeName = suppliedTypeName;
}
String typeGUID = invalidParameterHandler.validateTypeName(typeName,
OpenMetadataAPIMapper.GOVERNANCE_DEFINITION_TYPE_NAME,
serviceName,
methodName,
repositoryHelper);
GovernanceDefinitionBuilder builder = new GovernanceDefinitionBuilder(qualifiedName,
title,
summary,
description,
scope,
domainIdentifier,
priority,
implications,
outcomes,
results,
businessImperatives,
jurisdiction,
implementationDescription,
namePattern,
details,
additionalProperties,
typeGUID,
typeName,
extendedProperties,
repositoryHelper,
serviceName,
serverName);
return this.createBeanInRepository(userId,
null,
null,
typeGUID,
typeName,
qualifiedName,
OpenMetadataAPIMapper.QUALIFIED_NAME_PROPERTY_NAME,
builder,
methodName);
}
/**
* Update the governance definition.
*
* @param userId calling user
* @param definitionGUID unique identifier for the definition to update
* @param definitionGUIDParameterName parameter supplying the definition
* @param qualifiedName unique name for the definition - used in other configuration
* @param title short display name for the governance definition
* @param summary brief description of the governance definition
* @param description description of the governance definition
* @param scope breadth of coverage of the governance definition
* @param domainIdentifier identifier that indicates which governance domain this definition belongs to (0=all)
* @param priority relative importance of the governance definition
* @param implications implications to the business in adopting this governance definition
* @param outcomes expected outcomes from implementing this governance definition
* @param results actual results achieved from implementing this governance definition
* @param businessImperatives for the GovernanceStrategy - how does it link to business imperatives
* @param jurisdiction for Regulations - where does this regulation apply
* @param implementationDescription for GovernanceControl - how should this be implemented
* @param namePattern for NamingStandardsRule - the pattern used to for new names
* @param details for License or Certification - additional details about the definition
* @param additionalProperties additional properties for a governance definition
* @param suppliedTypeName type of term
* @param extendedProperties properties for a governance definition subtype
* @param isMergeUpdate should the supplied properties be merged with the existing or replace them
* @param methodName calling method
*
* @throws InvalidParameterException qualifiedName or userId is null
* @throws PropertyServerException problem accessing property server
* @throws UserNotAuthorizedException security access problem
*/
public void updateGovernanceDefinition(String userId,
String definitionGUID,
String definitionGUIDParameterName,
String qualifiedName,
String title,
String summary,
String description,
String scope,
int domainIdentifier,
String priority,
List implications,
List outcomes,
List results,
List businessImperatives,
String jurisdiction,
String implementationDescription,
String namePattern,
String details,
Map additionalProperties,
String suppliedTypeName,
Map extendedProperties,
boolean isMergeUpdate,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
final String qualifiedNameParameterName = "qualifiedName";
invalidParameterHandler.validateUserId(userId, methodName);
invalidParameterHandler.validateGUID(definitionGUID, definitionGUIDParameterName, methodName);
invalidParameterHandler.validateName(qualifiedName, qualifiedNameParameterName, methodName);
String typeName = OpenMetadataAPIMapper.GOVERNANCE_DEFINITION_TYPE_NAME;
if (suppliedTypeName != null)
{
typeName = suppliedTypeName;
}
String typeGUID = invalidParameterHandler.validateTypeName(typeName,
OpenMetadataAPIMapper.GOVERNANCE_DEFINITION_TYPE_NAME,
serviceName,
methodName,
repositoryHelper);
GovernanceDefinitionBuilder builder = new GovernanceDefinitionBuilder(qualifiedName,
title,
summary,
description,
scope,
domainIdentifier,
priority,
implications,
outcomes,
results,
businessImperatives,
jurisdiction,
implementationDescription,
namePattern,
details,
additionalProperties,
typeGUID,
typeName,
extendedProperties,
repositoryHelper,
serviceName,
serverName);
this.updateBeanInRepository(userId,
null,
null,
definitionGUID,
definitionGUIDParameterName,
typeGUID,
typeName,
false,
false,
supportedZones,
builder.getInstanceProperties(methodName),
isMergeUpdate,
new Date(),
methodName);
}
/**
* Create a parent-child relationship between two definitions - for example, between a governance policy and an governance control.
* The rationale explains why they are linked.
*
* @param userId calling user
* @param definitionParentGUID unique identifier of the definition super-definition
* @param definitionParentGUIDParameterName parameter supplying the super-definition
* @param definitionParentTypeName typename of super-definition
* @param definitionChildGUID unique identifier of the definition sub-definition
* @param definitionChildGUIDParameterName parameter supplying the sub-definition
* @param definitionChildTypeName type name of the sub-definition
* @param relationshipTypeGUID unique identifier of the relationship type
* @param relationshipTypeName unique name of the relationship type
* @param rationale why are these definitions linked
* @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 setupDelegationRelationship(String userId,
String definitionParentGUID,
String definitionParentGUIDParameterName,
String definitionParentTypeName,
String definitionChildGUID,
String definitionChildGUIDParameterName,
String definitionChildTypeName,
String relationshipTypeGUID,
String relationshipTypeName,
String rationale,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
InstanceProperties properties = repositoryHelper.addStringPropertyToInstance(serviceName,
null,
OpenMetadataAPIMapper.RATIONALE_PROPERTY_NAME,
rationale,
methodName);
this.linkElementToElement(userId,
null,
null,
definitionParentGUID,
definitionParentGUIDParameterName,
definitionParentTypeName,
definitionChildGUID,
definitionChildGUIDParameterName,
definitionChildTypeName,
false,
false,
supportedZones,
relationshipTypeGUID,
relationshipTypeName,
properties,
methodName);
}
/**
* Create a parent-child relationship between two definitions - for example, between two governance policies.
* The description explains why they are linked.
*
* @param userId calling user
* @param definitionParentGUID unique identifier of the definition super-definition
* @param definitionParentGUIDParameterName parameter supplying the super-definition
* @param definitionParentTypeName typename of super-definition
* @param definitionChildGUID unique identifier of the definition sub-definition
* @param definitionChildGUIDParameterName parameter supplying the sub-definition
* @param definitionChildTypeName type name of the sub-definition
* @param relationshipTypeGUID unique identifier of the relationship type
* @param relationshipTypeName unique name of the relationship type
* @param description why are these definitions linked
* @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 setupPeerRelationship(String userId,
String definitionParentGUID,
String definitionParentGUIDParameterName,
String definitionParentTypeName,
String definitionChildGUID,
String definitionChildGUIDParameterName,
String definitionChildTypeName,
String relationshipTypeGUID,
String relationshipTypeName,
String description,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
InstanceProperties properties = repositoryHelper.addStringPropertyToInstance(serviceName,
null,
OpenMetadataAPIMapper.DESCRIPTION_PROPERTY_NAME,
description,
methodName);
this.linkElementToElement(userId,
null,
null,
definitionParentGUID,
definitionParentGUIDParameterName,
definitionParentTypeName,
definitionChildGUID,
definitionChildGUIDParameterName,
definitionChildTypeName,
false,
false,
supportedZones,
relationshipTypeGUID,
relationshipTypeName,
properties,
methodName);
}
/**
* Remove a relationship between two definitions.
*
* @param userId calling user
* @param definitionParentGUID unique identifier of the definition super-definition
* @param definitionParentGUIDParameterName parameter supplying the super-definition
* @param definitionParentTypeName typename of super-definition
* @param definitionChildGUID unique identifier of the definition sub-definition
* @param definitionChildGUIDParameterName parameter supplying the sub-definition
* @param definitionChildTypeGUID type guid of the sub-definition
* @param definitionChildTypeName type name of the sub-definition
* @param relationshipTypeGUID unique identifier of the relationship type
* @param relationshipTypeName unique name of the relationship type
* @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 clearDefinitionRelationship(String userId,
String definitionParentGUID,
String definitionParentGUIDParameterName,
String definitionParentTypeName,
String definitionChildGUID,
String definitionChildGUIDParameterName,
String definitionChildTypeGUID,
String definitionChildTypeName,
String relationshipTypeGUID,
String relationshipTypeName,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
this.unlinkElementFromElement(userId,
false,
null,
null,
definitionParentGUID,
definitionParentGUIDParameterName,
definitionParentTypeName,
definitionChildGUID,
definitionChildGUIDParameterName,
definitionChildTypeGUID,
definitionChildTypeName,
false,
false,
relationshipTypeGUID,
relationshipTypeName,
new Date(),
methodName);
}
/**
* Remove the metadata element representing a governance definition.
*
* @param userId calling user
* @param definitionGUID unique identifier of the metadata element to remove
* @param definitionGUIDParameterName parameter for definitionGUID
* @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 removeGovernanceDefinition(String userId,
String definitionGUID,
String definitionGUIDParameterName,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
this.deleteBeanInRepository(userId,
null,
null,
definitionGUID,
definitionGUIDParameterName,
OpenMetadataAPIMapper.GOVERNANCE_DEFINITION_TYPE_GUID,
OpenMetadataAPIMapper.GOVERNANCE_DEFINITION_TYPE_NAME,
null,
null,
false,
false,
new Date(),
methodName);
}
/**
* Retrieve the list of governance definition metadata elements that contain the search string.
* The search string is treated as a regular expression.
*
* @param userId calling user
* @param typeGUID GUID of the type of governance definition
* @param typeName name of the type of governance definition
* @param searchString string to find in the properties
* @param searchStringParameterName name of parameter supplying the search string
* @param startFrom paging start point
* @param pageSize maximum results that can be returned
* @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 findGovernanceDefinitions(String userId,
String typeGUID,
String typeName,
String searchString,
String searchStringParameterName,
int startFrom,
int pageSize,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
return this.findBeans(userId,
searchString,
searchStringParameterName,
typeGUID,
typeName,
null,
startFrom,
pageSize,
new Date(),
methodName);
}
/**
* Return the list of elements associated with a definition.
*
* @param userId calling user
* @param definitionGUID unique identifier of the definition to query
* @param definitionGUIDParameterName name of the parameter supplying definitionGUID
* @param definitionTypeName type of the starting element
* @param relationshipTypeGUID unique identifier of the relationship (null if any relationship)
* @param relationshipTypeName unique name of the relationship (null if any relationship)
* @param targetElementType type of the target element
* @param startFrom paging start point
* @param pageSize maximum results that can be returned
* @param methodName calling method
*
* @return list of metadata elements describing the definitions associated with the requested definition
*
* @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 getLinkedDefinitions(String userId,
String definitionGUID,
String definitionGUIDParameterName,
String definitionTypeName,
String relationshipTypeGUID,
String relationshipTypeName,
String targetElementType,
int startFrom,
int pageSize,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
return this.getAttachedElements(userId,
null,
null,
definitionGUID,
definitionGUIDParameterName,
definitionTypeName,
relationshipTypeGUID,
relationshipTypeName,
targetElementType,
null,
null,
0,
false,
false,
supportedZones,
startFrom,
pageSize,
new Date(),
methodName);
}
/**
* Return information about the defined governance definitions.
*
* @param userId calling user
* @param typeGUID GUID of the type of governance definition
* @param typeName name of the type of governance definition
* @param startFrom position in the list (used when there are so many reports that paging is needed
* @param pageSize maximum number of elements to return an this call
* @param methodName calling method
*
* @return properties of the governance definitions
*
* @throws InvalidParameterException qualifiedName or userId is null
* @throws PropertyServerException problem accessing property server
* @throws UserNotAuthorizedException security access problem
*/
public List getGovernanceDefinitions(String userId,
String typeGUID,
String typeName,
int startFrom,
int pageSize,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
return this.getBeansByType(userId,
typeGUID,
typeName,
null,
false,
false,
supportedZones,
startFrom,
pageSize,
new Date(),
methodName);
}
/**
* Return information about the defined governance zones for a specific domain.
*
* @param userId calling user
* @param typeGUID GUID of the type of governance definition
* @param typeName name of the type of governance definition
* @param domainIdentifier identifier of domain - 0 is for all domains
* @param startFrom position in the list (used when there are so many reports that paging is needed
* @param pageSize maximum number of elements to return an this call
* @param methodName calling method
*
* @return properties of the governance zone
*
* @throws InvalidParameterException qualifiedName or userId is null
* @throws PropertyServerException problem accessing property server
* @throws UserNotAuthorizedException security access problem
*/
public List getGovernanceDefinitionsByDomain(String userId,
String typeGUID,
String typeName,
int domainIdentifier,
int startFrom,
int pageSize,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
if (domainIdentifier == 0)
{
return this.getGovernanceDefinitions(userId, typeGUID, typeName, startFrom, pageSize, methodName);
}
List entities = this.getEntitiesByType(userId,
typeGUID,
typeName,
null,
false,
false,
supportedZones,
startFrom,
pageSize,
new Date(),
methodName);
List results = new ArrayList<>();
if (entities != null)
{
for (EntityDetail entity : entities)
{
if (entity != null)
{
if (entity.getProperties() != null)
{
if (repositoryHelper.getIntProperty(serviceName,
OpenMetadataAPIMapper.DOMAIN_IDENTIFIER_PROPERTY_NAME,
entity.getProperties(),
methodName) == domainIdentifier)
{
B bean = converter.getNewBean(beanClass, entity, methodName);
results.add(bean);
}
}
}
}
}
if (results.isEmpty())
{
return null;
}
return results;
}
/**
* Retrieve the list of definition metadata elements with a matching qualified or title.
* There are no wildcards supported on this request.
*
* @param userId calling user
* @param typeGUID GUID of the type of governance definition
* @param typeName name of the type of governance definition
* @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 methodName calling method
*
* @return list of matching governance definitions
*
* @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 getGovernanceDefinitionsByName(String userId,
String typeGUID,
String typeName,
String name,
String nameParameterName,
int startFrom,
int pageSize,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
invalidParameterHandler.validateUserId(userId, methodName);
invalidParameterHandler.validateName(name, nameParameterName, methodName);
List specificMatchPropertyNames = new ArrayList<>();
specificMatchPropertyNames.add(OpenMetadataAPIMapper.QUALIFIED_NAME_PROPERTY_NAME);
specificMatchPropertyNames.add(OpenMetadataAPIMapper.TITLE_PROPERTY_NAME);
return this.getBeansByValue(userId,
name,
nameParameterName,
typeGUID,
typeName,
specificMatchPropertyNames,
true,
null,
null,
false,
false,
supportedZones,
null,
startFrom,
pageSize,
new Date(),
methodName);
}
/**
* Retrieve the links to the governance definitions that define the governance for an element.
*
* @param userId calling user
* @param governanceDefinitionTypeName name of the type of required governance definitions
* @param elementGUID unique identifier of the requested metadata element
* @param elementGUIDParameterName parameter name of the elementGUID
* @param elementTypeName name of the type of the starting element
* @param startFrom paging start point
* @param pageSize maximum results that can be returned
* @param methodName calling method
*
* @return list of 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 getGoverningDefinitionLinks(String userId,
String elementGUID,
String elementGUIDParameterName,
String elementTypeName,
String governanceDefinitionTypeName,
int startFrom,
int pageSize,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
String typeName = OpenMetadataAPIMapper.GOVERNANCE_DEFINITION_TYPE_NAME;
if (governanceDefinitionTypeName != null)
{
typeName = governanceDefinitionTypeName;
}
return this.getAttachmentLinks(userId,
elementGUID,
elementGUIDParameterName,
elementTypeName,
OpenMetadataAPIMapper.GOVERNED_BY_TYPE_GUID,
OpenMetadataAPIMapper.GOVERNED_BY_TYPE_NAME,
null,
typeName,
1,
false,
startFrom,
pageSize,
new Date(),
methodName);
}
/**
* Retrieve the governance definitions that define the governance for an element.
*
* @param userId calling user
* @param governanceDefinitionTypeName name of the type of required governance definitions
* @param elementGUID unique identifier of the requested metadata element
* @param elementGUIDParameterName parameter name of the elementGUID
* @param elementTypeName name of the type of the starting element
* @param startFrom paging start point
* @param pageSize maximum results that can be returned
* @param methodName calling method
*
* @return list of governance definition 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 getGoverningDefinitions(String userId,
String elementGUID,
String elementGUIDParameterName,
String elementTypeName,
String governanceDefinitionTypeName,
int startFrom,
int pageSize,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
return this.getAttachedElements(userId,
elementGUID,
elementGUIDParameterName,
elementTypeName,
OpenMetadataAPIMapper.GOVERNED_BY_TYPE_GUID,
OpenMetadataAPIMapper.GOVERNED_BY_TYPE_NAME,
governanceDefinitionTypeName,
null,
null,
1,
false,
false,
startFrom,
pageSize,
new Date(),
methodName);
}
/**
* Retrieve the definition metadata element with the supplied unique identifier.
*
* @param userId calling user
* @param guid unique identifier of the requested metadata element
* @param guidParameterName parameter name of guid
* @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 B getGovernanceDefinitionByGUID(String userId,
String guid,
String guidParameterName,
String methodName) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException
{
return this.getBeanFromRepository(userId,
guid,
guidParameterName,
OpenMetadataAPIMapper.GOVERNANCE_DEFINITION_TYPE_NAME,
false,
false,
supportedZones,
new Date(),
methodName);
}
}