sessionIds.addAll(sessionIdsSet);
return sessionIds;
}
List<FederatedQueryListElement> getSessionIdsThirdPartySPI(String owningInstanceName) {
BackingStore backingStore
= this.getBackingStore();
HttpSessionExtraParams httpExtraParamCriteria
= HttpSessionExtraParams.createSearchCriteria(this, owningInstanceName);
Collection<HttpSessionExtraParams> httpColl
= backingStore.findByCriteria(null, httpExtraParamCriteria);
List<FederatedQueryListElement> sessionIds = new ArrayList<FederatedQueryListElement>();
//using set to avoid dups
HashSet sessionIdsSet = new HashSet();
Iterator<HttpSessionExtraParams> httpResults =