Update of /cvsroot/asterisk-java/asterisk-java/src/java/net/sf/asterisk/fastagi
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28233/src/java/net/sf/asterisk/fastagi
Modified Files:
DefaultAGIServer.java
Log Message:
Added information about default values to javadoc comments for setters.
Index: DefaultAGIServer.java
===================================================================
RCS file: /cvsroot/asterisk-java/asterisk-java/src/java/net/sf/asterisk/fastagi/DefaultAGIServer.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -p -r1.6 -r1.7
--- DefaultAGIServer.java 31 Mar 2005 22:29:52 -0000 1.6
+++ DefaultAGIServer.java 6 Apr 2005 16:38:45 -0000 1.7
@@ -96,7 +96,8 @@ public class DefaultAGIServer implements
/**
* Sets the number of worker threads in the thread pool.<br>
* This equals the maximum number of concurrent requests this AGIServer can
- * serve.
+ * serve.<br>
+ * The default pool size is 10.
*
* @param poolSize the size of the worker thread pool.
*/
@@ -106,7 +107,8 @@ public class DefaultAGIServer implements
}
/**
- * Sets the TCP port to listen on for new connections.
+ * Sets the TCP port to listen on for new connections.<br>
+ * The default bind port is 4573.
*
* @param bindPort the port to bind to.
*/
@@ -117,9 +119,11 @@ public class DefaultAGIServer implements
/**
* Sets the strategy to use for mapping AGIRequests to AGIScripts that serve
- * them.
+ * them.<br>
+ * The default mapping strategy is a ResourceBundleMappingStrategy.
*
* @param mappingStrategy the mapping strategy to use.
+ * @see ResourceBundleMappingStrategy
*/
public void setMappingStrategy(MappingStrategy mappingStrategy)
{
|