Interface BiddingBatchManager
- All Superinterfaces:
AutoCloseable, BiddingBatchProfile, Closeable, OsidManager, OsidManager, OsidProfile, Sourceable
The bidding batch manager provides access to bidding batch sessions and provides interoperability tests for various aspects of this service. The sessions included in this manager are:
-
AuctionBatchAdminSession: a session to create, modify and delete auctions in bulk -
BidBatchSession: a session to create, modify and delete bids in bulk -
AuctionHouseBatchAdminSession: a session to create, modify and delete auction houses in bulk
-
Method Summary
Modifier and TypeMethodDescriptionGets theOsidSessionassociated with the bulk auction administration service.getAuctionBatchAdminSessionForAuctionHouse(Id auctionHouseId) Gets theOsidSessionassociated with the bulk auction administration service for the given auction house.Gets theOsidSessionassociated with the bulk auction house administration service.Gets theOsidSessionassociated with the bulk bid administration service.getBidBatchAdminSessionForAuctionHouse(Id auctionHouseId) Gets theOsidSessionassociated with the bulk bid administration service for the given auction house.Methods inherited from interface BiddingBatchProfile
supportsAuctionBatchAdmin, supportsAuctionHouseBatchAdmin, supportsBidBatchAdmin, supportsVisibleFederationModifier and TypeMethodDescriptionbooleanTests if bulk administration of auctions is available.booleanTests if bulk administration of auction houses is available.booleanTests if bulk administration of bids is available.booleanTests if federation is visible.Methods inherited from interface OsidManager
closeMethods inherited from interface OsidManager
changeBranch, initialize, rollbackServiceModifier and TypeMethodDescriptionvoidchangeBranch(Id branchId) Changes the service branch.voidinitialize(OsidRuntimeManager runtime) Initializes this manager.rollbackService(Date rollbackTime) Rolls back this service to a point in time.Methods inherited from interface OsidProfile
getBranch, getBranchId, getDescription, getDisplayName, getId, getLocales, getProxyRecordTypes, getReleaseDate, getVersion, supportsJournalBranching, supportsJournalRollback, supportsOSIDVersion, supportsProxyRecordTypeModifier and TypeMethodDescriptionGets this service branch.Gets theBranch Idrepresenting this service branch.Gets a description of this service implementation.Gets a display name for this service implementation.getId()Gets an identifier for this service implementation.Gets the locales supported in this service.Gets the proxy recordTypessupported in this service.Gets the date this service implementation was released.Gets the version of this service implementation.booleanTest for support of a journal branching service.booleanTest for support of a journaling rollback service.booleansupportsOSIDVersion(Version version) Test for support of an OSID specification version.booleansupportsProxyRecordType(Type proxyRecordType) Test for support of a proxy type.Methods inherited from interface Sourceable
getBranding, getBrandingIds, getLicense, getProvider, getProviderIdModifier and TypeMethodDescriptionGets a branding, such as an image or logo, expressed using theAssetinterface.Gets the branding assetIds.Gets the terms of usage.Gets theResourcerepresenting the provider.Gets theIdof the provider.
-
Method Details
-
getAuctionBatchAdminSession
Gets theOsidSessionassociated with the bulk auction administration service.- Returns:
- an
AuctionBatchAdminSession - Throws:
OperationFailedException- unable to complete requestUnimplementedException-supportsAuctionBatchAdmin()isfalse- Compliance:
optional- This method must be implemented if {@code supportsAuctionBatchAdmin()} is {@code true} .
-
getAuctionBatchAdminSessionForAuctionHouse
AuctionBatchAdminSession getAuctionBatchAdminSessionForAuctionHouse(Id auctionHouseId) throws NotFoundException, OperationFailedException Gets theOsidSessionassociated with the bulk auction administration service for the given auction house.- Parameters:
auctionHouseId- theIdof theAuctionHouse- Returns:
- an
AuctionBatchAdminSession - Throws:
NotFoundException- noAuctionHousefound by the givenIdNullArgumentException-auctionHouseIdisnullOperationFailedException- unable to complete requestUnimplementedException-supportsAuctionBatchAdmin()orsupportsVisibleFederation()isfalse- Compliance:
optional- This method must be implemented if {@code supportsAuctionBatchAdmin()} and {@code supportsVisibleFederation()} are {@code true}
-
getBidBatchAdminSession
Gets theOsidSessionassociated with the bulk bid administration service.- Returns:
- a
BidBatchAdminSession - Throws:
OperationFailedException- unable to complete requestUnimplementedException-supportsBidBatchAdmin()isfalse- Compliance:
optional- This method must be implemented if {@code supportsBidBatchAdmin()} is {@code true} .
-
getBidBatchAdminSessionForAuctionHouse
BidBatchAdminSession getBidBatchAdminSessionForAuctionHouse(Id auctionHouseId) throws NotFoundException, OperationFailedException Gets theOsidSessionassociated with the bulk bid administration service for the given auction house.- Parameters:
auctionHouseId- theIdof theAuctionHouse- Returns:
- a
BidBatchAdminSession - Throws:
NotFoundException- noAuctionHousefound by the givenIdNullArgumentException-auctionHouseIdisnullOperationFailedException- unable to complete requestUnimplementedException-supportsBidBatchAdmin()orsupportsVisibleFederation()isfalse- Compliance:
optional- This method must be implemented if {@code supportsBidBatchAdmin()} and {@code supportsVisibleFederation()} are {@code true}
-
getAuctionHouseBatchAdminSession
Gets theOsidSessionassociated with the bulk auction house administration service.- Returns:
- an
AuctionHouseBatchAdminSession - Throws:
OperationFailedException- unable to complete requestUnimplementedException-supportsAuctionHouseBatchAdmin()isfalse- Compliance:
optional- This method must be implemented if {@code supportsAuctionHouseBatchAdmin()} is {@code true} .
-