All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
io.smallrye.jwt.config.ConfigLogging_$logger Maven / Gradle / Ivy
package io.smallrye.jwt.config;
import java.util.Locale;
import java.io.Serializable;
import org.jboss.logging.DelegatingBasicLogger;
import org.jboss.logging.BasicLogger;
import java.lang.String;
import org.jboss.logging.Logger;
import static org.jboss.logging.Logger.Level.DEBUG;
import static org.jboss.logging.Logger.Level.WARN;
/**
* Warning this class consists of generated code.
*/
public class ConfigLogging_$logger extends DelegatingBasicLogger implements ConfigLogging, BasicLogger, Serializable {
private static final long serialVersionUID = 1L;
private static final String FQCN = ConfigLogging_$logger.class.getName();
public ConfigLogging_$logger(final Logger log) {
super(log);
}
private static final Locale LOCALE = Locale.ROOT;
protected Locale getLoggingLocale() {
return LOCALE;
}
@Override
public final void configValues(final String jwtPublicKey, final String jwtIssuer, final String jwtLocation) {
super.log.logf(FQCN, DEBUG, null, configValues$str(), jwtPublicKey, jwtIssuer, jwtLocation);
}
protected String configValues$str() {
return "SRJWT03000: init, mpJwtPublicKey=%s, mpJwtIssuer=%s, mpJwtLocation=%s";
}
@Override
public final void publicKeyAndLocationAreUnavailable() {
super.log.logf(FQCN, DEBUG, null, publicKeyAndLocationAreUnavailable$str());
}
protected String publicKeyAndLocationAreUnavailable$str() {
return "SRJWT03001: Neither mpJwtPublicKey nor mpJwtLocation properties are configured, JWTAuthContextInfo will not be available";
}
@Override
public final void publicKeyParsedAsJwk() {
super.log.logf(FQCN, DEBUG, null, publicKeyParsedAsJwk$str());
}
protected String publicKeyParsedAsJwk$str() {
return "SRJWT03002: mpJwtPublicKey parsed as JWK(S)";
}
@Override
public final void parsingPublicKeyAsJwkFailed(final String exceptionMessage) {
super.log.logf(FQCN, DEBUG, null, parsingPublicKeyAsJwkFailed$str(), exceptionMessage);
}
protected String parsingPublicKeyAsJwkFailed$str() {
return "SRJWT03003: mpJwtPublicKey failed as JWK(S), %s";
}
@Override
public final void publicKeyParsedAsPem() {
super.log.logf(FQCN, DEBUG, null, publicKeyParsedAsPem$str());
}
protected String publicKeyParsedAsPem$str() {
return "SRJWT03004: mpJwtPublicKey parsed as PEM";
}
@Override
public final void unsupportedKeyFormat() {
super.log.logf(FQCN, DEBUG, null, unsupportedKeyFormat$str());
}
protected String unsupportedKeyFormat$str() {
return "SRJWT03005: Unsupported key format";
}
@Override
public final void replacedConfig(final String originalConfig, final String newConfig) {
super.log.logf(FQCN, WARN, null, replacedConfig$str(), originalConfig, newConfig);
}
protected String replacedConfig$str() {
return "SRJWT03006: '%s' property is deprecated and will be removed in a future version. Use '%s ' property instead";
}
}