You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: graphql-spring-boot-starter/src/main/java/org/springframework/graphql/boot/GraphQlWebFluxAutoConfiguration.java
Copy file name to clipboardExpand all lines: graphql-spring-boot-starter/src/main/java/org/springframework/graphql/boot/GraphQlWebMvcAutoConfiguration.java
Copy file name to clipboardExpand all lines: graphql-spring-boot-starter/src/main/java/org/springframework/graphql/boot/RuntimeWiringBuilderCustomizer.java
+6-5Lines changed: 6 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -19,18 +19,19 @@
19
19
importgraphql.schema.idl.RuntimeWiring;
20
20
21
21
/**
22
-
* Callback interface that can be used to customize the GraphQL
23
-
* {@link RuntimeWiring.Builder}.
22
+
* Callback interface that can be implemented by beans wishing to customize the
23
+
* {@link RuntimeWiring} via a {@link RuntimeWiring.Builder} whilst retaining default
24
+
* auto-configuration.
24
25
*
25
26
* @author Brian Clozel
26
27
* @since 1.0.0
27
28
*/
28
29
@FunctionalInterface
29
-
publicinterfaceRuntimeWiringCustomizer {
30
+
publicinterfaceRuntimeWiringBuilderCustomizer {
30
31
31
32
/**
32
-
* Callback to customize a {@link RuntimeWiring.Builder} instance.
33
-
* @param builder builder instance to customize
33
+
* Customize the {@link RuntimeWiring.Builder} instance.
Copy file name to clipboardExpand all lines: graphql-spring-boot-starter/src/test/java/org/springframework/graphql/boot/GraphQlWebFluxAutoConfigurationTests.java
0 commit comments