Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrbrooks2010-07-24 08:02:08 +0000
committerrbrooks2010-07-24 08:02:08 +0000
commit4ed8bddc791fda93940f238c5135556a07041dc0 (patch)
tree64a118285c5006c3a38320dbb2d374e8ea72a061 /plugins/org.eclipse.osee.ote.server/src/org/eclipse/osee/ote/server/TestEnvironmentServiceConfigImpl.java
parent542cc7344d3f129d64e47f547384297c8e1b1f43 (diff)
downloadorg.eclipse.osee-4ed8bddc791fda93940f238c5135556a07041dc0.tar.gz
org.eclipse.osee-4ed8bddc791fda93940f238c5135556a07041dc0.tar.xz
org.eclipse.osee-4ed8bddc791fda93940f238c5135556a07041dc0.zip
converted all line terminators to unix style
Diffstat (limited to 'plugins/org.eclipse.osee.ote.server/src/org/eclipse/osee/ote/server/TestEnvironmentServiceConfigImpl.java')
-rw-r--r--plugins/org.eclipse.osee.ote.server/src/org/eclipse/osee/ote/server/TestEnvironmentServiceConfigImpl.java142
1 files changed, 71 insertions, 71 deletions
diff --git a/plugins/org.eclipse.osee.ote.server/src/org/eclipse/osee/ote/server/TestEnvironmentServiceConfigImpl.java b/plugins/org.eclipse.osee.ote.server/src/org/eclipse/osee/ote/server/TestEnvironmentServiceConfigImpl.java
index 0d29a6ba696..8c130175de2 100644
--- a/plugins/org.eclipse.osee.ote.server/src/org/eclipse/osee/ote/server/TestEnvironmentServiceConfigImpl.java
+++ b/plugins/org.eclipse.osee.ote.server/src/org/eclipse/osee/ote/server/TestEnvironmentServiceConfigImpl.java
@@ -8,74 +8,74 @@
* Contributors:
* Boeing - initial API and implementation
*******************************************************************************/
-package org.eclipse.osee.ote.server;
-
-import java.lang.reflect.Constructor;
-import org.eclipse.osee.ote.core.environment.TestEnvironment;
-import org.eclipse.osee.ote.core.environment.interfaces.ITestEnvironmentServiceConfig;
-
-/**
- * @author Andrew M. Finkbeiner
- */
-public class TestEnvironmentServiceConfigImpl implements ITestEnvironmentServiceConfig {
-
- private final boolean keepAliveWithNoUsers;
- private final String title;
- private final String name;
- private final String outfileLocation;
- private final Constructor<? extends TestEnvironment> constructor;
-
- public TestEnvironmentServiceConfigImpl(boolean keepAliveWithNoUsers, String title, String name, String outfileLocation, Constructor<? extends TestEnvironment> constructor) {
- this.keepAliveWithNoUsers = keepAliveWithNoUsers;
- this.title = title;
- this.name = name;
- this.outfileLocation = outfileLocation;
- this.constructor = constructor;
- }
-
- @Override
- public Object[] getConstructorParameters() {
- return new Object[0];
- }
-
- @Override
- public Constructor<? extends TestEnvironment> getEnvironmentConstructor() {
- return constructor;
- }
-
- @Override
- public int getMaxEnvironments() {
- return 1;
- }
-
- @Override
- public int getMaxUsersPerEnvironment() {
- return Integer.MAX_VALUE;
- }
-
- @Override
- public String getName() {
- return name;
- }
-
- @Override
- public String getOutfileLocation() {
- return outfileLocation;
- }
-
- @Override
- public String getServerTitle() {
- return title;
- }
-
- @Override
- public boolean keepEnvAliveWithNoUsers() {
- return keepAliveWithNoUsers;
- }
-
- @Override
- public boolean startEnvionrmnetOnServiceInit() {
- return true;
- }
-
-}
+package org.eclipse.osee.ote.server;
+
+import java.lang.reflect.Constructor;
+import org.eclipse.osee.ote.core.environment.TestEnvironment;
+import org.eclipse.osee.ote.core.environment.interfaces.ITestEnvironmentServiceConfig;
+
+/**
+ * @author Andrew M. Finkbeiner
+ */
+public class TestEnvironmentServiceConfigImpl implements ITestEnvironmentServiceConfig {
+
+ private final boolean keepAliveWithNoUsers;
+ private final String title;
+ private final String name;
+ private final String outfileLocation;
+ private final Constructor<? extends TestEnvironment> constructor;
+
+ public TestEnvironmentServiceConfigImpl(boolean keepAliveWithNoUsers, String title, String name, String outfileLocation, Constructor<? extends TestEnvironment> constructor) {
+ this.keepAliveWithNoUsers = keepAliveWithNoUsers;
+ this.title = title;
+ this.name = name;
+ this.outfileLocation = outfileLocation;
+ this.constructor = constructor;
+ }
+
+ @Override
+ public Object[] getConstructorParameters() {
+ return new Object[0];
+ }
+
+ @Override
+ public Constructor<? extends TestEnvironment> getEnvironmentConstructor() {
+ return constructor;
+ }
+
+ @Override
+ public int getMaxEnvironments() {
+ return 1;
+ }
+
+ @Override
+ public int getMaxUsersPerEnvironment() {
+ return Integer.MAX_VALUE;
+ }
+
+ @Override
+ public String getName() {
+ return name;
+ }
+
+ @Override
+ public String getOutfileLocation() {
+ return outfileLocation;
+ }
+
+ @Override
+ public String getServerTitle() {
+ return title;
+ }
+
+ @Override
+ public boolean keepEnvAliveWithNoUsers() {
+ return keepAliveWithNoUsers;
+ }
+
+ @Override
+ public boolean startEnvionrmnetOnServiceInit() {
+ return true;
+ }
+
+}

Back to the top