OSID Logo
OSID Specifications
financials package
Version 3.1.0
Interfaceosid.financials.ActivityHierarchyDesignSession
Implementsosid.OsidSession
Used Byosid.financials.FinancialsManager
osid.financials.FinancialsProxyManager
Description

This session defines methods for managing a hierarchy of Activities. Each node in the hierarchy is a unique Activity.

MethodgetActivityHierarchyId
Description

Gets the hierarchy Id associated with this session.

Returnosid.id.Id the hierarchy Id associated with this session
Compliancemandatory This method must be implemented.
MethodgetActivityHierarchy
Description

Gets the hierarchy associated with this session.

Returnosid.hierarchy.Hierarchy the hierarchy associated with this session
ErrorsOPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This method must be implemented.
MethodcanModifyActivityHierarchy
Description

Tests if this user can change the hierarchy. A return of true does not guarantee successful authorization. A return of false indicates that it is known performing any update will result in a PERMISSION_DENIED. This is intended as a hint to an application that may opt not to offer these operations to an unauthorized user.

Returnboolean false if changing this hierarchy is not authorized, true otherwise
Compliancemandatory This method must be implemented.
MethodaddRootActivity
Description

Adds a root activity.

Parametersosid.id.IdactivityId the Id of an activity
ErrorsALREADY_EXISTS activityId is already in hierarchy
NOT_FOUND activityId not found
NULL_ARGUMENT activityId is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This method must be implemented.
MethodremoveRootActivity
Description

Removes a root activity.

Parametersosid.id.IdactivityId the Id of an activity
ErrorsNOT_FOUND activityId not found
NULL_ARGUMENT activityId is null
OPERATION_FAILED the root activities
PERMISSION_DENIED authorization failure
Compliancemandatory This method must be implemented.
MethodaddChildActivity
Description

Adds a child to an activity.

Parametersosid.id.IdactivityId the Id of an activity
osid.id.IdchildId the Id of the new child
ErrorsALREADY_EXISTS activityId is already a parent of childId
NOT_FOUND activityId or childId not found
NULL_ARGUMENT activityId or childId is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This method must be implemented.
MethodremoveChildActivity
Description

Removes a child from an activity.

Parametersosid.id.IdactivityId the Id of an activity
osid.id.IdchildId the Id of the new child
ErrorsNOT_FOUND activityId not a parent of childId
NULL_ARGUMENT activityId or childId is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This method must be implemented.
MethodremoveChildActivities
Description

Removes all children from an activity.

Parametersosid.id.IdactivityId the Id of an activity
ErrorsNOT_FOUND activityId not found
NULL_ARGUMENT activityId is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This method must be implemented.
MethodreassignActivityToBusiness
Description

Moves an Activity from one Business to another. Mappings to other Businesses are unaffected.

Parametersosid.id.IdactivityId the Id of the Activity
osid.id.IdfromBusinessId the Id of the current Business
osid.id.IdtoBusinessId the Id of the destination Business
ErrorsALREADY_EXISTS activityId already assigned to toB usinessId
NOT_FOUND activityId, fromBusinessId, or toBusinessId not found or activityId not mapped to fromBusinessId
NULL_ARGUMENT activityId, fromBusinessId, or toBusinessId is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This method must be implemented.