Interface | osid.bidding.AuctionHouseHierarchyDesignSession | ||
---|---|---|---|
Implements | osid.OsidSession | ||
Description |
This session defines methods for managing a hierarchy of
| ||
Method | getAuctionHouseHierarchyId | ||
Description |
Gets the hierarchy | ||
Return | osid.id.Id | the hierarchy Id associated with this session | |
Compliance | mandatory | This method must be implemented. | |
Method | getAuctionHouseHierarchy | ||
Description |
Gets the hierarchy associated with this session. | ||
Return | osid.hierarchy.Hierarchy | the hierarchy associated with this session | |
Errors | OPERATION_FAILED | unable to complete request | |
PERMISSION_DENIED | authorization failure | ||
Compliance | mandatory | This method must be implemented. | |
Method | canModifyAuctionHouseHierarchy | ||
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 | ||
Return | boolean | false if changing this hierarchy is not authorized,
true otherwise | |
Compliance | mandatory | This method must be implemented. | |
Method | addRootAuctionHouse | ||
Description |
Adds a root auction house. | ||
Parameters | osid.id.Id | auctionHouseId | the Id of an auction house |
Errors | ALREADY_EXISTS | auctionHouseId is already in hierarchy | |
NOT_FOUND | auctionHouseId not found | ||
NULL_ARGUMENT | auctionHouseId is null | ||
OPERATION_FAILED | unable to complete request | ||
PERMISSION_DENIED | authorization failure | ||
Compliance | mandatory | This method must be implemented. | |
Method | removeRootAuctionHouse | ||
Description |
Removes a root auction house. | ||
Parameters | osid.id.Id | auctionHouseId | the Id of an auction house |
Errors | NOT_FOUND | auctionHouseId is not a root | |
NULL_ARGUMENT | auctionHouseId is null | ||
OPERATION_FAILED | unable to complete request | ||
PERMISSION_DENIED | authorization failure | ||
Compliance | mandatory | This method must be implemented. | |
Method | addChildAuctionHouse | ||
Description |
Adds a child to an auction house. | ||
Parameters | osid.id.Id | auctionHouseId | the Id of an auction house |
osid.id.Id | childId | the Id of the new child | |
Errors | ALREADY_EXISTS | auctionHouseId is already a parent of childId | |
NOT_FOUND | auctionHouseId or childId not found | ||
NULL_ARGUMENT | auctionHouseId or childId is null
| ||
OPERATION_FAILED | unable to complete request | ||
PERMISSION_DENIED | authorization failure | ||
Compliance | mandatory | This method must be implemented. | |
Method | removeChildAuctionHouse | ||
Description |
Removes a child from an auction house. | ||
Parameters | osid.id.Id | auctionHouseId | the Id of an auction house |
osid.id.Id | childId | the Id of the new child | |
Errors | NOT_FOUND | auctionHouseId is not parent of childId | |
NULL_ARGUMENT | auctionHouseId or childId is null
| ||
OPERATION_FAILED | unable to complete request | ||
PERMISSION_DENIED | authorization failure | ||
Compliance | mandatory | This method must be implemented. | |
Method | removeChildAuctionHouses | ||
Description |
Removes all children from an auction house. | ||
Parameters | osid.id.Id | auctionHouseId | the Id of an auction house |
Errors | NOT_FOUND | auctionHouseId is not found | |
NULL_ARGUMENT | auctionHouseId is null | ||
OPERATION_FAILED | unable to complete request | ||
PERMISSION_DENIED | authorization failure | ||
Compliance | mandatory | This method must be implemented. |