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

org.wildfly.security.http.oidc.ElytronMessages_$logger Maven / Gradle / Ivy

The newest version!
package org.wildfly.security.http.oidc;

import java.util.Locale;
import java.io.Serializable;
import javax.annotation.Generated;
import org.jboss.logging.DelegatingBasicLogger;
import java.lang.String;
import java.io.IOException;
import org.jboss.logging.Logger;
import java.lang.Exception;
import java.lang.RuntimeException;
import org.jboss.logging.BasicLogger;
import java.lang.Throwable;
import java.lang.Object;
import org.wildfly.security.http.oidc.OidcException;
import java.util.Arrays;
import java.lang.IllegalArgumentException;


import static org.jboss.logging.Logger.Level.ERROR;
import static org.jboss.logging.Logger.Level.INFO;
import static org.jboss.logging.Logger.Level.DEBUG;
import static org.jboss.logging.Logger.Level.WARN;

/**
 * Warning this class consists of generated code.
 */
@Generated(value = "org.jboss.logging.processor.generator.model.MessageLoggerImplementor", date = "2024-09-20T10:53:24-0400")
public class ElytronMessages_$logger extends DelegatingBasicLogger implements ElytronMessages, BasicLogger, Serializable {
    private static final long serialVersionUID = 1L;
    private static final String FQCN = ElytronMessages_$logger.class.getName();
    public ElytronMessages_$logger(final Logger log) {
        super(log);
    }
    private static final Locale LOCALE = Locale.ROOT;
    protected Locale getLoggingLocale() {
        return LOCALE;
    }
    protected String unexpectedResponseCodeFromOidcProvider$str() {
        return "ELY23000: Unexpected HTTP status code in response from OIDC provider \"%d\"";
    }
    @Override
    public final org.wildfly.security.http.oidc.OidcException unexpectedResponseCodeFromOidcProvider(final int responseCode) {
        final org.wildfly.security.http.oidc.OidcException result = new org.wildfly.security.http.oidc.OidcException(String.format(getLoggingLocale(), unexpectedResponseCodeFromOidcProvider$str(), responseCode));
        _copyStackTraceMinusOne(result);
        return result;
    }
    private static void _copyStackTraceMinusOne(final Throwable e) {
        final StackTraceElement[] st = e.getStackTrace();
        e.setStackTrace(Arrays.copyOfRange(st, 1, st.length));
    }
    protected String noEntityInResponse$str() {
        return "ELY23001: No entity in response from OIDC provider";
    }
    @Override
    public final org.wildfly.security.http.oidc.OidcException noEntityInResponse() {
        final org.wildfly.security.http.oidc.OidcException result = new org.wildfly.security.http.oidc.OidcException(String.format(getLoggingLocale(), noEntityInResponse$str()));
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String unexpectedErrorSendingRequestToOidcProvider$str() {
        return "ELY23002: Unexpected error sending request to OIDC provider";
    }
    @Override
    public final org.wildfly.security.http.oidc.OidcException unexpectedErrorSendingRequestToOidcProvider(final Exception cause) {
        final org.wildfly.security.http.oidc.OidcException result = new org.wildfly.security.http.oidc.OidcException(String.format(getLoggingLocale(), unexpectedErrorSendingRequestToOidcProvider$str()), cause);
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String providerUrlOrAuthServerUrlNeedsToBeConfigured$str() {
        return "ELY23003: Either provider-url or auth-server-url needs to be configured";
    }
    @Override
    public final IllegalArgumentException providerUrlOrAuthServerUrlNeedsToBeConfigured() {
        final IllegalArgumentException result = new IllegalArgumentException(String.format(getLoggingLocale(), providerUrlOrAuthServerUrlNeedsToBeConfigured$str()));
        _copyStackTraceMinusOne(result);
        return result;
    }
    @Override
    public final void loadedOpenIdProviderMetadata(final String discoveryUrl) {
        super.log.logf(FQCN, INFO, null, loadedOpenIdProviderMetadata$str(), discoveryUrl);
    }
    protected String loadedOpenIdProviderMetadata$str() {
        return "ELY23004: Loaded OpenID provider metadata from '%s'";
    }
    @Override
    public final void unableToLoadOpenIdProviderMetadata(final String discoveryUrl) {
        super.log.logf(FQCN, WARN, null, unableToLoadOpenIdProviderMetadata$str(), discoveryUrl);
    }
    protected String unableToLoadOpenIdProviderMetadata$str() {
        return "ELY23005: Unable to load OpenID provider metadata from %s";
    }
    protected String failedToDecodeRequestUri$str() {
        return "ELY23006: Failed to decode request URI";
    }
    @Override
    public final RuntimeException failedToDecodeRequestUri(final Exception cause) {
        final RuntimeException result = new RuntimeException(String.format(getLoggingLocale(), failedToDecodeRequestUri$str()), cause);
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String failedToWriteToResponseOutputStream$str() {
        return "ELY23007: Failed to write to response output stream";
    }
    @Override
    public final RuntimeException failedToWriteToResponseOutputStream(final Exception cause) {
        final RuntimeException result = new RuntimeException(String.format(getLoggingLocale(), failedToWriteToResponseOutputStream$str()), cause);
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String unableToParseToken$str() {
        return "ELY23008: Unable to parse token";
    }
    @Override
    public final IllegalArgumentException unableToParseToken() {
        final IllegalArgumentException result = new IllegalArgumentException(String.format(getLoggingLocale(), unableToParseToken$str()));
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String oidcConfigFileNotFound$str() {
        return "ELY23009: OIDC client configuration file not found";
    }
    @Override
    public final RuntimeException oidcConfigFileNotFound(final Exception cause) {
        final RuntimeException result = new RuntimeException(String.format(getLoggingLocale(), oidcConfigFileNotFound$str()), cause);
        _copyStackTraceMinusOne(result);
        return result;
    }
    @Override
    public final void failedToInvokeRemoteLogout(final Throwable cause) {
        super.log.logf(FQCN, ERROR, cause, failedToInvokeRemoteLogout$str());
    }
    protected String failedToInvokeRemoteLogout$str() {
        return "ELY23010: Failed to invoke remote logout";
    }
    @Override
    public final void refreshTokenFailure(final Throwable cause) {
        super.log.logf(FQCN, ERROR, cause, refreshTokenFailure$str());
    }
    protected String refreshTokenFailure$str() {
        return "ELY23011: Refresh token failure";
    }
    @Override
    public final void refreshTokenFailureStatus(final int status, final String error) {
        super.log.logf(FQCN, DEBUG, null, refreshTokenFailureStatus$str(), status, error);
    }
    protected String refreshTokenFailureStatus$str() {
        return "ELY23012: Refresh token failure status: %d %s";
    }
    @Override
    public final void failedVerificationOfToken(final String error) {
        super.log.logf(FQCN, DEBUG, null, failedVerificationOfToken$str(), error);
    }
    protected String failedVerificationOfToken$str() {
        return "ELY23013: Failed verification of token: %s";
    }
    @Override
    public final void failedToRefreshTokenWithALongerTTLThanMin() {
        super.log.logf(FQCN, ERROR, null, failedToRefreshTokenWithALongerTTLThanMin$str());
    }
    protected String failedToRefreshTokenWithALongerTTLThanMin$str() {
        return "ELY23014: Failed to refresh the token with a longer time-to-live than the minimum";
    }
    protected String noExpectedIssuerGiven$str() {
        return "ELY23015: No expected issuer given";
    }
    @Override
    public final IllegalArgumentException noExpectedIssuerGiven() {
        final IllegalArgumentException result = new IllegalArgumentException(String.format(getLoggingLocale(), noExpectedIssuerGiven$str()));
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String noClientIDGiven$str() {
        return "ELY23016: No client ID given";
    }
    @Override
    public final IllegalArgumentException noClientIDGiven() {
        final IllegalArgumentException result = new IllegalArgumentException(String.format(getLoggingLocale(), noClientIDGiven$str()));
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String noExpectedJwsAlgorithmGiven$str() {
        return "ELY23017: No expected JWS algorithm given";
    }
    @Override
    public final IllegalArgumentException noExpectedJwsAlgorithmGiven() {
        final IllegalArgumentException result = new IllegalArgumentException(String.format(getLoggingLocale(), noExpectedJwsAlgorithmGiven$str()));
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String noJwksPublicKeyOrClientSecretKeyGiven$str() {
        return "ELY23018: No JWKS public key or client secret key given";
    }
    @Override
    public final IllegalArgumentException noJwksPublicKeyOrClientSecretKeyGiven() {
        final IllegalArgumentException result = new IllegalArgumentException(String.format(getLoggingLocale(), noJwksPublicKeyOrClientSecretKeyGiven$str()));
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String invalidIDToken$str() {
        return "ELY23019: Invalid ID token";
    }
    @Override
    public final org.wildfly.security.http.oidc.OidcException invalidIDToken(final Throwable cause) {
        final org.wildfly.security.http.oidc.OidcException result = new org.wildfly.security.http.oidc.OidcException(String.format(getLoggingLocale(), invalidIDToken$str()), cause);
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String unexpectedValueForIssuedForClaim$str() {
        return "Unexpected value for azp (issued for) claim";
    }
    @Override
    public final String unexpectedValueForIssuedForClaim() {
        return String.format(getLoggingLocale(), unexpectedValueForIssuedForClaim$str());
    }
    protected String invalidTokenClaimValue$str() {
        return "ELY23020: Invalid token claim value";
    }
    @Override
    public final IllegalArgumentException invalidTokenClaimValue() {
        final IllegalArgumentException result = new IllegalArgumentException(String.format(getLoggingLocale(), invalidTokenClaimValue$str()));
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String invalidIDTokenClaims$str() {
        return "ELY23021: Invalid ID token claims";
    }
    @Override
    public final org.wildfly.security.http.oidc.OidcException invalidIDTokenClaims() {
        final org.wildfly.security.http.oidc.OidcException result = new org.wildfly.security.http.oidc.OidcException(String.format(getLoggingLocale(), invalidIDTokenClaims$str()));
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String keycloakRealmMissing$str() {
        return "ELY23022: Must set 'realm' in config";
    }
    @Override
    public final RuntimeException keycloakRealmMissing() {
        final RuntimeException result = new RuntimeException(String.format(getLoggingLocale(), keycloakRealmMissing$str()));
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String resourceOrClientIdMustBeSet$str() {
        return "ELY23023: Must set 'resource' or 'client-id'";
    }
    @Override
    public final RuntimeException resourceOrClientIdMustBeSet() {
        final RuntimeException result = new RuntimeException(String.format(getLoggingLocale(), resourceOrClientIdMustBeSet$str()));
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String invalidConfigurationForBearerAuth$str() {
        return "ELY23024: For bearer auth, you must set the 'realm-public-key' or one of 'auth-server-url' and 'provider-url'";
    }
    @Override
    public final IllegalArgumentException invalidConfigurationForBearerAuth() {
        final IllegalArgumentException result = new IllegalArgumentException(String.format(getLoggingLocale(), invalidConfigurationForBearerAuth$str()));
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String authServerUrlOrProviderUrlMustBeSet$str() {
        return "ELY23025: Must set 'auth-server-url' or 'provider-url'";
    }
    @Override
    public final RuntimeException authServerUrlOrProviderUrlMustBeSet() {
        final RuntimeException result = new RuntimeException(String.format(getLoggingLocale(), authServerUrlOrProviderUrlMustBeSet$str()));
        _copyStackTraceMinusOne(result);
        return result;
    }
    @Override
    public final void noClientSecretConfigured(final String clientId) {
        super.log.logf(FQCN, WARN, null, noClientSecretConfigured$str(), clientId);
    }
    protected String noClientSecretConfigured$str() {
        return "ELY23026: Client '%s' does not have a secret configured";
    }
    protected String unsupportedPublicKey$str() {
        return "ELY23027: Unsupported public key";
    }
    @Override
    public final IllegalArgumentException unsupportedPublicKey() {
        final IllegalArgumentException result = new IllegalArgumentException(String.format(getLoggingLocale(), unsupportedPublicKey$str()));
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String unableToCreateSignedToken$str() {
        return "ELY23028: Unable to create signed token";
    }
    @Override
    public final IllegalArgumentException unableToCreateSignedToken() {
        final IllegalArgumentException result = new IllegalArgumentException(String.format(getLoggingLocale(), unableToCreateSignedToken$str()));
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String invalidJwtClientCredentialsConfig$str() {
        return "ELY23029: Configuration of jwt credentials is missing or incorrect for client '%s'";
    }
    @Override
    public final RuntimeException invalidJwtClientCredentialsConfig(final String clientId) {
        final RuntimeException result = new RuntimeException(String.format(getLoggingLocale(), invalidJwtClientCredentialsConfig$str(), clientId));
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String missingParameterInJwtClientCredentialsConfig$str() {
        return "ELY23030: Missing parameter '%s' in jwt credentials for client %s";
    }
    @Override
    public final RuntimeException missingParameterInJwtClientCredentialsConfig(final String parameter, final String clientId) {
        final RuntimeException result = new RuntimeException(String.format(getLoggingLocale(), missingParameterInJwtClientCredentialsConfig$str(), parameter, clientId));
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String unableToParseKeyWithValue$str() {
        return "ELY23031: Unable to parse key '%s' with value '%s'";
    }
    @Override
    public final IllegalArgumentException unableToParseKeyWithValue(final String key, final Object value) {
        final IllegalArgumentException result = new IllegalArgumentException(String.format(getLoggingLocale(), unableToParseKeyWithValue$str(), key, value));
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String unableToLoadKeyWithAlias$str() {
        return "ELY23032: Unable to load key with alias '%s' from keystore";
    }
    @Override
    public final RuntimeException unableToLoadKeyWithAlias(final String alias) {
        final RuntimeException result = new RuntimeException(String.format(getLoggingLocale(), unableToLoadKeyWithAlias$str(), alias));
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String unableToLoadPrivateKey$str() {
        return "ELY23033: Unable to load private key from keystore";
    }
    @Override
    public final RuntimeException unableToLoadPrivateKey(final Throwable cause) {
        final RuntimeException result = new RuntimeException(String.format(getLoggingLocale(), unableToLoadPrivateKey$str()), cause);
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String unableToFindKeystoreFile$str() {
        return "ELY23034: Unable to find keystore file '%s'";
    }
    @Override
    public final RuntimeException unableToFindKeystoreFile(final String keystoreFile) {
        final RuntimeException result = new RuntimeException(String.format(getLoggingLocale(), unableToFindKeystoreFile$str(), keystoreFile));
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String invalidJwtClientCredentialsUsingSecretConfig$str() {
        return "ELY23035: Configuration of secret jwt client credentials is missing or incorrect for client '%s'";
    }
    @Override
    public final RuntimeException invalidJwtClientCredentialsUsingSecretConfig(final String clientId) {
        final RuntimeException result = new RuntimeException(String.format(getLoggingLocale(), invalidJwtClientCredentialsUsingSecretConfig$str(), clientId));
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String invalidAlgorithmInJwtClientCredentialsConfig$str() {
        return "ELY23036: Invalid value for 'algorithm' in secret jwt client credentials configuration for client '%s'";
    }
    @Override
    public final RuntimeException invalidAlgorithmInJwtClientCredentialsConfig(final String clientId) {
        final RuntimeException result = new RuntimeException(String.format(getLoggingLocale(), invalidAlgorithmInJwtClientCredentialsConfig$str(), clientId));
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String unableToDetermineClientCredentialsProviderType$str() {
        return "ELY23037: Unable to determine client credentials provider type for client '%s'";
    }
    @Override
    public final RuntimeException unableToDetermineClientCredentialsProviderType(final String clientId) {
        final RuntimeException result = new RuntimeException(String.format(getLoggingLocale(), unableToDetermineClientCredentialsProviderType$str(), clientId));
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String unableToFindClientCredentialsProvider$str() {
        return "ELY23038: Unable to find client credentials provider '%s'";
    }
    @Override
    public final RuntimeException unableToFindClientCredentialsProvider(final String provider) {
        final RuntimeException result = new RuntimeException(String.format(getLoggingLocale(), unableToFindClientCredentialsProvider$str(), provider));
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String unableToLoadKeyStore$str() {
        return "ELY23039: Unable to load keystore";
    }
    @Override
    public final RuntimeException unableToLoadKeyStore(final Throwable cause) {
        final RuntimeException result = new RuntimeException(String.format(getLoggingLocale(), unableToLoadKeyStore$str()), cause);
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String unableToLoadTrustStore$str() {
        return "ELY23040: Unable to load truststore";
    }
    @Override
    public final RuntimeException unableToLoadTrustStore(final Throwable cause) {
        final RuntimeException result = new RuntimeException(String.format(getLoggingLocale(), unableToLoadTrustStore$str()), cause);
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String unableToFindTrustStoreFile$str() {
        return "ELY23041: Unable to find truststore file '%s'";
    }
    @Override
    public final RuntimeException unableToFindTrustStoreFile(final String trustStoreFile) {
        final RuntimeException result = new RuntimeException(String.format(getLoggingLocale(), unableToFindTrustStoreFile$str(), trustStoreFile));
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String unexpectedValueForAtHashClaim$str() {
        return "ELY23042: Unexpected value for at_hash claim";
    }
    @Override
    public final String unexpectedValueForAtHashClaim() {
        return String.format(getLoggingLocale(), unexpectedValueForAtHashClaim$str());
    }
    protected String unknownAlgorithm$str() {
        return "ELY23043: Uknown algorithm: '%s'";
    }
    @Override
    public final IllegalArgumentException unknownAlgorithm(final String algorithm) {
        final IllegalArgumentException result = new IllegalArgumentException(String.format(getLoggingLocale(), unknownAlgorithm$str(), algorithm));
        _copyStackTraceMinusOne(result);
        return result;
    }
    @Override
    public final void failedToParseTokenFromCookie(final Throwable cause) {
        super.log.logf(FQCN, WARN, cause, failedToParseTokenFromCookie$str());
    }
    protected String failedToParseTokenFromCookie$str() {
        return "ELY23044: Failed to parse token from cookie";
    }
    protected String unableToCreateRedirectResponse$str() {
        return "ELY23045: Unable to create redirect response";
    }
    @Override
    public final IllegalArgumentException unableToCreateRedirectResponse(final Throwable cause) {
        final IllegalArgumentException result = new IllegalArgumentException(String.format(getLoggingLocale(), unableToCreateRedirectResponse$str()), cause);
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String unableToSetAuthServerUrl$str() {
        return "ELY23046: Unable to set auth server URL";
    }
    @Override
    public final RuntimeException unableToSetAuthServerUrl(final Throwable cause) {
        final RuntimeException result = new RuntimeException(String.format(getLoggingLocale(), unableToSetAuthServerUrl$str()), cause);
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String unableToResolveARelativeUrl$str() {
        return "ELY23047: Unable resolve a relative URL";
    }
    @Override
    public final RuntimeException unableToResolveARelativeUrl() {
        final RuntimeException result = new RuntimeException(String.format(getLoggingLocale(), unableToResolveARelativeUrl$str()));
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String invalidUri$str() {
        return "ELY23048: Invalid URI: '%s'";
    }
    @Override
    public final RuntimeException invalidUri(final String uri) {
        final RuntimeException result = new RuntimeException(String.format(getLoggingLocale(), invalidUri$str(), uri));
        _copyStackTraceMinusOne(result);
        return result;
    }
    @Override
    public final void invalidAuthServerUrlOrProviderUrl(final String url) {
        super.log.logf(FQCN, WARN, null, invalidAuthServerUrlOrProviderUrl$str(), url);
    }
    protected String invalidAuthServerUrlOrProviderUrl$str() {
        return "ELY23049: Invalid 'auth-server-url' or 'provider-url': '%s'";
    }
    protected String invalidBearerTokenClaims$str() {
        return "ELY23050: Invalid bearer token claims";
    }
    @Override
    public final org.wildfly.security.http.oidc.OidcException invalidBearerTokenClaims() {
        final org.wildfly.security.http.oidc.OidcException result = new org.wildfly.security.http.oidc.OidcException(String.format(getLoggingLocale(), invalidBearerTokenClaims$str()));
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String invalidBearerToken$str() {
        return "ELY23051: Invalid bearer token";
    }
    @Override
    public final org.wildfly.security.http.oidc.OidcException invalidBearerToken(final Throwable cause) {
        final org.wildfly.security.http.oidc.OidcException result = new org.wildfly.security.http.oidc.OidcException(String.format(getLoggingLocale(), invalidBearerToken$str()), cause);
        _copyStackTraceMinusOne(result);
        return result;
    }
    @Override
    public final void noTrustedCertificatesInToken() {
        super.log.logf(FQCN, WARN, null, noTrustedCertificatesInToken$str());
    }
    protected String noTrustedCertificatesInToken$str() {
        return "ELY23052: No trusted certificates in token";
    }
    @Override
    public final void noPeerCertificatesEstablishedOnConnection() {
        super.log.logf(FQCN, WARN, null, noPeerCertificatesEstablishedOnConnection$str());
    }
    protected String noPeerCertificatesEstablishedOnConnection$str() {
        return "ELY23053: No peer certificates established on the connection";
    }
    protected String unexpectedValueForTypeClaim$str() {
        return "ELY23054: Unexpected value for typ claim";
    }
    @Override
    public final String unexpectedValueForTypeClaim() {
        return String.format(getLoggingLocale(), unexpectedValueForTypeClaim$str());
    }
    protected String unableToObtainToken$str() {
        return "ELY23055: Unable to obtain token: %d";
    }
    @Override
    public final IOException unableToObtainToken(final int status) {
        final IOException result = new IOException(String.format(getLoggingLocale(), unableToObtainToken$str(), status));
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String noMessageEntity$str() {
        return "ELY23056: No message entity";
    }
    @Override
    public final IOException noMessageEntity() {
        final IOException result = new IOException(String.format(getLoggingLocale(), noMessageEntity$str()));
        _copyStackTraceMinusOne(result);
        return result;
    }
    @Override
    public final void principalAttributeClaimDoesNotExist(final String principalAttributeClaim) {
        super.log.logf(FQCN, DEBUG, null, principalAttributeClaimDoesNotExist$str(), principalAttributeClaim);
    }
    protected String principalAttributeClaimDoesNotExist$str() {
        return "ELY23057: principal-attribute '%s' claim does not exist, falling back to 'sub'";
    }
    protected String invalidKeyStoreConfiguration$str() {
        return "ELY23058: Invalid keystore configuration for signing Request Objects.";
    }
    @Override
    public final IOException invalidKeyStoreConfiguration() {
        final IOException result = new IOException(String.format(getLoggingLocale(), invalidKeyStoreConfiguration$str()));
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String invalidRequestObjectSignatureAlgorithm$str() {
        return "ELY23059: The signature algorithm specified is not supported by the OpenID Provider.";
    }
    @Override
    public final IOException invalidRequestObjectSignatureAlgorithm() {
        final IOException result = new IOException(String.format(getLoggingLocale(), invalidRequestObjectSignatureAlgorithm$str()));
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String invalidRequestObjectEncryptionAlgorithm$str() {
        return "ELY23060: The encryption algorithm specified is not supported by the OpenID Provider.";
    }
    @Override
    public final IOException invalidRequestObjectEncryptionAlgorithm() {
        final IOException result = new IOException(String.format(getLoggingLocale(), invalidRequestObjectEncryptionAlgorithm$str()));
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String invalidRequestObjectEncryptionEncValue$str() {
        return "ELY23061: The content encryption algorithm (enc value) specified is not supported by the OpenID Provider.";
    }
    @Override
    public final IOException invalidRequestObjectEncryptionEncValue() {
        final IOException result = new IOException(String.format(getLoggingLocale(), invalidRequestObjectEncryptionEncValue$str()));
        _copyStackTraceMinusOne(result);
        return result;
    }
    @Override
    public final void requestParameterNotSupported() {
        super.log.logf(FQCN, WARN, null, requestParameterNotSupported$str());
    }
    protected String requestParameterNotSupported$str() {
        return "ELY23062: The OpenID provider does not support request parameters. Sending the request using OAuth2 format.";
    }
    protected String invalidRequestObjectEncryptionAlgorithmConfiguration$str() {
        return "ELY23063: Both request object encryption algorithm and request object content encryption algorithm must be configured to encrypt the request object.";
    }
    @Override
    public final IllegalArgumentException invalidRequestObjectEncryptionAlgorithmConfiguration() {
        final IllegalArgumentException result = new IllegalArgumentException(String.format(getLoggingLocale(), invalidRequestObjectEncryptionAlgorithmConfiguration$str()));
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String unableToCreateRequestWithRequestParameter$str() {
        return "ELY23064: Failed to create the authentication request using the request parameter.";
    }
    @Override
    public final RuntimeException unableToCreateRequestWithRequestParameter(final Exception cause) {
        final RuntimeException result = new RuntimeException(String.format(getLoggingLocale(), unableToCreateRequestWithRequestParameter$str()), cause);
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String unableToCreateRequestUriWithRequestParameter$str() {
        return "ELY23065: Failed to create the authentication request using the request_uri parameter.";
    }
    @Override
    public final RuntimeException unableToCreateRequestUriWithRequestParameter(final Exception cause) {
        final RuntimeException result = new RuntimeException(String.format(getLoggingLocale(), unableToCreateRequestUriWithRequestParameter$str()), cause);
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String failedToSendPushedAuthorizationRequest$str() {
        return "ELY23066: Failed to send a request to the OpenID provider's Pushed Authorization Request endpoint.";
    }
    @Override
    public final RuntimeException failedToSendPushedAuthorizationRequest(final Exception cause) {
        final RuntimeException result = new RuntimeException(String.format(getLoggingLocale(), failedToSendPushedAuthorizationRequest$str()), cause);
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String pushedAuthorizationRequestEndpointNotAvailable$str() {
        return "ELY23067: Cannot retrieve the request_uri as the pushed authorization request endpoint is not available for the OpenID provider.";
    }
    @Override
    public final RuntimeException pushedAuthorizationRequestEndpointNotAvailable() {
        final RuntimeException result = new RuntimeException(String.format(getLoggingLocale(), pushedAuthorizationRequestEndpointNotAvailable$str()));
        _copyStackTraceMinusOne(result);
        return result;
    }
    @Override
    public final void unsignedRequestObjectIsUsed() {
        super.log.logf(FQCN, WARN, null, unsignedRequestObjectIsUsed$str());
    }
    protected String unsignedRequestObjectIsUsed$str() {
        return "ELY23068: The request object will be unsigned. This should not be used in a production environment. To sign the request object, for use in a production environment, please specify the request object signing algorithm.";
    }
    protected String clientSecretNotConfigured$str() {
        return "ELY23069: The client secret has not been configured. Unable to sign the request object using the client secret.";
    }
    @Override
    public final RuntimeException clientSecretNotConfigured() {
        final RuntimeException result = new RuntimeException(String.format(getLoggingLocale(), clientSecretNotConfigured$str()));
        _copyStackTraceMinusOne(result);
        return result;
    }
    protected String invalidAuthenticationRequestFormat$str() {
        return "ELY23070: Authentication request format must be one of the following: oauth2, request, request_uri.";
    }
    @Override
    public final RuntimeException invalidAuthenticationRequestFormat() {
        final RuntimeException result = new RuntimeException(String.format(getLoggingLocale(), invalidAuthenticationRequestFormat$str()));
        _copyStackTraceMinusOne(result);
        return result;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy