Class CommunityRESTServices
java.lang.Object
org.odpi.openmetadata.accessservices.communityprofile.server.CommunityRESTServices
CommunityRESTServices provides the API operations to create and maintain community information.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionclearCommunityRole
(String serverName, String userId, String communityGUID, String communityRoleGUID, ExternalSourceRequestBody requestBody) Remove a relationship between a community and a role.createCommunity
(String serverName, String userId, ReferenceableRequestBody requestBody) Create a new metadata element to represent a community.createCommunityFromTemplate
(String serverName, String userId, String templateGUID, TemplateRequestBody requestBody) Create a new metadata element to represent a community using an existing metadata element as a template.findCommunities
(String serverName, String userId, SearchStringRequestBody requestBody, int startFrom, int pageSize) Retrieve the list of community metadata elements that contain the search string.getCommunities
(String serverName, String userId, int startFrom, int pageSize) Retrieve the list of community metadata elements with a matching qualified or display name.getCommunitiesByName
(String serverName, String userId, NameRequestBody requestBody, int startFrom, int pageSize) Retrieve the list of community metadata elements with a matching qualified or display name.getCommunityByGUID
(String serverName, String userId, String guid) Retrieve the community metadata element with the supplied unique identifier.getRolesForCommunity
(String serverName, String userId, String communityGUID, int startFrom, int pageSize) Return information about a person role connected to the named community.removeCommunity
(String serverName, String userId, String communityGUID, ExternalSourceRequestBody requestBody) Remove the metadata element representing a community.setupCommunityRole
(String serverName, String userId, String communityGUID, String communityRoleGUID, RelationshipRequestBody requestBody) Create a relationship between a community and a person role.updateCommunity
(String serverName, String userId, String communityGUID, boolean isMergeUpdate, ReferenceableRequestBody requestBody) Update the metadata element representing a community.
-
Constructor Details
-
CommunityRESTServices
public CommunityRESTServices()Default constructor
-
-
Method Details
-
createCommunity
public GUIDResponse createCommunity(String serverName, String userId, ReferenceableRequestBody requestBody) Create a new metadata element to represent a community.- Parameters:
serverName
- name of the service to route the request to.userId
- calling userrequestBody
- properties to store- Returns:
- unique identifier of the new metadata element or InvalidParameterException one of the parameters is invalid or UserNotAuthorizedException the user is not authorized to issue this request or PropertyServerException there is a problem reported in the open metadata server(s)
-
createCommunityFromTemplate
public GUIDResponse createCommunityFromTemplate(String serverName, String userId, String templateGUID, TemplateRequestBody requestBody) Create a new metadata element to represent a community using an existing metadata element as a template.- Parameters:
serverName
- name of the service to route the request to.userId
- calling usertemplateGUID
- unique identifier of the metadata element to copyrequestBody
- properties that override the template- Returns:
- unique identifier of the new metadata element or InvalidParameterException one of the parameters is invalid or UserNotAuthorizedException the user is not authorized to issue this request or PropertyServerException there is a problem reported in the open metadata server(s)
-
updateCommunity
public VoidResponse updateCommunity(String serverName, String userId, String communityGUID, boolean isMergeUpdate, ReferenceableRequestBody requestBody) Update the metadata element representing a community.- Parameters:
serverName
- name of the service to route the request to.userId
- calling usercommunityGUID
- unique identifier of the metadata element to updateisMergeUpdate
- should the new properties be merged with the existing properties of overlay them?requestBody
- new properties for this element- Returns:
- void or InvalidParameterException one of the parameters is invalid or UserNotAuthorizedException the user is not authorized to issue this request or PropertyServerException there is a problem reported in the open metadata server(s)
-
setupCommunityRole
public VoidResponse setupCommunityRole(String serverName, String userId, String communityGUID, String communityRoleGUID, RelationshipRequestBody requestBody) Create a relationship between a community and a person role.- Parameters:
serverName
- name of the service to route the request to.userId
- calling usercommunityGUID
- unique identifier of the community in the external data managercommunityRoleGUID
- unique identifier of the person role in the external data managerrequestBody
- relationship properties- Returns:
- void or InvalidParameterException one of the parameters is invalid or UserNotAuthorizedException the user is not authorized to issue this request or PropertyServerException there is a problem reported in the open metadata server(s)
-
clearCommunityRole
public VoidResponse clearCommunityRole(String serverName, String userId, String communityGUID, String communityRoleGUID, ExternalSourceRequestBody requestBody) Remove a relationship between a community and a role.- Parameters:
serverName
- name of the service to route the request to.userId
- calling usercommunityGUID
- unique identifier of the community in the external data managercommunityRoleGUID
- unique identifier of the role in the external data managerrequestBody
- external source identifiers- Returns:
- void or InvalidParameterException one of the parameters is invalid or UserNotAuthorizedException the user is not authorized to issue this request or PropertyServerException there is a problem reported in the open metadata server(s)
-
removeCommunity
public VoidResponse removeCommunity(String serverName, String userId, String communityGUID, ExternalSourceRequestBody requestBody) Remove the metadata element representing a community.- Parameters:
serverName
- name of the service to route the request to.userId
- calling usercommunityGUID
- unique identifier of the metadata element to removerequestBody
- external source identifiers- Returns:
- void or InvalidParameterException one of the parameters is invalid or UserNotAuthorizedException the user is not authorized to issue this request or PropertyServerException there is a problem reported in the open metadata server(s)
-
findCommunities
public CommunitiesResponse findCommunities(String serverName, String userId, SearchStringRequestBody requestBody, int startFrom, int pageSize) Retrieve the list of community metadata elements that contain the search string. The search string is treated as a regular expression.- Parameters:
serverName
- name of the service to route the request to.userId
- calling userrequestBody
- string to find in the propertiesstartFrom
- paging start pointpageSize
- maximum results that can be returned- Returns:
- list of matching metadata elements or InvalidParameterException one of the parameters is invalid or UserNotAuthorizedException the user is not authorized to issue this request or PropertyServerException there is a problem reported in the open metadata server(s)
-
getCommunitiesByName
public CommunitiesResponse getCommunitiesByName(String serverName, String userId, NameRequestBody requestBody, int startFrom, int pageSize) Retrieve the list of community metadata elements with a matching qualified or display name. There are no wildcards supported on this request.- Parameters:
serverName
- name of the service to route the request to.userId
- calling userrequestBody
- name to search forstartFrom
- paging start pointpageSize
- maximum results that can be returned- Returns:
- list of matching metadata elements or InvalidParameterException one of the parameters is invalid or UserNotAuthorizedException the user is not authorized to issue this request or PropertyServerException there is a problem reported in the open metadata server(s)
-
getRolesForCommunity
public PersonRolesResponse getRolesForCommunity(String serverName, String userId, String communityGUID, int startFrom, int pageSize) Return information about a person role connected to the named community.- Parameters:
serverName
- called serveruserId
- calling usercommunityGUID
- unique identifier for the communitystartFrom
- index of the list to start from (0 for start)pageSize
- maximum number of elements to return.- Returns:
- list of matching person roles InvalidParameterException name or userId is null PropertyServerException problem accessing property server UserNotAuthorizedException security access problem
-
getCommunities
public CommunitiesResponse getCommunities(String serverName, String userId, int startFrom, int pageSize) Retrieve the list of community metadata elements with a matching qualified or display name. There are no wildcards supported on this request.- Parameters:
serverName
- name of the service to route the request to.userId
- calling userstartFrom
- paging start pointpageSize
- maximum results that can be returned- Returns:
- list of matching metadata elements or InvalidParameterException one of the parameters is invalid or UserNotAuthorizedException the user is not authorized to issue this request or PropertyServerException there is a problem reported in the open metadata server(s)
-
getCommunityByGUID
Retrieve the community metadata element with the supplied unique identifier.- Parameters:
serverName
- name of the service to route the request to.userId
- calling userguid
- unique identifier of the requested metadata element- Returns:
- matching metadata element or InvalidParameterException one of the parameters is invalid or UserNotAuthorizedException the user is not authorized to issue this request or PropertyServerException there is a problem reported in the open metadata server(s)
-