All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.greenpepper.agent.server.Service Maven / Gradle / Ivy

There is a newer version: 4.2.4
Show newest version
package com.greenpepper.agent.server;

import java.util.Vector;

/**
 * 

Service interface.

* * @author oaouattara * @version $Id: $Id */ public interface Service { /** * Executes the Specification under the given context: * Runner / SystemUnderTest. * * @param runnerParams a {@link java.util.Vector} object. * @param sutParams a {@link java.util.Vector} object. * @param specificationParams a {@link java.util.Vector} object. * @param implemented a boolean. * @param sections a {@link java.lang.String} object. * @param locale a {@link java.lang.String} object. * @return the Execution of the specification under the given context */ public Vector execute(Vector runnerParams, Vector sutParams, Vector specificationParams, boolean implemented, String sections, String locale); }