interface GraphQLDataBinderManager
An interface to describe a manager that will store and return instances of data binders to be used with GraphQL operations on GORM entities
| Type Params | Return Type | Name and description |
|---|---|---|
|
abstract GraphQLDataBinder |
getDataBinder(java.lang.Class clazz)Returns a data binder to be used for the provided class |
|
abstract void |
registerDataBinder(java.lang.Class clazz, GraphQLDataBinder dataBinder)Register a data binder for use with the provided class |
Returns a data binder to be used for the provided class
clazz - The class to be boundRegister a data binder for use with the provided class
clazz - The class to be bounddataBinder - The data binding instance to be used