org.vebqa.vebtal.TestAdaptionResource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vebtal-api Show documentation
Show all versions of vebtal-api Show documentation
define common api, interfaces and models for opental
package org.vebqa.vebtal;
import org.vebqa.vebtal.model.Command;
import org.vebqa.vebtal.model.Response;
public interface TestAdaptionResource {
public Response execute(Command aCmd);
public String getCommandClassName(Command aCmd);
public Long getDuration();
public void setStart();
public void setFinished();
}