com.ql.util.express.config.whitelist.WhiteChecker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of QLExpress Show documentation
Show all versions of QLExpress Show documentation
QLExpress is a powerful, lightweight, dynamic language for the Java platform aimed at improving developers’ productivity in different business scenes.
The newest version!
package com.ql.util.express.config.whitelist;
public interface WhiteChecker {
/**
* @param clazz
* @return true 表示白名单校验通过
*/
boolean check(Class> clazz);
}