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

io.github.onetool4j.ddd.handler.CommandHandler Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
package io.github.onetool4j.ddd.handler;

import io.github.onetool4j.ddd.dto.Command;

/**
 * 命令处理器
 *
 * @author admin
 */
public abstract class CommandHandler extends GenericHandler {
    /**
     * 处理命令
     *
     * @param request 命令
     * @return 命令执行结果
     */
    @Override
    REP doHandle(REQ request) {
        return execute(request);
    }

    /**
     * 执行命令
     *
     * @param request 命令
     * @return 命令执行结果
     */
    protected abstract REP execute(REQ request);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy