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

aQute.bnd.service.action.Action Maven / Gradle / Ivy

The newest version!
package aQute.bnd.service.action;

import org.osgi.annotation.versioning.ProviderType;

import aQute.bnd.build.Project;

@ProviderType
public interface Action {
	void execute(Project project, String action) throws Exception;

	void execute(Project project, Object... args) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy