
com.alibaba.qlexpress4.security.StrategyOpen Maven / Gradle / Ivy
package com.alibaba.qlexpress4.security;
import java.lang.reflect.Member;
/**
* A security policy that allows access to all Java classes within the application.
* Author: DQinYuan
*/
public class StrategyOpen implements QLSecurityStrategy {
private static final StrategyOpen INSTANCE = new StrategyOpen();
public static StrategyOpen getInstance() {
return INSTANCE;
}
@Override
public boolean check(Member member) {
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy