You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by ga...@apache.org on 2004/08/14 01:31:29 UTC

cvs commit: ws-axis/java/src/org/apache/axis/description JavaServiceDesc.java

gawor       2004/08/13 16:31:28

  Modified:    java/src/org/apache/axis/description JavaServiceDesc.java
  Log:
  ignore ServiceLifecycle methods
  
  Revision  Changes    Path
  1.14      +2 -1      ws-axis/java/src/org/apache/axis/description/JavaServiceDesc.java
  
  Index: JavaServiceDesc.java
  ===================================================================
  RCS file: /home/cvs/ws-axis/java/src/org/apache/axis/description/JavaServiceDesc.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- JavaServiceDesc.java	10 May 2004 20:20:17 -0000	1.13
  +++ JavaServiceDesc.java	13 Aug 2004 23:31:28 -0000	1.14
  @@ -1102,7 +1102,8 @@
           for (int i = 0; i < methods.length; i++) {
               Method method = methods[i];
               if (Modifier.isPublic(method.getModifiers()) &&
  -                    method.getName().equals(methodName)) {
  +                method.getName().equals(methodName) &&
  +                !isServiceLifeCycleMethod(implClass, method)) {
                   createOperationForMethod(method);
               }
           }