
artoria.action.handler.AutoActionHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of artoria-extend Show documentation
Show all versions of artoria-extend Show documentation
Artoria is a java technology framework based on the facade pattern.
The newest version!
package artoria.action.handler;
import artoria.action.ActionHandler;
import artoria.core.handler.ConfigSupportHandler;
import java.util.LinkedHashMap;
/**
* The automated action handler.
* @author Kahle
*/
public interface AutoActionHandler extends ActionHandler, ConfigSupportHandler {
// TODO: ConfigSupportHandler will delete
/**
* Get the action handler name.
* @return The action name
*/
String getName();
@Deprecated
class HandlerConfigImpl extends LinkedHashMap implements HandlerConfig {
@Override
public String getProperty(String name) {
return get(name);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy