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 2016/04/14 20:33:48 UTC

svn commit: r1739162 - /uima/sandbox/uima-ducc/trunk/uima-ducc-user/src/main/java/org/apache/uima/ducc/IUser.java

Author: degenaro
Date: Thu Apr 14 18:33:48 2016
New Revision: 1739162

URL: http://svn.apache.org/viewvc?rev=1739162&view=rev
Log:
UIMA-4884 DUCC standardization of environment variables

define enums

Added:
    uima/sandbox/uima-ducc/trunk/uima-ducc-user/src/main/java/org/apache/uima/ducc/IUser.java   (with props)

Added: uima/sandbox/uima-ducc/trunk/uima-ducc-user/src/main/java/org/apache/uima/ducc/IUser.java
URL: http://svn.apache.org/viewvc/uima/sandbox/uima-ducc/trunk/uima-ducc-user/src/main/java/org/apache/uima/ducc/IUser.java?rev=1739162&view=auto
==============================================================================
--- uima/sandbox/uima-ducc/trunk/uima-ducc-user/src/main/java/org/apache/uima/ducc/IUser.java (added)
+++ uima/sandbox/uima-ducc/trunk/uima-ducc-user/src/main/java/org/apache/uima/ducc/IUser.java Thu Apr 14 18:33:48 2016
@@ -0,0 +1,60 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+*/
+package org.apache.uima.ducc;
+
+public interface IUser {
+
+	public enum EnvironmentVariable {
+		DUCC_NODENAME("NodeName"),
+		;
+		
+		private String value = null;
+		
+		private EnvironmentVariable(String valueForKey) {
+			setValue(valueForKey);
+		}
+		
+		private void setValue(String valueForKey) {
+			value = valueForKey;
+		}
+		
+		private String getValue() {
+			return value;
+		}
+		
+		public String standard() {
+			return name();
+		}
+		
+		public String mapped() {
+			return getValue();
+		}
+		
+		public String value() {
+			String retVal = mapped();
+			switch(this) {
+			default:
+				break;
+			}
+			return retVal;
+		}
+	}
+	
+	
+}

Propchange: uima/sandbox/uima-ducc/trunk/uima-ducc-user/src/main/java/org/apache/uima/ducc/IUser.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: uima/sandbox/uima-ducc/trunk/uima-ducc-user/src/main/java/org/apache/uima/ducc/IUser.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain