org.wildfly.security.util.ElytronMessages Maven / Gradle / Ivy
Go to download
This artifact provides a single jar that contains all classes required to use remote EJB and JMS, including
all dependencies. It is intended for use by those not using maven, maven users should just import the EJB and
JMS BOM's instead (shaded JAR's cause lots of problems with maven, as it is very easy to inadvertently end up
with different versions on classes on the class path).
The newest version!
/*
* JBoss, Home of Professional Open Source.
* Copyright 2014 Red Hat, Inc., and individual contributors
* as indicated by the @author tags.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.wildfly.security.util;
import java.io.IOException;
import java.security.GeneralSecurityException;
import java.security.spec.InvalidParameterSpecException;
import org.jboss.logging.BasicLogger;
import org.jboss.logging.Logger;
import org.jboss.logging.annotations.Cause;
import org.jboss.logging.annotations.Message;
import org.jboss.logging.annotations.MessageLogger;
import org.jboss.logging.annotations.ValidIdRange;
import org.jboss.logging.annotations.ValidIdRanges;
/**
* Log messages and exceptions for Elytron.
*
* @author David M. Lloyd
* @author Darran Lofthouse
*/
@MessageLogger(projectCode = "ELY", length = 5)
@ValidIdRanges({
@ValidIdRange(min = 9, max = 9),
@ValidIdRange(min = 3025, max = 3032),
@ValidIdRange(min = 4020, max = 4020),
@ValidIdRange(min = 8030, max = 8034)
})
interface ElytronMessages extends BasicLogger {
ElytronMessages log = Logger.getMessageLogger(ElytronMessages.class, "org.wildfly.security");
@Message(id = 9, value = "Invalid name \"%s\"")
IllegalArgumentException generalInvalidName(String str);
@Message(id = 3025, value = "Iteration count not specified for password based encryption")
IllegalArgumentException iterationCountNotSpecified();
@Message(id = 3026, value = "Salt not specified for password based encryption")
IllegalArgumentException saltNotSpecified();
@Message(id = 3027, value = "Initial key not specified for password based encryption")
IllegalArgumentException initialKeyNotSpecified();
@Message(id = 3028, value = "Security provider \"%s\" doesn't exist")
IllegalArgumentException securityProviderDoesnExist(String providerName);
@Message(id = 3029, value = "No such key algorithm \"%s\"")
IllegalArgumentException noSuchKeyAlgorithm(String algorithmName, @Cause GeneralSecurityException cause);
@Message(id = 3030, value = "I/O operation failed: closed")
IOException closed();
@Message(id = 3032, value = "Base64 string created with unsupported PicketBox version \"%s\"")
IllegalArgumentException wrongBase64InPBCompatibleMode(String base64);
@Message(id = 4020, value = "Mechanism \"%s\" not supported by transformation mapper")
IllegalArgumentException mechanismNotSupported(String mechanism);
@Message(id = 8030, value = "Failed to encode parameter specification")
InvalidParameterSpecException failedToEncode(@Cause Throwable cause);
@Message(id = 8031, value = "Failed to decode parameter specification")
IOException failedToDecode(@Cause Throwable cause);
@Message(id = 8032, value = "Invalid parameter specification type (expected %s, got %s)")
InvalidParameterSpecException invalidParameterSpec(Class> expected, Class> actual);
@Message(id = 8033, value = "Invalid format given (expected %s, got %s)")
IOException invalidFormat(String expected, String actual);
@Message(id = 8034, value = "Algorithm parameters instance not initialized")
IllegalStateException algorithmParametersNotInitialized();
}