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

com.ql.util.express.config.whitelist.MustChecker Maven / Gradle / Ivy

Go to download

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 class MustChecker implements WhiteChecker {
    private final Class whiteClazz;

    public MustChecker(Class whiteClazz) {
        this.whiteClazz = whiteClazz;
    }

    @Override
    public boolean check(Class clazz) {
        return clazz == whiteClazz;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy