You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by de...@apache.org on 2013/11/04 15:47:41 UTC

svn commit: r1538635 - /uima/sandbox/uima-ducc/trunk/uima-ducc-common/src/main/java/org/apache/uima/ducc/common/config/CommonConfiguration.java

Author: degenaro
Date: Mon Nov  4 14:47:41 2013
New Revision: 1538635

URL: http://svn.apache.org/r1538635
Log:
UIMA-3402 DUCC ducc.properties file clean-up [jd.jost]

Modified:
    uima/sandbox/uima-ducc/trunk/uima-ducc-common/src/main/java/org/apache/uima/ducc/common/config/CommonConfiguration.java

Modified: uima/sandbox/uima-ducc/trunk/uima-ducc-common/src/main/java/org/apache/uima/ducc/common/config/CommonConfiguration.java
URL: http://svn.apache.org/viewvc/uima/sandbox/uima-ducc/trunk/uima-ducc-common/src/main/java/org/apache/uima/ducc/common/config/CommonConfiguration.java?rev=1538635&r1=1538634&r2=1538635&view=diff
==============================================================================
--- uima/sandbox/uima-ducc/trunk/uima-ducc-common/src/main/java/org/apache/uima/ducc/common/config/CommonConfiguration.java (original)
+++ uima/sandbox/uima-ducc/trunk/uima-ducc-common/src/main/java/org/apache/uima/ducc/common/config/CommonConfiguration.java Mon Nov  4 14:47:41 2013
@@ -111,31 +111,6 @@ public class CommonConfiguration {
 	@Value("#{ systemProperties['ducc.jd.queue.prefix'] }")
 	public String jdQueuePrefix;
 	
-	//	fetch the class from which to reserve host where the JD should run 
-	//  example: job-driver-class
-	@Value("#{ systemProperties['ducc.jd.host.class'] }")
-	public String jdHostClass;
-	
-	//	fetch the JD host description 
-	//  example: Job Driver
-	@Value("#{ systemProperties['ducc.jd.host.description'] }")
-	public String jdHostDescription;
-	
-	//	fetch the JD host memory size
-	//  example: 8GB
-	@Value("#{ systemProperties['ducc.jd.host.memory.size'] }")
-	public String jdHostMemorySize;
-	
-	//	fetch the JD host number of machines
-	//  example: 1
-	@Value("#{ systemProperties['ducc.jd.host.number.of.machines'] }")
-	public String jdHostNumberOfMachines;
-	
-	//	fetch the JD host user
-	//  example: System
-	@Value("#{ systemProperties['ducc.jd.host.user'] }")
-	public String jdHostUser;
-	
 	//	fetch the name of an endpoint where the Service Manager should post state updates
 	@Value("#{ systemProperties['ducc.sm.state.update.endpoint'] }")
 	public String smStateUpdateEndpoint;