You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by am...@apache.org on 2008/03/24 12:14:48 UTC

svn commit: r640380 - in /webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/util: CommandLineOptionConstants.java CommandLineOptionParser.java

Author: amilas
Date: Mon Mar 24 04:14:48 2008
New Revision: 640380

URL: http://svn.apache.org/viewvc?rev=640380&view=rev
Log:
added two new options to specify a name to skelton interface

Modified:
    webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/util/CommandLineOptionConstants.java
    webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/util/CommandLineOptionParser.java

Modified: webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/util/CommandLineOptionConstants.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/util/CommandLineOptionConstants.java?rev=640380&r1=640379&r2=640380&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/util/CommandLineOptionConstants.java (original)
+++ webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/util/CommandLineOptionConstants.java Mon Mar 24 04:14:48 2008
@@ -82,6 +82,10 @@
         String HTTP_PROXY_PORT_OPTION_LONG = "http-proxy-port";
         String EXCLUDE_PAKAGES_OPTION = "ep";
         String EXCLUDE_PAKAGES_OPTION_LONG = "exclude-packages";
+        String SKELTON_INTERFACE_NAME_OPTION = "sin";
+        String SKELTON_INTERFACE_NAME_OPTION_LONG = "skelton-interface-name";
+        String SKELTON_CLASS_NAME_OPTION = "scn";
+        String SKELTON_CLASS_NAME_OPTION_LONG = "skelton-class-name";
 
         String INVALID_OPTION = "INVALID_OPTION";
         String EXTRA_OPTIONTYPE_PREFIX = "E";

Modified: webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/util/CommandLineOptionParser.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/util/CommandLineOptionParser.java?rev=640380&r1=640379&r2=640380&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/util/CommandLineOptionParser.java (original)
+++ webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/util/CommandLineOptionParser.java Mon Mar 24 04:14:48 2008
@@ -120,8 +120,7 @@
         List faultList = new ArrayList();
         Iterator iterator = this.commandLineOptions.values().iterator();
         while (iterator.hasNext()) {
-            CommandLineOption commandLineOption = ((CommandLineOption) (iterator
-                    .next()));
+            CommandLineOption commandLineOption = ((CommandLineOption) (iterator.next()));
             if (validator.isInvalid(commandLineOption)) {
                 faultList.add(commandLineOption);
             }



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org