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

com.opencredo.concourse.domain.commands.dispatching.CommandProcessor Maven / Gradle / Ivy

package com.opencredo.concourse.domain.commands.dispatching;

import com.opencredo.concourse.domain.commands.Command;

import java.util.Optional;

public interface CommandProcessor {

    Optional process(Command command) throws Exception;

}