You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by kg...@apache.org on 2011/12/06 08:46:16 UTC

svn commit: r1210809 - /felix/trunk/httplite/src/main/java/org/apache/felix/httplite/server/Server.java

Author: kgilmer
Date: Tue Dec  6 07:46:16 2011
New Revision: 1210809

URL: http://svn.apache.org/viewvc?rev=1210809&view=rev
Log:
httplite: Add javadoc to public constants, remove non-java1.4 compatible annotation.

Modified:
    felix/trunk/httplite/src/main/java/org/apache/felix/httplite/server/Server.java

Modified: felix/trunk/httplite/src/main/java/org/apache/felix/httplite/server/Server.java
URL: http://svn.apache.org/viewvc/felix/trunk/httplite/src/main/java/org/apache/felix/httplite/server/Server.java?rev=1210809&r1=1210808&r2=1210809&view=diff
==============================================================================
--- felix/trunk/httplite/src/main/java/org/apache/felix/httplite/server/Server.java (original)
+++ felix/trunk/httplite/src/main/java/org/apache/felix/httplite/server/Server.java Tue Dec  6 07:46:16 2011
@@ -37,17 +37,37 @@ import org.apache.felix.httplite.osgi.Se
 **/
 public class Server
 {
+    /**
+     * Connection timeout property
+     */
     public static final String CONFIG_PROPERTY_CONNECTION_TIMEOUT_PROP = "org.apache.felix.http.connection.timeout";
+    /**
+     * Connection request limit property
+     */
     public static final String CONFIG_PROPERTY_CONNECTION_REQUESTLIMIT_PROP = "org.apache.felix.http.connection.requestlimit";
+    /**
+     * Thread pool timeout property
+     */
     public static final String CONFIG_PROPERTY_THREADPOOL_TIMEOUT_PROP = "org.apache.felix.http.threadpool.timeout";
+    /**
+     * Thread pool limit property
+     */
     public static final String CONFIG_PROPERTY_THREADPOOL_LIMIT_PROP = "org.apache.felix.http.threadpool.limit";
-    //Flag to enable debugging for this service implementation. The default is false.
+     /**
+     * Flag to enable debugging for this service implementation. The default is false.
+     */
     public static final String CONFIG_PROPERTY_HTTP_DEBUG = "org.apache.felix.http.debug";
-    //  Flag to enable the user of HTTPS. The default is false.
+    /**
+     * Flag to enable the user of HTTPS. The default is false.
+     */
     public static final String CONFIG_PROPERTY_HTTPS_ENABLE = "org.apache.felix.https.enable";
-    // Flag to enable the use of HTTP. The default is true.
-    public static final String CONFIG_PROPERTY_HTTP_ENABLE = "org.apache.felix.http.enable";
-    // The port used for servlets and resources available via HTTP. The default is 8080. A negative port number has the same effect as setting org.apache.felix.http.enable to false.
+    /**
+     * Flag to enable the use of HTTP. The default is true.
+     */
+    public static final String CONFIG_PROPERTY_HTTP_ENABLE = "org.apache.felix.http.enable"; 
+    /**
+     * The port used for servlets and resources available via HTTP. The default is 8080. A negative port number has the same effect as setting org.apache.felix.http.enable to false.
+     */
     public static final String CONFIG_PROPERTY_HTTP_PORT = "org.osgi.service.http.port";
 
     /**