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

org.noear.solon.extend.vaptcha.XPluginImp Maven / Gradle / Ivy

There is a newer version: 3.0.0-M4
Show newest version
package org.noear.solon.extend.vaptcha;

import org.noear.solon.SolonApp;
import org.noear.solon.core.AopContext;
import org.noear.solon.core.Plugin;
import org.noear.solon.extend.vaptcha.http.request.validators.Vaptcha;
import org.noear.solon.extend.vaptcha.http.request.validators.VaptchaValidator;
import org.noear.solon.validation.ValidatorManager;

/**
 * @author iYarnFog
 * @since 1.5
 */
public class XPluginImp implements Plugin {
    @Override
    public void start(AopContext context) {
        ValidatorManager.register(Vaptcha.class, new VaptchaValidator());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy