org.vebqa.vebtal.command.ICommand 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.command;
import org.vebqa.vebtal.model.CommandType;
import org.vebqa.vebtal.model.Response;
public interface ICommand {
public CommandType getType();
public Response executeImpl(Object aDriver);
}