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

restx.security.RolesAllowed Maven / Gradle / Ivy

There is a newer version: 1.2.0-rc2
Show newest version
package restx.security;

import java.lang.annotation.ElementType;
import java.lang.annotation.Target;

/**
 * Used to identify the roles allowed to access a resource endpoint.
 */
@Target(ElementType.METHOD)
public @interface RolesAllowed {
    String[] value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy