com.jpattern.core.chain.IChainElement Maven / Gradle / Ivy
package com.jpattern.core.chain;
/**
*
* @author Francesco Cina'
*
* 28/gen/2011
*
* Interface for the "Chain Of Responsibility" pattern
*
*/
public interface IChainElement {
/**
* Execute the chain
* @return the result of the execution
*/
IChainResult exec() throws Exception;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy