![JAR search and dependency download from the Maven repository](/logo.png)
graphql.spring.web.servlet.components.DefaultExecutionInputCustomizer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphql-java-spring-webmvc Show documentation
Show all versions of graphql-java-spring-webmvc Show documentation
GraphQL Java Spring Webmvc integration
The newest version!
package graphql.spring.web.servlet.components;
import graphql.ExecutionInput;
import graphql.Internal;
import graphql.spring.web.servlet.ExecutionInputCustomizer;
import org.springframework.stereotype.Component;
import org.springframework.web.context.request.WebRequest;
import java.util.concurrent.CompletableFuture;
@Component
@Internal
public class DefaultExecutionInputCustomizer implements ExecutionInputCustomizer {
@Override
public CompletableFuture customizeExecutionInput(ExecutionInput executionInput, WebRequest webRequest) {
return CompletableFuture.completedFuture(executionInput);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy