public interface PostSmartBusinessSession extends OsidSession
This session manages queries and sequencing to create "smart" dynamic
catalogs. A PostQuery
can be retrieved from this session
and mapped to this CoursOfferingeCatalog
to create a
virtual collection of Posts.
The posts may be sequenced
using the PostSearchOrder
from this session.
This Business
has a default query that matches any post
and a default search order that specifies no sequencing. The queries may
be examined using a PostQueryInspector.
The query may be
modified by converting the inspector back to a PostQuery.
Modifier and Type | Method and Description |
---|---|
void |
applyPostQuery(PostQuery postQuery)
Applies a post query to this business.
|
void |
applyPostSequencing(PostSearchOrder postSearchOrder)
Applies a post search order to this business.
|
boolean |
canManageSmartBusinesses()
Tests if this user can manage smart businesses.
|
Business |
getBusiness()
Gets the
Business associated with this session. |
Id |
getBusinessId()
Gets the
Business Id associated with
this session. |
PostQuery |
getPostQuery()
Gets a post query.
|
PostQuery |
getPostQueryFromInspector(PostQueryInspector postQueryInspector)
Gets a post query from an inspector.
|
PostSearchOrder |
getPostSearchOrder()
Gets a post search order.
|
PostQueryInspector |
inspectPostQuery()
Gets a post query inspector for this business.
|
getAuthenticatedAgent, getAuthenticatedAgentId, getClockRate, getDate, getEffectiveAgent, getEffectiveAgentId, getFormatType, getLocale, isAuthenticated, startTransaction, supportsTransactions
close
Id getBusinessId()
Business
Id
associated with
this session. Business Id
associated with this sessionmandatory
- This method must be implemented. Business getBusiness() throws OperationFailedException, PermissionDeniedException
Business
associated with this session.OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented. boolean canManageSmartBusinesses()
PERMISSION_DENIED.
This is intended as a hint to an
application that may opt not to offer operations to unauthorized
users. false
if smart business management is not
authorized, true
otherwisemandatory
- This method must be implemented. PostQuery getPostQuery()
mandatory
- This method must be implemented. PostSearchOrder getPostSearchOrder()
mandatory
- This method must be implemented. void applyPostQuery(PostQuery postQuery) throws OperationFailedException, PermissionDeniedException
postQuery
- the post queryNullArgumentException
- postQuery
is
null
OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failure
occurredUnsupportedException
- postQuery
not of
this servicemandatory
- This method must be implemented. PostQueryInspector inspectPostQuery() throws OperationFailedException, PermissionDeniedException
OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failure
occurredmandatory
- This method must be implemented. void applyPostSequencing(PostSearchOrder postSearchOrder) throws OperationFailedException, PermissionDeniedException
postSearchOrder
- the post search orderNullArgumentException
- postSearchOrder
is null
OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failure
occurredUnsupportedException
- postSearchOrder
not of this servicemandatory
- This method must be implemented. PostQuery getPostQueryFromInspector(PostQueryInspector postQueryInspector)
postQueryInspector
- a query inspectorNullArgumentException
- postQueryInspector
is null
UnsupportedException
- postQueryInspector
is not of this servicemandatory
- This method must be implemented.