OSID Logo
OSID Specifications
bidding package
Version 3.1.0
Interfaceosid.bidding.BidSmartAuctionHouseSession
Implementsosid.OsidSession
Used Byosid.bidding.BiddingManager
osid.bidding.BiddingProxyManager
Description

This session manages queries and sequencing to create "smart" dynamic catalogs. A BidQuery can be retrieved from this session and auctionHouseped to this AuctionHouse to create a virtual collection of Bids. The bids may be sequenced using the BidSearchOrder from this session.

This AuctionHouse has a default query that matches any bid and a default search order that specifies no sequencing. The queries may be examined using a BidQueryInspector. The query may be modified by converting the inspector back to a BidQuery.

MethodgetAuctionHouseId
Description

Gets the AuctionHouse Id associated with this session.

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

Gets the AuctionHouse associated with this session.

Returnosid.bidding.AuctionHouse the auction house
ErrorsOPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure
Compliancemandatory This method must be implemented.
MethodcanManageSmartAuctionHouses
Description

Tests if this user can manage smart auction houses. A return of true does not guarantee successful authorization. A return of false indicates that it is known methods in this session will result in a PERMISSION_DENIED. This is intended as a hint to an application that may opt not to offer operations to unauthorized users.

Returnboolean false if smart auction house management is not authorized, true otherwise
Compliancemandatory This method must be implemented.
MethodgetBidQuery
Description

Gets a bid query.

Returnosid.bidding.BidQuery the bid query
Compliancemandatory This method must be implemented.
MethodgetBidSearchOrder
Description

Gets a bid search order.

Returnosid.bidding.BidSearchOrder the bid search order
Compliancemandatory This method must be implemented.
MethodapplyBidQuery
Description

Applies a bid query to this auction house.

Parametersosid.bidding.BidQuerybidQuery the bid query
ErrorsNULL_ARGUMENT bidQuery is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure occurred
UNSUPPORTED bidQuery not of this service
Compliancemandatory This method must be implemented.
MethodinspectBidQuery
Description

Gets a bid query inspector for this auction house.

Returnosid.bidding.BidQueryInspector the bid query inspector
ErrorsOPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure occurred
Compliancemandatory This method must be implemented.
MethodapplyBidSequencing
Description

Applies a bid search order to this auction house.

Parametersosid.bidding.BidSearchOrderbidSearchOrder the bid search order
ErrorsNULL_ARGUMENT bidSearchOrder is null
OPERATION_FAILED unable to complete request
PERMISSION_DENIED authorization failure occurred
UNSUPPORTED bidSearchOrder not of this service
Compliancemandatory This method must be implemented.
MethodgetBidQueryFromInspector
Description

Gets a bid query from an inspector.

Parametersosid.bidding.BidQueryInspectorbidQueryInspector a bid query inspector
Returnosid.bidding.BidQuery the bid query
ErrorsNULL_ARGUMENT bidQueryInspector is null
UNSUPPORTED bidQueryInspector is not of this service
Compliancemandatory This method must be implemented.