"category", category );
classifications.add(classification);
Collection<String> namePatterns = new ArrayList<String>();
namePatterns.add(serviceName);
//Find based upon qualifier type and values
BulkResponse response = bqm.findServices(null, findQualifiers,
namePatterns, classifications, null);
if (response.getStatus()==JAXRResponse.STATUS_SUCCESS) {
for (Iterator servIter = response.getCollection().iterator(); servIter.hasNext();)
{
Service service = (Service) servIter.next();
return service;
}
}