]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.server/src/main/java/org/argeo/slc/services/test/TestManagerService.java
19cde15cfd598f3d4988b465af841797aa309617
[gpl/argeo-slc.git] / runtime / org.argeo.slc.server / src / main / java / org / argeo / slc / services / test / TestManagerService.java
1 package org.argeo.slc.services.test;
2
3 import org.argeo.slc.test.TestRunDescriptor;
4
5 /** Performs complex business operations. */
6 public interface TestManagerService {
7 /** Performs operations related to the addition of a new test run. */
8 public void registerTestRunDescriptor(TestRunDescriptor testRunDescriptor);
9
10 /** Adds a result in a collection based on their ids. */
11 public void addResultToCollection(String collectionId, String resultUuid);
12
13 /** Removes a result from a collection based on their ids. */
14 public void removeResultFromCollection(String collectionId,
15 String resultUuid);
16 }