
uk.co.mruoc.fake.jwt.token.TokenRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fake-jwt-auth-server Show documentation
Show all versions of fake-jwt-auth-server Show documentation
Template repo to speed up creating new library projects
The newest version!
package uk.co.mruoc.fake.jwt.token;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Builder;
import lombok.Data;
import java.util.Optional;
@Builder
@Data
public class TokenRequest {
@JsonProperty("client_id")
private final String clientId;
private final String audience;
public Optional getAudience() {
return Optional.ofNullable(audience);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy