org.uberfire.commons.services.cdi.Startable Maven / Gradle / Ivy
Go to download
Collection of reusable (not depending on any other UberFire module) components for Uberfire.
package org.uberfire.commons.services.cdi;
/**
* Interface that allows to wrap startable behavior into single bean for further triggering
*/
public interface Startable {
/**
* Start the logic defined in the implementation
*/
void start();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy