com.clickntap.api.ConsoleInterface Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Stripecube Show documentation
Show all versions of Stripecube Show documentation
Stripecube is an open source Java framework for Web Applications
package com.clickntap.api;
import java.util.List;
public interface ConsoleInterface {
public void resetCache() throws Exception;
public List executionTimes() throws Exception;
public List lastErrors() throws Exception;
public void clearErrors() throws Exception;
public String getVersion() throws Exception;
}