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

leisure.springboot.authorization.AuthorizationCondition Maven / Gradle / Ivy

The newest version!
package leisure.springboot.authorization;

import org.springframework.context.annotation.Condition;
import org.springframework.context.annotation.ConditionContext;
import org.springframework.core.type.AnnotatedTypeMetadata;

public class AuthorizationCondition implements Condition {

    @Override
    public boolean matches(ConditionContext context, AnnotatedTypeMetadata metadata) {
        return AuthorizationManager.isEnableAuthorization();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy