Package uk.gov.gchq.gaffer.graph.hook
Class AdditionalOperations
- java.lang.Object
-
- uk.gov.gchq.gaffer.graph.hook.AdditionalOperations
-
public class AdditionalOperations extends Object
Used by theAddOperationsToChain
operation to store details around which operations to add to the chain.
-
-
Constructor Summary
Constructors Constructor Description AdditionalOperations()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,List<Operation>>
getAfter()
Map<String,List<Operation>>
getBefore()
List<Operation>
getEnd()
List<Operation>
getStart()
void
setAfter(Map<String,List<Operation>> after)
void
setBefore(Map<String,List<Operation>> before)
void
setEnd(List<Operation> end)
void
setStart(List<Operation> start)
-