Package com.adobe.aem.dermis.api.bridge
Interface IDermisBridge
-
public interface IDermisBridge
Interface to bridge with dermis
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IValue
executeOperation(Query query)
Execute the operation based onQuery
detailsjava.lang.Object
executeQuery(Query query)
Executes query based on theQuery
.
-
-
-
Method Detail
-
executeQuery
java.lang.Object executeQuery(Query query) throws DermisException
Executes query based on theQuery
. This API based on the query input would delegate the query execution to the concerned query engine.- Parameters:
query
- - string representing the query- Returns:
- Value - data as a result of query execution
- Throws:
DermisException
-
executeOperation
IValue executeOperation(Query query) throws DermisException
Execute the operation based onQuery
details- Parameters:
query
- represent the query to be executed.- Returns:
- result set of operation invocation.
- Throws:
DermisException
-
-