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

com.codingapi.springboot.framework.command.IExecutor Maven / Gradle / Ivy

There is a newer version: 3.2.6
Show newest version
package com.codingapi.springboot.framework.command;

import com.codingapi.springboot.framework.dto.response.Response;

public interface IExecutor {

    interface Command {
        R execute(C command);
    }

    interface Void {
        R execute();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy