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

sirius.web.security.Permission Maven / Gradle / Ivy

/*
 * Made with all the love in the world
 * by scireum in Remshalden, Germany
 *
 * Copyright by scireum GmbH
 * http://www.scireum.de - [email protected]
 */

package sirius.web.security;

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

/**
 * Expects the presence of the given permission in oder to execute the annotated element.
 * 

* Can be placed on annotation aware elements like implementations of {@link sirius.web.services.StructuredService} * or controller methods (implementations of {@link sirius.web.controller.Controller}). *

* Uses {@link UserContext#getCurrentUser()} to obtain the current user and calls * {@link sirius.web.security.UserInfo#hasPermission(String)} with the given value to check if the current user * is authorized. * * @see sirius.web.security.UserInfo#hasPermission(String) */ @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.METHOD, ElementType.TYPE}) public @interface Permission { /** * Names the permission which has to be presnet for the current user in order to execute the annotated element * * @return the permission to check */ String value(); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy