Package org.wildfly.security.util
Interface ElytronMessages
-
- All Superinterfaces:
org.jboss.logging.BasicLogger
@MessageLogger(projectCode="ELY", length=5) @ValidIdRange(min=9,max=9) @ValidIdRange(min=3025,max=3032) @ValidIdRange(min=4020,max=4020) @ValidIdRange(min=8030,max=8034) interface ElytronMessages extends org.jboss.logging.BasicLogger
Log messages and exceptions for Elytron.- Author:
- David M. Lloyd, Darran Lofthouse
-
-
Field Summary
Fields Modifier and Type Field Description static ElytronMessages
log
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IllegalStateException
algorithmParametersNotInitialized()
IOException
closed()
IOException
failedToDecode(Throwable cause)
InvalidParameterSpecException
failedToEncode(Throwable cause)
IllegalArgumentException
generalInvalidName(String str)
IllegalArgumentException
initialKeyNotSpecified()
IOException
invalidFormat(String expected, String actual)
InvalidParameterSpecException
invalidParameterSpec(Class<?> expected, Class<?> actual)
IllegalArgumentException
iterationCountNotSpecified()
IllegalArgumentException
mechanismNotSupported(String mechanism)
IllegalArgumentException
noSuchKeyAlgorithm(String algorithmName, GeneralSecurityException cause)
IllegalArgumentException
saltNotSpecified()
IllegalArgumentException
securityProviderDoesnExist(String providerName)
IllegalArgumentException
wrongBase64InPBCompatibleMode(String base64)
-
Methods inherited from interface org.jboss.logging.BasicLogger
debug, debug, debug, debug, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugv, debugv, debugv, debugv, debugv, debugv, debugv, debugv, error, error, error, error, errorf, errorf, errorf, errorf, errorf, errorf, errorf, errorf, errorv, errorv, errorv, errorv, errorv, errorv, errorv, errorv, fatal, fatal, fatal, fatal, fatalf, fatalf, fatalf, fatalf, fatalf, fatalf, fatalf, fatalf, fatalv, fatalv, fatalv, fatalv, fatalv, fatalv, fatalv, fatalv, info, info, info, info, infof, infof, infof, infof, infof, infof, infof, infof, infov, infov, infov, infov, infov, infov, infov, infov, isDebugEnabled, isEnabled, isInfoEnabled, isTraceEnabled, log, log, log, log, logf, logf, logf, logf, logf, logf, logf, logf, logf, logf, logf, logf, logv, logv, logv, logv, logv, logv, logv, logv, logv, logv, logv, logv, trace, trace, trace, trace, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracev, tracev, tracev, tracev, tracev, tracev, tracev, tracev, warn, warn, warn, warn, warnf, warnf, warnf, warnf, warnf, warnf, warnf, warnf, warnv, warnv, warnv, warnv, warnv, warnv, warnv, warnv
-
-
-
-
Field Detail
-
log
static final ElytronMessages log
-
-
Method Detail
-
generalInvalidName
@Message(id=9, value="Invalid name \"%s\"") IllegalArgumentException generalInvalidName(String str)
-
iterationCountNotSpecified
@Message(id=3025, value="Iteration count not specified for password based encryption") IllegalArgumentException iterationCountNotSpecified()
-
saltNotSpecified
@Message(id=3026, value="Salt not specified for password based encryption") IllegalArgumentException saltNotSpecified()
-
initialKeyNotSpecified
@Message(id=3027, value="Initial key not specified for password based encryption") IllegalArgumentException initialKeyNotSpecified()
-
securityProviderDoesnExist
@Message(id=3028, value="Security provider \"%s\" doesn\'t exist") IllegalArgumentException securityProviderDoesnExist(String providerName)
-
noSuchKeyAlgorithm
@Message(id=3029, value="No such key algorithm \"%s\"") IllegalArgumentException noSuchKeyAlgorithm(String algorithmName, @Cause GeneralSecurityException cause)
-
closed
@Message(id=3030, value="I/O operation failed: closed") IOException closed()
-
wrongBase64InPBCompatibleMode
@Message(id=3032, value="Base64 string created with unsupported PicketBox version \"%s\"") IllegalArgumentException wrongBase64InPBCompatibleMode(String base64)
-
mechanismNotSupported
@Message(id=4020, value="Mechanism \"%s\" not supported by transformation mapper") IllegalArgumentException mechanismNotSupported(String mechanism)
-
failedToEncode
@Message(id=8030, value="Failed to encode parameter specification") InvalidParameterSpecException failedToEncode(@Cause Throwable cause)
-
failedToDecode
@Message(id=8031, value="Failed to decode parameter specification") IOException failedToDecode(@Cause Throwable cause)
-
invalidParameterSpec
@Message(id=8032, value="Invalid parameter specification type (expected %s, got %s)") InvalidParameterSpecException invalidParameterSpec(Class<?> expected, Class<?> actual)
-
invalidFormat
@Message(id=8033, value="Invalid format given (expected %s, got %s)") IOException invalidFormat(String expected, String actual)
-
algorithmParametersNotInitialized
@Message(id=8034, value="Algorithm parameters instance not initialized") IllegalStateException algorithmParametersNotInitialized()
-
-