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

io.polyglotted.spring.security.IsSelfOrAdmin Maven / Gradle / Ivy

package io.polyglotted.spring.security;

import org.springframework.security.access.prepost.PreAuthorize;

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

@SuppressWarnings("unused") @Retention(RetentionPolicy.RUNTIME)
@PreAuthorize("hasAnyRole('ROLE_ADMINISTRATOR','ROLE_USER_ADMIN') or #userId == authentication.userId()")
public @interface IsSelfOrAdmin {}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy