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

io.flipt.client.models.JWTAuthentication Maven / Gradle / Ivy

There is a newer version: 0.2.0
Show newest version
package io.flipt.client.models;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;

@JsonInclude(JsonInclude.Include.NON_EMPTY)
public class JWTAuthentication implements AuthenticationStrategy {
  private final String jwtToken;

  public JWTAuthentication(String jwtToken) {
    this.jwtToken = jwtToken;
  }

  @JsonProperty("jwt_token")
  public String getJwtToken() {
    return jwtToken;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy