Class GetExportsHandler
- java.lang.Object
-
- uk.gov.gchq.gaffer.store.operation.handler.export.GetExportsHandler
-
- All Implemented Interfaces:
OperationHandler<GetExports>
,OutputOperationHandler<GetExports,Map<String,Iterable<?>>>
public class GetExportsHandler extends Object implements OutputOperationHandler<GetExports,Map<String,Iterable<?>>>
Handler forGetExports
operations.
-
-
Constructor Summary
Constructors Constructor Description GetExportsHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,Iterable<?>>
doOperation(GetExports getExports, Context context, Store store)
Execute the givenOutput
operation.
-
-
-
Method Detail
-
doOperation
public Map<String,Iterable<?>> doOperation(GetExports getExports, Context context, Store store) throws OperationException
Description copied from interface:OutputOperationHandler
Execute the givenOutput
operation.- Specified by:
doOperation
in interfaceOperationHandler<GetExports>
- Specified by:
doOperation
in interfaceOutputOperationHandler<GetExports,Map<String,Iterable<?>>>
- Parameters:
getExports
- theOutput
operation to be executedcontext
- the operation chain context, containing the user who executed the operationstore
- theStore
the operation should be run on- Returns:
- the output for the operation.
- Throws:
OperationException
- thrown if the operation fails
-
-