Interface MyRolesAndActionsInterface
public interface MyRolesAndActionsInterface
MyRolesAndActionsInterface covers the ability to query a person's roles and any actions (to dos) assigned
to those roles.
-
Method Summary
Modifier and TypeMethodDescriptiongetMyPersonalRoles(String userId, int startFrom, int pageSize) Return a list of the personal roles that the calling user is appointed to.getMyToDos(String userId, ToDoStatus status, int startFrom, int pageSize) Return a list of to dos assigned to the calling user.getMyToDosByRole(String userId, String personalRoleGUID, ToDoStatus status, int startFrom, int pageSize) Return a list of to dos assigned to the calling user.
-
Method Details
-
getMyPersonalRoles
List<PersonalRoleElement> getMyPersonalRoles(String userId, int startFrom, int pageSize) throws org.odpi.openmetadata.frameworks.connectors.ffdc.InvalidParameterException, org.odpi.openmetadata.frameworks.connectors.ffdc.PropertyServerException, org.odpi.openmetadata.frameworks.connectors.ffdc.UserNotAuthorizedException Return a list of the personal roles that the calling user is appointed to.- Parameters:
userId- userId of user making request.startFrom- index of the list to start from (0 for start)pageSize- maximum number of elements to return.- Returns:
- list of personal role details
- Throws:
org.odpi.openmetadata.frameworks.connectors.ffdc.InvalidParameterException- one of the parameters is invalid.org.odpi.openmetadata.frameworks.connectors.ffdc.PropertyServerException- there is a problem retrieving information from the property server(s).org.odpi.openmetadata.frameworks.connectors.ffdc.UserNotAuthorizedException- the requesting user is not authorized to issue this request.
-
getMyToDos
List<ToDoElement> getMyToDos(String userId, ToDoStatus status, int startFrom, int pageSize) throws org.odpi.openmetadata.frameworks.connectors.ffdc.InvalidParameterException, org.odpi.openmetadata.frameworks.connectors.ffdc.PropertyServerException, org.odpi.openmetadata.frameworks.connectors.ffdc.UserNotAuthorizedException Return a list of to dos assigned to the calling user.- Parameters:
userId- userId of user making request.status- status of the to do (null means current active)startFrom- index of the list to start from (0 for start)pageSize- maximum number of elements to return.- Returns:
- list of to do details
- Throws:
org.odpi.openmetadata.frameworks.connectors.ffdc.InvalidParameterException- one of the parameters is invalid.org.odpi.openmetadata.frameworks.connectors.ffdc.PropertyServerException- there is a problem retrieving information from the property server(s).org.odpi.openmetadata.frameworks.connectors.ffdc.UserNotAuthorizedException- the requesting user is not authorized to issue this request.
-
getMyToDosByRole
List<ToDoElement> getMyToDosByRole(String userId, String personalRoleGUID, ToDoStatus status, int startFrom, int pageSize) throws org.odpi.openmetadata.frameworks.connectors.ffdc.InvalidParameterException, org.odpi.openmetadata.frameworks.connectors.ffdc.PropertyServerException, org.odpi.openmetadata.frameworks.connectors.ffdc.UserNotAuthorizedException Return a list of to dos assigned to the calling user.- Parameters:
userId- userId of user making request.personalRoleGUID- unique identifier of the user's role.status- status of the to do (null means current active)startFrom- index of the list to start from (0 for start)pageSize- maximum number of elements to return.- Returns:
- list of to do details
- Throws:
org.odpi.openmetadata.frameworks.connectors.ffdc.InvalidParameterException- one of the parameters is invalid.org.odpi.openmetadata.frameworks.connectors.ffdc.PropertyServerException- there is a problem retrieving information from the property server(s).org.odpi.openmetadata.frameworks.connectors.ffdc.UserNotAuthorizedException- the requesting user is not authorized to issue this request.
-