Class CustomScalarRegistryImpl
java.lang.Object
com.graphql_java_generator.customscalars.CustomScalarRegistryImpl
- All Implemented Interfaces:
CustomScalarRegistry
- Author:
- etienne-sf
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetCustomScalar
(String graphQLTypeName) static CustomScalarRegistry
getCustomScalarRegistry
(String schema) Retrieves theCustomScalarRegistry
for the given schema.graphql.schema.GraphQLScalarType
getGraphQLCustomScalarType
(String graphQLTypeName) static boolean
Indicates whether theCustomScalarRegistry
for the given schema has been initialized.void
registerGraphQLScalarType
(String typeName, graphql.schema.GraphQLScalarType type, Class<?> valueClazz) static void
setCustomScalarRegistry
(String schema, CustomScalarRegistry customScalarRegistry) Sets theCustomScalarRegistry
for the given schema.
-
Constructor Details
-
CustomScalarRegistryImpl
public CustomScalarRegistryImpl()
-
-
Method Details
-
registerGraphQLScalarType
public void registerGraphQLScalarType(String typeName, graphql.schema.GraphQLScalarType type, Class<?> valueClazz) - Specified by:
registerGraphQLScalarType
in interfaceCustomScalarRegistry
-
getGraphQLCustomScalarType
- Specified by:
getGraphQLCustomScalarType
in interfaceCustomScalarRegistry
-
getCustomScalar
- Specified by:
getCustomScalar
in interfaceCustomScalarRegistry
-
isCustomScalarRegistryInitialized
Indicates whether theCustomScalarRegistry
for the given schema has been initialized.- Parameters:
schema
- value of the springBeanSuffix plugin parameter for the searched schema. When there is only one schema, this plugin parameter is usually not set. In this case, its default value ("") is used.- Returns:
- true if this registry is already initialized
- Throws:
IllegalArgumentException
- If noCustomScalarRegistry
has been defined for the given schema
-
getCustomScalarRegistry
Retrieves theCustomScalarRegistry
for the given schema. This registry is initialized in the generated classCustomScalarRegistryInitializer
.
Note: this method is an internal utility method.- Parameters:
schema
- value of the springBeanSuffix plugin parameter for the searched schema. When there is only one schema, this plugin parameter is usually not set. In this case, its default value ("") is used.- Returns:
- Throws:
IllegalArgumentException
- If noCustomScalarRegistry
has been defined for the given schema
-
setCustomScalarRegistry
public static void setCustomScalarRegistry(String schema, CustomScalarRegistry customScalarRegistry) Sets theCustomScalarRegistry
for the given schema. This method should only be called from the generated classCustomScalarRegistryInitializer
.
Note: this method is an internal utility method.- Parameters:
schema
- value of the springBeanSuffix plugin parameter for the searched schema. When there is only one schema, this plugin parameter is usually not set. In this case, its default value ("") is used.customScalarRegistry
- TheCustomScalarRegistry
associated with this schema
-