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

com.healthy.common.security.code.ValidateCodeProcessor Maven / Gradle / Ivy

There is a newer version: 1.2.1.RELEASE
Show newest version
package com.healthy.common.security.code;

import org.springframework.web.context.request.ServletWebRequest;

/**
 * ValidateCodeProcessor
 *
 * @author xiaomingzhang
 */
public interface ValidateCodeProcessor {

    /**
     * Create verification code
     *
     * @param request
     * @throws Exception
     */
    void create(ServletWebRequest request) throws Exception;

    /**
     * Verification code
     *
     * @param servletWebRequest
     */
    void validate(ServletWebRequest servletWebRequest);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy