Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/config/IScenario.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/config/IScenario.java42
1 files changed, 42 insertions, 0 deletions
diff --git a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/config/IScenario.java b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/config/IScenario.java
new file mode 100644
index 0000000000..edfc04e147
--- /dev/null
+++ b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/config/IScenario.java
@@ -0,0 +1,42 @@
+/***************************************************************************
+ * Copyright (c) 2004 - 2008 Eike Stepper, Germany.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Eike Stepper - initial API and implementation
+ **************************************************************************/
+package org.eclipse.emf.cdo.tests.config;
+
+import java.io.Serializable;
+import java.util.Set;
+
+/**
+ * @author Eike Stepper
+ */
+public interface IScenario extends ITestLifecycle, Serializable
+{
+ public IContainerConfig getContainerConfig();
+
+ public void setContainerConfig(IContainerConfig containerConfig);
+
+ public IRepositoryConfig getRepositoryConfig();
+
+ public void setRepositoryConfig(IRepositoryConfig repositoryConfig);
+
+ public ISessionConfig getSessionConfig();
+
+ public void setSessionConfig(ISessionConfig sessionConfig);
+
+ public IModelConfig getModelConfig();
+
+ public void setModelConfig(IModelConfig modelConfig);
+
+ public Set<IConfig> getConfigs();
+
+ public boolean isValid();
+
+ public void save();
+}

Back to the top