How to initialize a queryService?
![]()
I wanted to use the Repository Query API. The first thing I need to do is to get the queryService.
Searched in this forum and got some clues, IQueryService queryService = getService(IQueryService.class); But it seems unacceptable by my compiler, getService method is not recognized. Anyone to help me out? Thanks very much! |
One answer
![]()
The getService method is on com.ibm.team.repository.service.AbstractService, which is a base class for repository-based services. In order to use it, you must implement your own such service, then declare a dependency (prerequisites element in plugin.xml extension) on the repository query service.
|