log.info("Service registered->" + location);
continue;
}
// Let's see if it's an unregistered Planets service
PlanetsServiceExplorer pse = new PlanetsServiceExplorer(location.toURL());
// we only want the planets services
if ((null != pse.getServiceClass()) && (null != pse.getQName())) {
// Add the endpoint to the list and the category
PlanetsServiceEndpoint _endpoint = new PlanetsServiceEndpoint(pse);
this._endpoints.add(_endpoint);
_cats.add(_endpoint.getCategory());
}