Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/environment/interfaces/ITestStation.java')
-rw-r--r--org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/environment/interfaces/ITestStation.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/environment/interfaces/ITestStation.java b/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/environment/interfaces/ITestStation.java
new file mode 100644
index 00000000000..82b67185d15
--- /dev/null
+++ b/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/environment/interfaces/ITestStation.java
@@ -0,0 +1,29 @@
+/*******************************************************************************
+ * Copyright (c) 2004, 2007 Boeing.
+ * 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:
+ * Boeing - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.osee.ote.core.environment.interfaces;
+
+import java.util.List;
+
+
+/**
+ * @author Robert A. Fisher
+ */
+public interface ITestStation {
+
+ public String getOutletIp();
+ public void setOutletIp(String outletIp);
+ public int getOutletPort();
+ public void setOutletPort(int outletPort);
+ public String getVmeConnectionName();
+ public void turnPowerSupplyOnOff(boolean turnOn);
+ public List<IOTypeHandlerDefinition> getSupportedDriverTypes();
+ public boolean isPhysicalTypeAvailable(IOTypeDefinition physicalType);
+}

Back to the top