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 class
OperationDeclarations.Builder
-
Constructor Summary
Constructors Constructor Description OperationDeclarations()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationDeclarations
fromJson(byte[] json)
static OperationDeclarations
fromJson(InputStream inputStream)
static OperationDeclarations
fromJson(String json)
static OperationDeclarations
fromPaths(String paths)
List<OperationDeclaration>
getOperations()
void
setOperations(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)
-
-