Class OperationDeclarations
- java.lang.Object
-
- uk.gov.gchq.gaffer.store.operation.declaration.OperationDeclarations
-
public class OperationDeclarations extends Object
Contains a list of Operations defined in a JSON file, referenced in the store.properties. Used to add operation handlers.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classOperationDeclarations.Builder
-
Constructor Summary
Constructors Constructor Description OperationDeclarations()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationDeclarationsfromJson(byte[] json)static OperationDeclarationsfromJson(InputStream inputStream)static OperationDeclarationsfromJson(String json)static OperationDeclarationsfromPaths(String paths)List<OperationDeclaration>getOperations()voidsetOperations(List<OperationDeclaration> operations)
-
-
-
Method Detail
-
getOperations
public List<OperationDeclaration> getOperations()
-
setOperations
public void setOperations(List<OperationDeclaration> operations)
-
fromPaths
public static OperationDeclarations fromPaths(String paths)
-
fromJson
public static OperationDeclarations fromJson(byte[] json)
-
fromJson
public static OperationDeclarations fromJson(String json)
-
fromJson
public static OperationDeclarations fromJson(InputStream inputStream)
-
-