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

top.zeimao77.product.cmd.MenuStarter Maven / Gradle / Ivy

package top.zeimao77.product.cmd;

public interface MenuStarter {

    String name();

    /**
     * 返回1表示鉴权通过;
     * 鉴权失败通过 throw new BaseServiceRunException(BaseServiceRunException.NO_PERMISSION,"没有权限") 返回错误;
     * @return
     */
    default Integer authentication() { return 1; }

    default void start(String[] args) {
        this.authentication();
        this.doStart(args);
    }

    void doStart(String[] args);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy