KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tctest > runner > DistributedTestRunnerConfig


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tctest.runner;
5
6 public class DistributedTestRunnerConfig {
7
8   private long startTimeout = 30 * 1000;
9   private long executionTimeout = 13 * 60 * 1000;
10
11   public long executionTimeout() {
12     return this.executionTimeout;
13   }
14
15   public long startTimeout() {
16     return this.startTimeout;
17   }
18
19   public void setExecutionTimeout(long executionTimeout) {
20     this.executionTimeout = executionTimeout;
21   }
22
23 }
24
Popular Tags