All Downloads are FREE. Search and download functionalities are using the official Maven repository.

graphql.kickstart.autoconfigure.web.servlet.DefaultWsCsrfToken Maven / Gradle / Ivy

The newest version!
package graphql.kickstart.autoconfigure.web.servlet;

import lombok.RequiredArgsConstructor;

@RequiredArgsConstructor
class DefaultWsCsrfToken implements WsCsrfToken {

  private final String token;
  private final String parameterName;

  @Override
  public String getToken() {
    return token;
  }

  @Override
  public String getParameterName() {
    return parameterName;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy