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

io.smallrye.jwt.auth.jaxrs.JAXRSMessages Maven / Gradle / Ivy

There is a newer version: 4.6.1
Show newest version
package io.smallrye.jwt.auth.jaxrs;

import java.lang.annotation.Annotation;
import java.util.Collection;

import org.jboss.logging.Messages;
import org.jboss.logging.annotations.Message;
import org.jboss.logging.annotations.MessageBundle;
import org.jboss.logging.annotations.Transform;

@MessageBundle(projectCode = "SRJWT", length = 5)
interface JAXRSMessages {
    JAXRSMessages msg = Messages.getBundle(JAXRSMessages.class);

    @Message(id = 9000, value = "Duplicate MicroProfile JWT annotations found on %s. Expected at most 1 annotation, found: %d")
    IllegalStateException duplicateJWTAnnotationsFound(String annotationPlacementDescriptor,
            @Transform(Transform.TransformType.SIZE) Collection annotations);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy