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

com.jpattern.core.chain.IChainElement Maven / Gradle / Ivy

There is a newer version: 3.6.2
Show newest version
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