14151617181920
public static QueryFactory getQueryFactory(RemoteCache cache) { if (cache == null) { throw new IllegalArgumentException("cache parameter cannot be null"); } return new RemoteQueryFactory((RemoteCacheImpl) cache); }
17181920212223
public static QueryFactory<Query> getQueryFactory(RemoteCache cache) { if (cache == null) { throw new IllegalArgumentException("cache parameter cannot be null"); } return new RemoteQueryFactory((RemoteCacheImpl) cache); }