Package step.repository.alm.otaclient
Interface ISearchableFactory
-
- All Superinterfaces:
com4j.Com4jObject
public interface ISearchableFactory extends com4j.Com4jObject
Services to support text searches in properties of objects managed by a factory.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com4j.Com4jObject
createSearchOptions()
Creates a new SearchOptions object.boolean
isSearchable()
Checks if the Search method can be called by this factory.IList
search(java.lang.String query, com4j.Com4jObject pSearchOptions)
Gets a list of objects matching the search query.
-
-
-
Method Detail
-
createSearchOptions
com4j.Com4jObject createSearchOptions()
Creates a new SearchOptions object.
- Returns:
- Returns a value of type com4j.Com4jObject
-
search
IList search(java.lang.String query, com4j.Com4jObject pSearchOptions)
Gets a list of objects matching the search query.
- Parameters:
query
- Mandatory java.lang.String parameter.pSearchOptions
- Mandatory com4j.Com4jObject parameter.- Returns:
- Returns a value of type otaclient.IList
-
isSearchable
boolean isSearchable()
Checks if the Search method can be called by this factory.
- Returns:
- Returns a value of type boolean
-
-