You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@axis.apache.org by ve...@apache.org on 2012/01/26 22:27:58 UTC

svn commit: r1236389 - /axis/axis1/java/trunk/axis-maven-plugin/src/main/java/org/apache/axis/maven/StartServerMojo.java

Author: veithen
Date: Thu Jan 26 21:27:57 2012
New Revision: 1236389

URL: http://svn.apache.org/viewvc?rev=1236389&view=rev
Log:
Avoid @readonly for parameters that can/should only be set on the command line. While @readonly makes sense here, the drawback is that these parameters don't appear in the generated documentation.

Modified:
    axis/axis1/java/trunk/axis-maven-plugin/src/main/java/org/apache/axis/maven/StartServerMojo.java

Modified: axis/axis1/java/trunk/axis-maven-plugin/src/main/java/org/apache/axis/maven/StartServerMojo.java
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-maven-plugin/src/main/java/org/apache/axis/maven/StartServerMojo.java?rev=1236389&r1=1236388&r2=1236389&view=diff
==============================================================================
--- axis/axis1/java/trunk/axis-maven-plugin/src/main/java/org/apache/axis/maven/StartServerMojo.java (original)
+++ axis/axis1/java/trunk/axis-maven-plugin/src/main/java/org/apache/axis/maven/StartServerMojo.java Thu Jan 26 21:27:57 2012
@@ -110,11 +110,10 @@ public class StartServerMojo extends Abs
     private String debugArgs;
     
     /**
-     * Indicates whether the server should be started in debug mode. This flag can only be set from
-     * the command line.
+     * Indicates whether the server should be started in debug mode. This flag should only be set
+     * from the command line.
      * 
      * @parameter expression="${axis.server.debug}" default-value="false"
-     * @readonly
      */
     private boolean debug;
     
@@ -126,11 +125,10 @@ public class StartServerMojo extends Abs
     private String jmxArgs;
     
     /**
-     * Indicates whether the server should be started with remote JMX enabled. This flag can only be
-     * set from the command line.
+     * Indicates whether the server should be started with remote JMX enabled. This flag should only
+     * be set from the command line.
      * 
      * @parameter expression="${axis.server.jmx}" default-value="false"
-     * @readonly
      */
     private boolean jmx;