Package uk.gov.gchq.gaffer.mapstore.impl
Class GetAdjacentIdsHandler
- java.lang.Object
-
- uk.gov.gchq.gaffer.mapstore.impl.GetAdjacentIdsHandler
-
- All Implemented Interfaces:
OperationHandler<GetAdjacentIds>
,OutputOperationHandler<GetAdjacentIds,Iterable<? extends EntityId>>
public class GetAdjacentIdsHandler extends Object implements OutputOperationHandler<GetAdjacentIds,Iterable<? extends EntityId>>
-
-
Constructor Summary
Constructors Constructor Description GetAdjacentIdsHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Iterable<? extends EntityId>
doOperation(GetAdjacentIds operation, Context context, Store store)
Execute the givenOutput
operation.
-
-
-
Method Detail
-
doOperation
public Iterable<? extends EntityId> doOperation(GetAdjacentIds operation, Context context, Store store) throws OperationException
Description copied from interface:OutputOperationHandler
Execute the givenOutput
operation.- Specified by:
doOperation
in interfaceOperationHandler<GetAdjacentIds>
- Specified by:
doOperation
in interfaceOutputOperationHandler<GetAdjacentIds,Iterable<? extends EntityId>>
- Parameters:
operation
- 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
-
-