graphql.kickstart.autoconfigure.web.servlet.GraphQLSubscriptionApolloProperties Maven / Gradle / Ivy
The newest version!
package graphql.kickstart.autoconfigure.web.servlet;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
@Data
@ConfigurationProperties("graphql.servlet.subscriptions.apollo")
class GraphQLSubscriptionApolloProperties {
private boolean keepAliveEnabled = true;
private int keepAliveIntervalSeconds = 15;
}