All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.api.common.query.QueryRequest Maven / Gradle / Ivy

There is a newer version: 15.2.0.Dev01
Show newest version
package org.infinispan.api.common.query;

import java.util.Map;

/**
 * QueryRequest creates a request for Query or Continuous Query. It is built with the {@link QueryRequestBuilder}
 *
 * @since 14.0
 */
public final class QueryRequest {
   private final boolean created;
   private final boolean updated;
   private final boolean removed;
   private final String queryString;
   private final Map params;
   private final long skip;
   private final int limit;

   QueryRequest(boolean created, boolean updated, boolean removed,
                String query, Map params) {
      this.created = created;
      this.updated = updated;
      this.removed = removed;
      this.queryString = query;
      this.params = params;
      this.skip = 0;
      this.limit = -1;
   }

   public QueryRequest(String queryString, Map params, long skip, int limit) {
      this.created = true;
      this.updated = true;
      this.removed = true;
      this.queryString = queryString;
      this.params = params;
      this.skip = skip;
      this.limit = limit;
   }

   public boolean isCreated() {
      return created;
   }

   public boolean isUpdated() {
      return updated;
   }

   public boolean isDeleted() {
      return removed;
   }

   public String getQueryString() {
      return queryString;
   }

   public Map getParams() {
      return params;
   }

   public long skip() {
      return skip;
   }

   public int limit() {
      return limit;
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy