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 sa...@apache.org on 2004/11/29 13:59:23 UTC

cvs commit: ws-axis/c/samples/server/session/headers/counters CounterSoapBindingImpl.java

sanjaya     2004/11/29 04:59:23

  Added:       c/samples/server/session/headers/counters
                        CounterSoapBindingImpl.java
  Log:
  Adding java source file for SOAP header based session sample's Axis Java
  service
  
  Revision  Changes    Path
  1.1                  ws-axis/c/samples/server/session/headers/counters/CounterSoapBindingImpl.java
  
  Index: CounterSoapBindingImpl.java
  ===================================================================
  /**
   * CounterSoapBindingImpl.java
   *
   * This file was auto-generated from WSDL
   * by the Apache Axis 1.2beta Mar 31, 2004 (12:47:03 EST) WSDL2Java emitter.
   */
  
  package counters;
  
  public class CounterSoapBindingImpl implements counters.Counter_Port{
  
      int board = 97;
  
      public int count(int in0) throws java.rmi.RemoteException {
  	board = board + in0;
          return board;
      }
  
  }