| Interface | osid.control.ActionGroupSystemAssignmentSession | ||
|---|---|---|---|
| Implements | osid.OsidSession | ||
| Description |
This session provides methods to re-assign Adding a reference of an | ||
| Method | canAssignActionGroups | ||
| Description |
Tests if this user can alter action group/system
mappings. A return of true does not guarantee successful
authorization. A return of false indicates that it is
known mapping methods in this session will result in a
| ||
| Return | boolean | false if mapping is not authorized, true
otherwise | |
| Compliance | mandatory | This method must be implemented. | |
| Method | canAssignActionGroupsToSystem | ||
| Description |
Tests if this user can alter action group/system
mappings. A return of true does not guarantee successful
authorization. A return of false indicates that it is
known mapping methods in this session will result in a
| ||
| Parameters | osid.id.Id | systemId | the Id of the System |
| Return | boolean | false if mapping is not authorized, true
otherwise | |
| Errors | NULL_ARGUMENT | systemId is null | |
| Compliance | mandatory | This method must be implemented. | |
| Method | getAssignableSystemIds | ||
| Description |
Gets a list of systems including and under the given system node in which any action group can be assigned. | ||
| Parameters | osid.id.Id | systemId | the Id of the System |
| Return | osid.id.IdList | list of assignable system Ids | |
| Errors | NULL_ARGUMENT | systemId is null | |
| OPERATION_FAILED | unable to complete request | ||
| Compliance | mandatory | This method must be implemented. | |
| Method | getAssignableSystemIdsForActionGroup | ||
| Description |
Gets a list of systems including and under the given system node in which a specific action group can be assigned. | ||
| Parameters | osid.id.Id | systemId | the Id of the System |
osid.id.Id | actionGroupId | the Id of the ActionGroup | |
| Return | osid.id.IdList | list of assignable system Ids | |
| Errors | NULL_ARGUMENT | systemId or actionGroupId is null
| |
| OPERATION_FAILED | unable to complete request | ||
| Compliance | mandatory | This method must be implemented. | |
| Method | assignActionGroupToSystem | ||
| Description |
Adds an existing | ||
| Parameters | osid.id.Id | actionGroupId | the Id of the ActionGroup |
osid.id.Id | systemId | the Id of the System | |
| Errors | ALREADY_EXISTS | actionGroupId is already assigned to systemId | |
| NOT_FOUND | actionGroupId or systemId not found | ||
| NULL_ARGUMENT | actionGroupId or systemId is null
| ||
| OPERATION_FAILED | unable to complete request | ||
| PERMISSION_DENIED | authorization failure | ||
| Compliance | mandatory | This method must be implemented. | |
| Method | unassignActionGroupFromSystem | ||
| Description |
Removes an | ||
| Parameters | osid.id.Id | actionGroupId | the Id of the ActionGroup |
osid.id.Id | systemId | the Id of the System | |
| Errors | NOT_FOUND | actionGroupId or systemId not found or
actionGroupId not assigned to systemId | |
| NULL_ARGUMENT | actionGroupId or systemId is null
| ||
| OPERATION_FAILED | unable to complete request | ||
| PERMISSION_DENIED | authorization failure | ||
| Compliance | mandatory | This method must be implemented. | |
| Method | reassignActionGroupToSystem | ||
| Description |
Moves an | ||
| Parameters | osid.id.Id | actionGroupId | the Id of the ActionGroup |
osid.id.Id | fromSystemId | the Id of the current System | |
osid.id.Id | toSystemId | the Id of the destination System | |
| Errors | NOT_FOUND | actionGroupId, fromSystemId, or toSystemId
not found or actionGroupId not mapped to fromSystemId
| |
| NULL_ARGUMENT | actionGroupId, fromSystemId, or toSystemId is
null | ||
| OPERATION_FAILED | unable to complete request | ||
| PERMISSION_DENIED | authorization failure | ||
| Compliance | mandatory | This method must be implemented. | |