@RequestMapping(value="/graph/config")
public interface IGraphConfigurationController
| Modifier and Type | Method and Description |
|---|---|
String |
getDescription() |
Set<Class> |
getElementGenerators() |
Set<Class> |
getFilterFunctions() |
Set<Class> |
getFilterFunctions(String inputClass) |
String |
getGraphId() |
Set<Class> |
getObjectGenerators() |
Schema |
getSchema() |
Map<String,String> |
getSerialisedFieldClasses(String className) |
Set<String> |
getSerialisedFields(String className) |
Set<StoreTrait> |
getStoreTraits() |
Set<Class> |
getTransformFunctions() |
@RequestMapping(path="/schema",
method=GET,
produces="application/json")
Schema getSchema()
@RequestMapping(path="/description",
method=GET,
produces="text/plain")
String getDescription()
@RequestMapping(path="/graphId",
method=GET,
produces="text/plain")
String getGraphId()
@RequestMapping(path="/filterFunctions",
method=GET,
produces="application/json")
Set<Class> getFilterFunctions()
@RequestMapping(path="/elementGenerators",
method=GET,
produces="application/json")
Set<Class> getElementGenerators()
@RequestMapping(path="/filterFunctions/{inputClass}",
produces="application/json",
method=GET)
Set<Class> getFilterFunctions(String inputClass)
@RequestMapping(path="/objectGenerators",
method=GET,
produces="application/json")
Set<Class> getObjectGenerators()
@RequestMapping(path="/serialisedFields/{className}",
method=GET,
produces="application/json")
Set<String> getSerialisedFields(String className)
@RequestMapping(path="/serialisedFields/{className}/classes",
method=GET,
produces="application/json")
Map<String,String> getSerialisedFieldClasses(String className)
@RequestMapping(path="/storeTraits",
method=GET,
produces="application/json")
Set<StoreTrait> getStoreTraits()
Copyright © 2022. All rights reserved.