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

com.jpattern.service.log.event.IEvent Maven / Gradle / Ivy

There is a newer version: 3.6.2
Show newest version
package com.jpattern.service.log.event;

import java.io.Serializable;

import com.jpattern.service.log.IExecutor;

/**
 * 
 * @author Francesco Cina'
 *
 * 09/apr/2010
 */
public interface IEvent extends Serializable {
	
	void fire();
	
	void execute( IExecutor executor );
	
	void acceptITrigger( ITrigger trigger );
	
	String getName();
	
	void addIgnoredPath(String classpath);
	
	void removeIgnoredPath(String classpath);
	
	public boolean isIgnoredPath( String classpath);
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy