You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by pg...@apache.org on 2002/10/30 07:23:13 UTC

cvs commit: jakarta-james/src/java/org/apache/james/core AbstractJamesService.java

pgoldstein    2002/10/29 22:23:13

  Modified:    src/java/org/apache/james/core AbstractJamesService.java
  Log:
  Changing configuration parameter names to match the format of other parameters - 
  using camel case.
  
  
  Revision  Changes    Path
  1.3       +3 -3      jakarta-james/src/java/org/apache/james/core/AbstractJamesService.java
  
  Index: AbstractJamesService.java
  ===================================================================
  RCS file: /home/cvs/jakarta-james/src/java/org/apache/james/core/AbstractJamesService.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- AbstractJamesService.java	28 Oct 2002 19:38:37 -0000	1.2
  +++ AbstractJamesService.java	30 Oct 2002 06:23:12 -0000	1.3
  @@ -150,7 +150,7 @@
   
           port = conf.getChild("port").getValueAsInteger(getDefaultPort());
   
  -        Configuration serverSocketTypeConf = conf.getChild("server-socket-type", false);
  +        Configuration serverSocketTypeConf = conf.getChild("serverSocketType", false);
           String confSocketType = null;
           if (serverSocketTypeConf != null ) {
               confSocketType = serverSocketTypeConf.getValue();
  @@ -170,7 +170,7 @@
           }
   
           StringBuffer infoBuffer;
  -        threadGroup = conf.getChild("thread-group").getValue(null);
  +        threadGroup = conf.getChild("threadGroup").getValue(null);
           if (threadGroup != null) {
               infoBuffer =
                   new StringBuffer(64)
  @@ -239,7 +239,7 @@
           final String location = "generated:" + getServiceType();
   
           if (connectionManager instanceof SimpleConnectionManager) {
  -            String connectionLimitString = conf.getChild("connection-limit").getValue(null);
  +            String connectionLimitString = conf.getChild("connectionLimit").getValue(null);
               if (connectionLimitString != null) {
                   try {
                       connectionLimit = new Integer(connectionLimitString);
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>