Class QueryInfo
- java.lang.Object
-
- io.streamthoughts.azkarra.api.query.QueryInfo
-
- Direct Known Subclasses:
PreparedQuery
public class QueryInfo extends Object
Class which is use to wrap information about the store to be query.
-
-
Constructor Summary
Constructors Constructor Description QueryInfo(String storeName, StoreType storeType, StoreOperation storeOperation, QueryParams parameters)
Creates a newQueryInfo
instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
int
hashCode()
StoreOperation
operation()
QueryParams
parameters()
String
storeName()
String
toString()
StoreType
type()
-
-
-
Constructor Detail
-
QueryInfo
public QueryInfo(String storeName, StoreType storeType, StoreOperation storeOperation, QueryParams parameters)
Creates a newQueryInfo
instance.- Parameters:
storeName
- the store name.storeType
- the store type.storeOperation
- the store operation.parameters
- the query parameters.
-
-
Method Detail
-
parameters
public QueryParams parameters()
-
storeName
public String storeName()
-
operation
public StoreOperation operation()
-
type
public StoreType type()
-
-