package net.sourceforge.pain.logic;
/**
Boundary event to logical system
(boundary=> user console, admin gui tool, some plugin..)
Event is statically loaded interface, all it's implementors loaded dynamically!
*/
public interface Event {
Object processEvent(Object param) throws Exception;
}