scheu       02/02/08 14:57:19

  Modified:    java/src/org/apache/axis/deployment/wsdd WSDDService.java
  Log:
  added addTypeMapping so a type mapping can be added to the service without having to 
deploy it at the same time
  
  Revision  Changes    Path
  1.38      +10 -1     
xml-axis/java/src/org/apache/axis/deployment/wsdd/WSDDService.java
  
  Index: WSDDService.java
  ===================================================================
  RCS file: 
/home/cvs/xml-axis/java/src/org/apache/axis/deployment/wsdd/WSDDService.java,v
  retrieving revision 1.37
  retrieving revision 1.38
  diff -u -r1.37 -r1.38
  --- WSDDService.java  7 Feb 2002 23:47:40 -0000       1.37
  +++ WSDDService.java  8 Feb 2002 22:57:19 -0000       1.38
  @@ -132,6 +132,15 @@
               providerQName = XMLUtils.getQNameFromString(typeStr, e);
       }
   
  +    /**
  +     * Add a WSDDTypeMapping to the Service.
  +     * @param mapping 
  +     **/
  +    public void addTypeMapping(WSDDTypeMapping mapping) {
  +        typeMappings.add(mapping);
  +    }
  +   
  +
       protected QName getElementName()
       {
           return WSDDConstants.SERVICE_QNAME;
  @@ -268,7 +277,7 @@
           cachedService = service;
           return service;
       }
  -    
  +
       public void deployTypeMapping(WSDDTypeMapping mapping)
           throws WSDDException
       {
  
  
  


Reply via email to