Author: mturk
Date: Fri Aug 14 17:29:06 2009
New Revision: 804306

URL: http://svn.apache.org/viewvc?rev=804306&view=rev
Log:
Add new descriptor types to DescriptorTypes enum

Modified:
    
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/DescriptorType.java

Modified: 
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/DescriptorType.java
URL: 
http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/DescriptorType.java?rev=804306&r1=804305&r2=804306&view=diff
==============================================================================
--- 
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/DescriptorType.java
 (original)
+++ 
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/DescriptorType.java
 Fri Aug 14 17:29:06 2009
@@ -52,7 +52,15 @@
     /** Socket {...@code Descriptor} type.
      * <br/>Defined integer value is: {...@code 4}
      */
-    SOCKET(         7);
+    SOCKET(         7),
+    /** Dynamic library {...@code Descriptor} type.
+     * <br/>Defined integer value is: {...@code 8}
+     */
+    DSO(            8),
+    /** Semaphore {...@code Descriptor} type.
+     * <br/>Defined integer value is: {...@code 9}
+     */
+    SEMAPHORE(      9);
 
 
     private int value;


Reply via email to