Author: degenaro
Date: Thu Apr 14 18:34:13 2016
New Revision: 1739163

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

define enums

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

Added: 
uima/sandbox/uima-ducc/trunk/uima-ducc-common/src/main/java/org/apache/uima/ducc/common/IDuccUser.java
URL: 
http://svn.apache.org/viewvc/uima/sandbox/uima-ducc/trunk/uima-ducc-common/src/main/java/org/apache/uima/ducc/common/IDuccUser.java?rev=1739163&view=auto
==============================================================================
--- 
uima/sandbox/uima-ducc/trunk/uima-ducc-common/src/main/java/org/apache/uima/ducc/common/IDuccUser.java
 (added)
+++ 
uima/sandbox/uima-ducc/trunk/uima-ducc-common/src/main/java/org/apache/uima/ducc/common/IDuccUser.java
 Thu Apr 14 18:34:13 2016
@@ -0,0 +1,71 @@
+/*
+ * 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.common;
+
+// Note: Coordinate with org.apache.uima.ducc.IUser
+
+public interface IDuccUser {
+
+       public enum EnvironmentVariable {
+               DUCC_HOME("DUCC_HOME"),
+               DUCC_ID_JOB("DUCC_JOBID"),
+               DUCC_ID_PROCESS("DUCC_PROCESSID"),
+               DUCC_ID_PROCESS_UNIQUE("DUCC_PROCESSID_UNIQUE"),
+               DUCC_ID_SERVICE("DUCC_SERVICE_INSTANCE"),
+               DUCC_LOG_PREFIX("DUCC_PROCESS_LOG_PREFIX"),
+               //
+               DUCC_IP("IP"),
+               DUCC_NODENAME("NodeName"),
+               USER("USER"),
+               ;
+               
+               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-common/src/main/java/org/apache/uima/ducc/common/IDuccUser.java
------------------------------------------------------------------------------
    svn:eol-style = native

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


Reply via email to