
uk.co.mruoc.fake.jwt.authserver.FakeJwtAuthServerConfig 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.authserver;
import com.github.tomakehurst.wiremock.core.WireMockConfiguration;
import uk.co.mruoc.fake.jwt.token.TokenGenerator;
import uk.co.mruoc.fake.jwt.key.JsonWebKeySetProvider;
import uk.co.mruoc.json.JsonConverter;
import java.time.Clock;
public interface FakeJwtAuthServerConfig {
int getPort();
Clock getClock();
String getIssuer();
String getDefaultAudience();
WireMockConfiguration getWiremockConfig();
JsonWebKeySetProvider getKeySetProvider();
JsonConverter getJsonConverter();
TokenGenerator getTokenGenerator();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy