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

com.blade.mvc.hook.WebHook Maven / Gradle / Ivy

There is a newer version: 2.0.15.RELEASE
Show newest version
package com.blade.mvc.hook;

/**
 * Request WebHook
 *
 * @author biezhi
 *         2017/6/2
 */
@FunctionalInterface
public interface WebHook {

    boolean before(Signature signature);

    default boolean after(Signature signature) {
        return true;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy