public interface CompetencySearchSession extends CompetencyQuerySession
This session provides methods for searching among Competency
objects. The search query is constructed using the
CompetencyyQuery.
getCompetenciesByQuery()
is the basic search method and
returns a list of Competencies.
A more advanced search may
be performed with getCompetenciesBySearch().
It accepts a
CompetencySearch
in addition to the query for the purpose
of specifying additional options affecting the entire search, such as
ordering. getCompetenciesBySearch()
returns a
CompetencySearchResults
that can be used to access the resulting
CompetencyList
or be used to perform a search within the
result set through CompetencySearch.
This session defines views that offer differing behaviors for searching.
Competencies may have a query record indicated by their respective
record types. The query record is accessed via the CompetencyQuery.
Modifier and Type | Method and Description |
---|---|
CompetencySearchResults |
getCompetenciesBySearch(CompetencyQuery competencyQuery,
CompetencySearch competencySearch)
Gets the search results matching the given search query using the
given search.
|
CompetencyQuery |
getCompetencyQueryFromInspector(CompetencyQueryInspector competencyQueryInspector)
Gets a competency query from an inspector.
|
CompetencySearch |
getCompetencySearch()
Gets a competency search.
|
CompetencySearchOrder |
getCompetencySearchOrder()
Gets a competency search order.
|
canSearchCompetencies, getCompetenciesByQuery, getCompetencyQuery, getFoundry, getFoundryId, useFederatedFoundryView, useIsolatedFoundryView
getAuthenticatedAgent, getAuthenticatedAgentId, getClockRate, getDate, getEffectiveAgent, getEffectiveAgentId, getFormatType, getLocale, isAuthenticated, startTransaction, supportsTransactions
close
CompetencySearch getCompetencySearch()
mandatory
- This method must be implemented. CompetencySearchOrder getCompetencySearchOrder()
CompetencySearchOrder
is supplied to a CompetencySearch
to specify
the ordering of results.mandatory
- This method must be implemented. CompetencySearchResults getCompetenciesBySearch(CompetencyQuery competencyQuery, CompetencySearch competencySearch) throws OperationFailedException, PermissionDeniedException
competencyQuery
- the competency querycompetencySearch
- the competency searchNullArgumentException
- competencyQuery
or competencySearch
is null
OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failureUnsupportedException
- competencyQuery
or competencySearch
is not of this servicemandatory
- This method must be implemented. CompetencyQuery getCompetencyQueryFromInspector(CompetencyQueryInspector competencyQueryInspector)
CompetencySearchResults.
competencyQueryInspector
- a competency query inspectorNullArgumentException
- competencyQueryInspector
is null
UnsupportedException
- competencyQueryInspector
is not of this servicemandatory
- This method must be implemented.