REST implementation

profileKailin-an
bookstore-webapi.zip

BookStoreCXFWS/.classpath

BookStoreCXFWS/.project

CXFWS org.eclipse.wst.jsdt.core.javascriptValidator org.eclipse.jdt.core.javabuilder org.eclipse.wst.common.project.facet.core.builder org.eclipse.wst.validation.validationbuilder org.eclipse.jem.workbench.JavaEMFNature org.eclipse.wst.common.modulecore.ModuleCoreNature org.eclipse.wst.common.project.facet.core.nature org.eclipse.jdt.core.javanature org.eclipse.wst.jsdt.core.jsNature

BookStoreCXFWS/.settings/.jsdtscope

BookStoreCXFWS/.settings/org.eclipse.jdt.core.prefs

eclipse.preferences.version=1 org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve org.eclipse.jdt.core.compiler.compliance=1.5 org.eclipse.jdt.core.compiler.debug.lineNumber=generate org.eclipse.jdt.core.compiler.debug.localVariable=generate org.eclipse.jdt.core.compiler.debug.sourceFile=generate org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.enumIdentifier=error org.eclipse.jdt.core.compiler.source=1.5

BookStoreCXFWS/.settings/org.eclipse.jst.ws.cxf.core.prefs

eclipse.preferences.version=1 org.eclipse.jst.ws.cxf.core.runtime.version=3.0.1

BookStoreCXFWS/.settings/org.eclipse.wst.common.component

BookStoreCXFWS/.settings/org.eclipse.wst.common.project.facet.core.xml

BookStoreCXFWS/.settings/org.eclipse.wst.jsdt.ui.superType.container

org.eclipse.wst.jsdt.launching.baseBrowserLibrary

BookStoreCXFWS/.settings/org.eclipse.wst.jsdt.ui.superType.name

Window

BookStoreCXFWS/build/classes/org/mississippi/book/store/bo/Address.class

                package org.mississippi.book.store.bo;

                public 
                synchronized 
                class Address 
                implements java.io.Serializable {
    
                private String 
                id;
    
                private String 
                address;
    
                private String 
                city;
    
                private String 
                state;
    
                private String 
                country;
    
                private String 
                pin;
    
                public void Address();
    
                public void Address(String, String, String, String, String);
    
                public String 
                getId();
    
                public void 
                setId(String);
    
                public String 
                getAddress();
    
                public void 
                setAddress(String);
    
                public String 
                getCity();
    
                public void 
                setCity(String);
    
                public String 
                getState();
    
                public void 
                setState(String);
    
                public String 
                getCountry();
    
                public void 
                setCountry(String);
    
                public String 
                getPin();
    
                public void 
                setPin(String);
    
                public String 
                toString();
    
                public int 
                hashCode();
    
                public boolean 
                equals(Object);
}

            

BookStoreCXFWS/build/classes/org/mississippi/book/store/bo/Book.class

                package org.mississippi.book.store.bo;

                public 
                synchronized 
                class Book 
                implements java.io.Serializable {
    
                private String 
                id;
    
                private String 
                title;
    
                private String 
                author;
    
                public void Book();
    
                public void Book(String, String, String);
    
                public String 
                getId();
    
                public String 
                toString();
    
                public void 
                setId(String);
    
                public String 
                getTitle();
    
                public void 
                setTitle(String);
    
                public String 
                getAuthor();
    
                public void 
                setAuthor(String);
    
                public int 
                hashCode();
    
                public boolean 
                equals(Object);
}

            

BookStoreCXFWS/build/classes/org/mississippi/book/store/bo/BookInventory.class

                package org.mississippi.book.store.bo;

                public 
                synchronized 
                class BookInventory 
                implements java.io.Serializable {
    
                private java.util.Map 
                inventoryMap;
    
                public void BookInventory();
    
                public void 
                add(String);
    
                public java.util.Map 
                getInventoryMap();
    
                public String 
                toString();
}

            

BookStoreCXFWS/build/classes/org/mississippi/book/store/bo/BookOrder.class

                package org.mississippi.book.store.bo;

                public 
                synchronized 
                class BookOrder 
                implements java.io.Serializable {
    
                private java.util.Map 
                books;
    
                private Order 
                order;
    
                private String 
                customerId;
    
                private java.util.Date 
                shipDate;
    
                private java.util.Date 
                eta;
    
                public java.util.Date 
                getShipDate();
    
                public void BookOrder();
    
                public void BookOrder(Order, String);
    
                public void 
                setShipDate(java.util.Date);
    
                public java.util.Date 
                getEta();
    
                public void 
                setEta(java.util.Date);
    
                public java.util.Map 
                getBooks();
    
                public void 
                setBooks(java.util.Map);
    
                public Order 
                getOrder();
    
                public void 
                setOrder(Order);
    
                public String 
                getCustomerId();
    
                public void 
                setCustomerId(String);
    
                public void 
                add(String, int);
    
                public int 
                hashCode();
    
                public boolean 
                equals(Object);
    
                public String 
                toString();
}

            

BookStoreCXFWS/build/classes/org/mississippi/book/store/bo/CreditCard.class

                package org.mississippi.book.store.bo;

                public 
                synchronized 
                class CreditCard 
                implements java.io.Serializable {
    
                private String 
                orderId;
    
                private String 
                number;
    
                private String 
                pin;
    
                private String 
                name;
    
                private String 
                type;
    
                private String 
                expDate;
    
                public String 
                getOrderId();
    
                public void 
                setOrderId(String);
    
                public void CreditCard();
    
                public void CreditCard(String, String, String, String, String);
    
                public String 
                getNumber();
    
                public void 
                setNumber(String);
    
                public String 
                getPin();
    
                public void 
                setPin(String);
    
                public String 
                getName();
    
                public void 
                setName(String);
    
                public String 
                getType();
    
                public void 
                setType(String);
    
                public String 
                getExpDate();
    
                public void 
                setExpDate(String);
    
                public String 
                toString();
}

            

BookStoreCXFWS/build/classes/org/mississippi/book/store/bo/Order.class

                package org.mississippi.book.store.bo;

                public 
                synchronized 
                class Order 
                implements java.io.Serializable {
    
                private String 
                id;
    
                private java.util.Date 
                date;
    
                private String 
                status;
    
                public void 
                setId(int);
    
                public void 
                setId(String);
    
                public void Order();
    
                public void Order(java.util.Date, String);
    
                public int 
                hashCode();
    
                public boolean 
                equals(Object);
    
                public String 
                getStatus();
    
                public void 
                setStatus(String);
    
                public String 
                getId();
    
                public java.util.Date 
                getDate();
    
                public void 
                setDate(java.util.Date);
    
                public String 
                toString();
}

            

BookStoreCXFWS/build/classes/org/mississippi/book/store/bo/Partner.class

                package org.mississippi.book.store.bo;

                public 
                synchronized 
                class Partner 
                implements java.io.Serializable {
    
                private String 
                id;
    
                private String 
                name;
    
                public void Partner();
    
                public String 
                getId();
    
                public void 
                setId(String);
    
                public String 
                getName();
    
                public void 
                setName(String);
    
                public String 
                toString();
    
                public int 
                hashCode();
    
                public boolean 
                equals(Object);
}

            

BookStoreCXFWS/build/classes/org/mississippi/book/store/bo/Review.class

                package org.mississippi.book.store.bo;

                public 
                synchronized 
                class Review 
                implements java.io.Serializable {
    
                private String 
                id;
    
                private String 
                bookId;
    
                private String 
                comments;
    
                private String 
                author;
    
                private java.util.Date 
                given;
    
                public void Review();
    
                public String 
                getId();
    
                public void 
                setId(String);
    
                public String 
                getBookId();
    
                public void 
                setBookId(String);
    
                public String 
                getComments();
    
                public void 
                setComments(String);
    
                public String 
                getAuthor();
    
                public void 
                setAuthor(String);
    
                public java.util.Date 
                getGiven();
    
                public void 
                setGiven(java.util.Date);
    
                public String 
                toString();
    
                public int 
                hashCode();
    
                public boolean 
                equals(Object);
}

            

BookStoreCXFWS/build/classes/org/mississippi/book/store/bo/Shipping.class

                package org.mississippi.book.store.bo;

                public 
                synchronized 
                class Shipping 
                implements java.io.Serializable {
    
                private String 
                id;
    
                private String 
                orderId;
    
                private Address 
                shippAddress;
    
                private String 
                method;
    
                private Address 
                pickup;
    
                public void Shipping();
    
                public void Shipping(Address, String, Address, String);
    
                public Address 
                getPickup();
    
                public void 
                setPickup(Address);
    
                public String 
                getOrderId();
    
                public String 
                getId();
    
                public Address 
                getShippAddress();
    
                public void 
                setShippAddress(Address);
    
                public String 
                getMethod();
    
                public void 
                setMethod(String);
    
                public int 
                hashCode();
    
                public boolean 
                equals(Object);
    
                public String 
                toString();
    
                public void 
                setId(int);
}

            

BookStoreCXFWS/build/classes/org/mississippi/book/store/client/BookStoreClient.class

                package org.mississippi.book.store.client;

                public 
                final 
                synchronized 
                class BookStoreClient {
    
                public void BookStoreClient();
    
                public 
                static void 
                main(String[]) 
                throws Exception;
}

            

BookStoreCXFWS/build/classes/org/mississippi/book/store/dao/BookDao.class

                package org.mississippi.book.store.dao;

                public 
                synchronized 
                class BookDao {
    
                private java.util.List 
                books;
    
                public void BookDao();
    
                public org.mississippi.book.store.bo.Book 
                findOne(String, String) 
                throws org.mississippi.book.store.exception.BookStoreException;
    
                public void 
                save(org.mississippi.book.store.bo.Book) 
                throws org.mississippi.book.store.exception.BookStoreException;
}

            

BookStoreCXFWS/build/classes/org/mississippi/book/store/dao/BookInventoryDao.class

                package org.mississippi.book.store.dao;

                public 
                synchronized 
                class BookInventoryDao {
    
                private java.util.Map 
                inventory;
    
                public void BookInventoryDao();
    
                public void 
                update(org.mississippi.book.store.bo.BookInventory);
}

            

BookStoreCXFWS/build/classes/org/mississippi/book/store/dao/BookOrderDao.class

                package org.mississippi.book.store.dao;

                public 
                synchronized 
                class BookOrderDao {
    
                private java.util.List 
                bookOrders;
    
                public void BookOrderDao();
    
                public void 
                save(org.mississippi.book.store.bo.BookOrder) 
                throws org.mississippi.book.store.exception.BookStoreException;
}

            

BookStoreCXFWS/build/classes/org/mississippi/book/store/dao/OrderDao.class

                package org.mississippi.book.store.dao;

                public 
                synchronized 
                class OrderDao {
    
                private java.util.List 
                orders;
    
                public void OrderDao();
    
                public String 
                save(org.mississippi.book.store.bo.Order) 
                throws org.mississippi.book.store.exception.BookStoreException;
    
                public org.mississippi.book.store.bo.Order 
                findOne(String) 
                throws org.mississippi.book.store.exception.BookStoreException;
    
                public boolean 
                update(org.mississippi.book.store.bo.Order) 
                throws org.mississippi.book.store.exception.BookStoreException;
    
                public java.util.List 
                getAll(String);
}

            

BookStoreCXFWS/build/classes/org/mississippi/book/store/dao/PartnerDao.class

                package org.mississippi.book.store.dao;

                public 
                synchronized 
                class PartnerDao {
    
                private java.util.List 
                partners;
    
                public void PartnerDao();
    
                public void 
                save(org.mississippi.book.store.bo.Partner) 
                throws org.mississippi.book.store.exception.BookStoreException;
}

            

BookStoreCXFWS/build/classes/org/mississippi/book/store/dao/PaymentDao.class

                package org.mississippi.book.store.dao;

                public 
                synchronized 
                class PaymentDao {
    
                private java.util.List 
                creditCards;
    
                public void PaymentDao();
    
                public void 
                save(org.mississippi.book.store.bo.CreditCard) 
                throws org.mississippi.book.store.exception.BookStoreException;
}

            

BookStoreCXFWS/build/classes/org/mississippi/book/store/dao/ReviewDao.class

                package org.mississippi.book.store.dao;

                public 
                synchronized 
                class ReviewDao {
    
                private java.util.List 
                reviews;
    
                public void ReviewDao();
    
                public void 
                save(org.mississippi.book.store.bo.Review) 
                throws org.mississippi.book.store.exception.BookStoreException;
    
                public java.util.List 
                findAll(String);
}

            

BookStoreCXFWS/build/classes/org/mississippi/book/store/dao/ShippingDao.class

                package org.mississippi.book.store.dao;

                public 
                synchronized 
                class ShippingDao {
    
                private java.util.List 
                shippings;
    
                public void ShippingDao();
    
                public String 
                save(org.mississippi.book.store.bo.Shipping) 
                throws org.mississippi.book.store.exception.BookStoreException;
    
                public java.util.List 
                findAll(String);
}

            

BookStoreCXFWS/build/classes/org/mississippi/book/store/exception/BookStoreException.class

                package org.mississippi.book.store.exception;

                public 
                synchronized 
                class BookStoreException 
                extends Exception {
    
                private 
                static 
                final long 
                serialVersionUID = 5979229666870171726;
    
                public void BookStoreException(String);
}

            

BookStoreCXFWS/build/classes/org/mississippi/book/store/services/BookStore.class

                package org.mississippi.book.store.services;

                public 
                abstract 
                interface BookStore {
    
                public 
                abstract org.mississippi.book.store.bo.Book 
                searchBook(String, String) 
                throws org.mississippi.book.store.exception.BookStoreException;
    
                public 
                abstract java.util.List 
                buyOrder(java.util.List) 
                throws org.mississippi.book.store.exception.BookStoreException;
    
                public 
                abstract String 
                creditCardPayment(org.mississippi.book.store.bo.CreditCard) 
                throws org.mississippi.book.store.exception.BookStoreException;
    
                public 
                abstract String 
                shipOrder(org.mississippi.book.store.bo.Shipping) 
                throws org.mississippi.book.store.exception.BookStoreException;
    
                public 
                abstract java.util.List 
                inProgressOrders();
    
                public 
                abstract String 
                cancelOrder(String) 
                throws org.mississippi.book.store.exception.BookStoreException;
    
                public 
                abstract String 
                registerPartner(org.mississippi.book.store.bo.Partner) 
                throws org.mississippi.book.store.exception.BookStoreException;
    
                public 
                abstract String 
                acceptReviews(org.mississippi.book.store.bo.Review) 
                throws org.mississippi.book.store.exception.BookStoreException;
    
                public 
                abstract String 
                updateInventory(org.mississippi.book.store.bo.BookInventory);
    
                public 
                abstract java.util.List 
                pickupLocations(String);
}

            

BookStoreCXFWS/build/classes/org/mississippi/book/store/services/BookStoreImpl.class

                package org.mississippi.book.store.services;

                public 
                synchronized 
                class BookStoreImpl 
                implements BookStore {
    
                private 
                static 
                final String 
                SUCCESS = Success;
    
                private 
                static 
                final String 
                FAILURE = Failure;
    
                private org.mississippi.book.store.dao.BookDao 
                bookDao;
    
                private org.mississippi.book.store.dao.BookOrderDao 
                bookOrderDao;
    
                private org.mississippi.book.store.dao.PaymentDao 
                paymentDao;
    
                private org.mississippi.book.store.dao.ShippingDao 
                shippingDao;
    
                private org.mississippi.book.store.dao.OrderDao 
                orderDao;
    
                private org.mississippi.book.store.dao.PartnerDao 
                partnerDao;
    
                private org.mississippi.book.store.dao.ReviewDao 
                reviewDao;
    
                private org.mississippi.book.store.dao.BookInventoryDao 
                bookInventoryDao;
    
                public void BookStoreImpl();
    
                public org.mississippi.book.store.bo.Book 
                searchBook(String, String) 
                throws org.mississippi.book.store.exception.BookStoreException;
    
                public java.util.List 
                buyOrder(java.util.List) 
                throws org.mississippi.book.store.exception.BookStoreException;
    
                public String 
                creditCardPayment(org.mississippi.book.store.bo.CreditCard) 
                throws org.mississippi.book.store.exception.BookStoreException;
    
                public String 
                shipOrder(org.mississippi.book.store.bo.Shipping) 
                throws org.mississippi.book.store.exception.BookStoreException;
    
                public java.util.List 
                inProgressOrders();
    
                public String 
                cancelOrder(String) 
                throws org.mississippi.book.store.exception.BookStoreException;
    
                public String 
                registerPartner(org.mississippi.book.store.bo.Partner) 
                throws org.mississippi.book.store.exception.BookStoreException;
    
                public String 
                acceptReviews(org.mississippi.book.store.bo.Review) 
                throws org.mississippi.book.store.exception.BookStoreException;
    
                public String 
                updateInventory(org.mississippi.book.store.bo.BookInventory);
    
                public java.util.List 
                pickupLocations(String);
}

            

BookStoreCXFWS/build/classes/org/mississippi/book/store/services/cxf.xml

BookStoreCXFWS/src/org/mississippi/book/store/bo/Address.java

BookStoreCXFWS/src/org/mississippi/book/store/bo/Address.java

package  org . mississippi . book . store . bo ;

import  java . io . Serializable ;

public   class   Address   implements   Serializable {
     private   String  id ;
     private   String  address ;
     private   String  city ;
     private   String  state ;
     private   String  country ;
     private   String  pin ;
    
    
     public   Address ()   {
         super ();
     }

     public   Address ( String  address ,   String  city ,   String  state ,   String  country ,
             String  pin )   {
         super ();
         this . address  =  address ;
         this . city  =  city ;
         this . state  =  state ;
         this . country  =  country ;
         this . pin  =  pin ;
     }
    
     public   String  getId ()   {
         return  id ;
     }
     public   void  setId ( String  id )   {
         this . id  =  id ;
     }
     public   String  getAddress ()   {
         return  address ;
     }
     public   void  setAddress ( String  address )   {
         this . address  =  address ;
     }
     public   String  getCity ()   {
         return  city ;
     }
     public   void  setCity ( String  city )   {
         this . city  =  city ;
     }
     public   String  getState ()   {
         return  state ;
     }
     public   void  setState ( String  state )   {
         this . state  =  state ;
     }
     public   String  getCountry ()   {
         return  country ;
     }
     public   void  setCountry ( String  country )   {
         this . country  =  country ;
     }
     public   String  getPin ()   {
         return  pin ;
     }
     public   void  setPin ( String  pin )   {
         this . pin  =  pin ;
     }
    @ Override
     public   String  toString ()   {
         return   "Address [id="   +  id  +   ", address="   +  address  +   ", city="   +  city
                 +   ", state="   +  state  +   ", country="   +  country  +   ", pin="   +  pin
                 +   "]" ;
     }
    @ Override
     public   int  hashCode ()   {
         final   int  prime  =   31 ;
         int  result  =   1 ;
        result  =  prime  *  result  +   (( id  ==   null )   ?   0   :  id . hashCode ());
         return  result ;
     }
    @ Override
     public   boolean  equals ( Object  obj )   {
         if   ( this   ==  obj )
             return   true ;
         if   ( obj  ==   null )
             return   false ;
         if   ( getClass ()   !=  obj . getClass ())
             return   false ;
         Address  other  =   ( Address )  obj ;
         if   ( id  ==   null )   {
             if   ( other . id  !=   null )
                 return   false ;
         }   else   if   ( ! id . equals ( other . id ))
             return   false ;
         return   true ;
     }
    
}

BookStoreCXFWS/src/org/mississippi/book/store/bo/Book.java

BookStoreCXFWS/src/org/mississippi/book/store/bo/Book.java

package  org . mississippi . book . store . bo ;

import  java . io . Serializable ;

public   class   Book   implements   Serializable {
     private   String  id ;
     private   String  title ;
     private   String  author ;
    
    
     public   Book ()   {
         super ();
     }
    
     public   Book ( String  id ,   String  title ,   String  author )   {
         super ();
         this . id  =  id ;
         this . title  =  title ;
         this . author  =  author ;
     }
    
     public   String  getId ()   {
         return  id ;
     }
    @ Override
     public   String  toString ()   {
         return   "Book [id="   +  id  +   ", title="   +  title  +   ", author="   +  author
                 +   "]" ;
     }
     public   void  setId ( String  id )   {
         this . id  =  id ;
     }
     public   String  getTitle ()   {
         return  title ;
     }
     public   void  setTitle ( String  title )   {
         this . title  =  title ;
     }
     public   String  getAuthor ()   {
         return  author ;
     }
     public   void  setAuthor ( String  author )   {
         this . author  =  author ;
     }
    @ Override
     public   int  hashCode ()   {
         final   int  prime  =   31 ;
         int  result  =   1 ;
        result  =  prime  *  result  +   (( id  ==   null )   ?   0   :  id . hashCode ());
         return  result ;
     }
    @ Override
     public   boolean  equals ( Object  obj )   {
         if   ( this   ==  obj )
             return   true ;
         if   ( obj  ==   null )
             return   false ;
         if   ( getClass ()   !=  obj . getClass ())
             return   false ;
         Book  other  =   ( Book )  obj ;
         if   ( id  ==   null )   {
             if   ( other . id  !=   null )
                 return   false ;
         }   else   if   ( ! id . equals ( other . id ))
             return   false ;
         return   true ;
     }
    
    
}

BookStoreCXFWS/src/org/mississippi/book/store/bo/BookInventory.java

BookStoreCXFWS/src/org/mississippi/book/store/bo/BookInventory.java

package  org . mississippi . book . store . bo ;

import  java . io . Serializable ;
import  java . util . HashMap ;
import  java . util . Map ;

public   class   BookInventory   implements   Serializable {
     private   Map < String ,   Integer >  inventoryMap  =   new   HashMap < String ,   Integer > ();
     public   void  add ( String  bookId ){
         if ( inventoryMap . containsKey ( bookId )){
            inventoryMap . put ( bookId ,   (( int ) inventoryMap . get ( bookId )) + 1 );
         }   else   {
            inventoryMap . put ( bookId ,   new   Integer ( 1 ));
         }
     }
     public   Map < String ,   Integer >  getInventoryMap ()   {
         return  inventoryMap ;
     }
    @ Override
     public   String  toString ()   {
         return   "BookInventory [inventoryMap="   +  inventoryMap  +   "]" ;
     }
    
    
}

BookStoreCXFWS/src/org/mississippi/book/store/bo/BookOrder.java

BookStoreCXFWS/src/org/mississippi/book/store/bo/BookOrder.java

package  org . mississippi . book . store . bo ;

import  java . io . Serializable ;
import  java . util . Date ;
import  java . util . HashMap ;
import  java . util . Map ;
import  java . util . Map . Entry ;

public   class   BookOrder   implements   Serializable {
     private   Map < String ,   Integer >  books ;
     private   Order  order ;
     private   String  customerId ;
     private   Date  shipDate ;
     private   Date  eta ;
    
     public   Date  getShipDate ()   {
         return  shipDate ;
     }
    
     public   BookOrder ()   {
         super ();
     }

     public   BookOrder ( Order  order ,   String  customerId )   {
         super ();
         this . order  =  order ;
         this . customerId  =  customerId ;
     }
     public   void  setShipDate ( Date  shipDate )   {
         this . shipDate  =  shipDate ;
     }
     public   Date  getEta ()   {
         return  eta ;
     }
     public   void  setEta ( Date  eta )   {
         this . eta  =  eta ;
     }
    
     public   Map < String ,   Integer >  getBooks ()   {
         return  books ;
     }
     public   void  setBooks ( Map < String ,   Integer >  books )   {
         this . books  =  books ;
     }
     public   Order  getOrder ()   {
         return  order ;
     }
     public   void  setOrder ( Order  order )   {
         this . order  =  order ;
     }
     public   String  getCustomerId ()   {
         return  customerId ;
     }
     public   void  setCustomerId ( String  customerId )   {
         this . customerId  =  customerId ;
     }
    
     public   void  add ( String  bookId ,   int  qty ){
         if ( books == null )
            books  =   new   HashMap < String ,   Integer > ();
        
         if ( ! books . containsKey ( bookId )){
            books . put ( bookId ,  qty );
         }   else   {
             for ( Entry < String ,   Integer >  entry :  books . entrySet ()){
                 if ( entry . getKey (). equals ( bookId ))
                 {
                     int  value  =  books . get ( entry . getKey ());
                    value  +=  qty ;
                    books . put ( entry . getKey (),  value );
                 }
             }
         }
     }
    @ Override
     public   int  hashCode ()   {
         final   int  prime  =   31 ;
         int  result  =   1 ;
        result  =  prime  *  result
                 +   (( customerId  ==   null )   ?   0   :  customerId . hashCode ());
        result  =  prime  *  result  +   (( order  ==   null )   ?   0   :  order . hashCode ());
         return  result ;
     }
    @ Override
     public   boolean  equals ( Object  obj )   {
         if   ( this   ==  obj )
             return   true ;
         if   ( obj  ==   null )
             return   false ;
         if   ( getClass ()   !=  obj . getClass ())
             return   false ;
         BookOrder  other  =   ( BookOrder )  obj ;
         if   ( customerId  ==   null )   {
             if   ( other . customerId  !=   null )
                 return   false ;
         }   else   if   ( ! customerId . equals ( other . customerId ))
             return   false ;
         if   ( order  ==   null )   {
             if   ( other . order  !=   null )
                 return   false ;
         }   else   if   ( ! order . equals ( other . order ))
             return   false ;
         return   true ;
     }
    @ Override
     public   String  toString ()   {
         return   "BookOrder [books="   +  books  +   ", order="   +  order
                 +   ", customerId="   +  customerId  +   ", shipDate="   +  shipDate
                 +   ", eta="   +  eta  +   "]" ;
     }
    
    

}

BookStoreCXFWS/src/org/mississippi/book/store/bo/CreditCard.java

BookStoreCXFWS/src/org/mississippi/book/store/bo/CreditCard.java

package  org . mississippi . book . store . bo ;

import  java . io . Serializable ;

public   class   CreditCard   implements   Serializable {
     public   String  getOrderId ()   {
         return  orderId ;
     }
     public   void  setOrderId ( String  orderId )   {
         this . orderId  =  orderId ;
     }
     private   String  orderId ;
     private   String  number ;
     private   String  pin ;
     private   String  name ;
     private   String  type ;
     private   String  expDate ;
    
    
     public   CreditCard ()   {
         super ();
     }
     public   CreditCard ( String  number ,   String  pin ,   String  name ,
             String  type ,   String  expDate )   {
         super ();
         this . number  =  number ;
         this . pin  =  pin ;
         this . name  =  name ;
         this . type  =  type ;
         this . expDate  =  expDate ;
     }
     public   String  getNumber ()   {
         return  number ;
     }
     public   void  setNumber ( String  number )   {
         this . number  =  number ;
     }
     public   String  getPin ()   {
         return  pin ;
     }
     public   void  setPin ( String  pin )   {
         this . pin  =  pin ;
     }
     public   String  getName ()   {
         return  name ;
     }
     public   void  setName ( String  name )   {
         this . name  =  name ;
     }
     public   String  getType ()   {
         return  type ;
     }
     public   void  setType ( String  type )   {
         this . type  =  type ;
     }
     public   String  getExpDate ()   {
         return  expDate ;
     }
     public   void  setExpDate ( String  expDate )   {
         this . expDate  =  expDate ;
     }
    @ Override
     public   String  toString ()   {
         return   "CreditCard [number="   +  number  +   ", pin="   +  pin  +   ", name="
                 +  name  +   ", type="   +  type  +   ", expDate="   +  expDate  +   "]" ;
     }    
}

BookStoreCXFWS/src/org/mississippi/book/store/bo/Order.java

BookStoreCXFWS/src/org/mississippi/book/store/bo/Order.java

package  org . mississippi . book . store . bo ;

import  java . io . Serializable ;
import  java . util . Date ;

public   class   Order   implements   Serializable {
     private   String  id ;
     private   Date  date ;
     private   String  status ;
    
     public   void  setId ( int  id2 ){
         this . id  =   String . valueOf ( id2 );
     }
    
     public   void  setId ( String  id ){
         this . id  =  id ;
     }
    
    
     public   Order ()   {
         super ();
     }


     public   Order ( Date  date ,   String  status )   {
         super ();
         this . date  =  date ;
         this . status  =  status ;
     }
    @ Override
     public   int  hashCode ()   {
         final   int  prime  =   31 ;
         int  result  =   1 ;
        result  =  prime  *  result  +   (( id  ==   null )   ?   0   :  id . hashCode ());
         return  result ;
     }
    @ Override
     public   boolean  equals ( Object  obj )   {
         if   ( this   ==  obj )
             return   true ;
         if   ( obj  ==   null )
             return   false ;
         if   ( getClass ()   !=  obj . getClass ())
             return   false ;
         Order  other  =   ( Order )  obj ;
         if   ( id  ==   null )   {
             if   ( other . id  !=   null )
                 return   false ;
         }   else   if   ( ! id . equals ( other . id ))
             return   false ;
         return   true ;
     }
     public   String  getStatus ()   {
         return  status ;
     }
     public   void  setStatus ( String  status )   {
         this . status  =  status ;
     }
     public   String  getId ()   {
         return  id ;
     }
     public   Date  getDate ()   {
         return  date ;
     }
     public   void  setDate ( Date  date )   {
         this . date  =  date ;
     }
    @ Override
     public   String  toString ()   {
         return   "Order [id="   +  id  +   ", date="   +  date  +   ", status="   +  status
                 +   "]" ;
     }
}

BookStoreCXFWS/src/org/mississippi/book/store/bo/Partner.java

BookStoreCXFWS/src/org/mississippi/book/store/bo/Partner.java

package  org . mississippi . book . store . bo ;

import  java . io . Serializable ;

public   class   Partner   implements   Serializable {
     private   String  id ;
     private   String  name ;
     public   String  getId ()   {
         return  id ;
     }
     public   void  setId ( String  id )   {
         this . id  =  id ;
     }
     public   String  getName ()   {
         return  name ;
     }
     public   void  setName ( String  name )   {
         this . name  =  name ;
     }
    @ Override
     public   String  toString ()   {
         return   "Partner [id="   +  id  +   ", name="   +  name  +   "]" ;
     }
    @ Override
     public   int  hashCode ()   {
         final   int  prime  =   31 ;
         int  result  =   1 ;
        result  =  prime  *  result  +   (( id  ==   null )   ?   0   :  id . hashCode ());
         return  result ;
     }
    @ Override
     public   boolean  equals ( Object  obj )   {
         if   ( this   ==  obj )
             return   true ;
         if   ( obj  ==   null )
             return   false ;
         if   ( getClass ()   !=  obj . getClass ())
             return   false ;
         Partner  other  =   ( Partner )  obj ;
         if   ( id  ==   null )   {
             if   ( other . id  !=   null )
                 return   false ;
         }   else   if   ( ! id . equals ( other . id ))
             return   false ;
         return   true ;
     }
    
    
    
}

BookStoreCXFWS/src/org/mississippi/book/store/bo/Review.java

BookStoreCXFWS/src/org/mississippi/book/store/bo/Review.java

package  org . mississippi . book . store . bo ;

import  java . io . Serializable ;
import  java . util . Date ;

public   class   Review   implements   Serializable {
     private   String  id ;
     private   String  bookId ;
     private   String  comments ;
     private   String  author ;
     private   Date  given ;
     public   String  getId ()   {
         return  id ;
     }
     public   void  setId ( String  id )   {
         this . id  =  id ;
     }
     public   String  getBookId ()   {
         return  bookId ;
     }
     public   void  setBookId ( String  bookId )   {
         this . bookId  =  bookId ;
     }
     public   String  getComments ()   {
         return  comments ;
     }
     public   void  setComments ( String  comments )   {
         this . comments  =  comments ;
     }
     public   String  getAuthor ()   {
         return  author ;
     }
     public   void  setAuthor ( String  author )   {
         this . author  =  author ;
     }
     public   Date  getGiven ()   {
         return  given ;
     }
     public   void  setGiven ( Date  given )   {
         this . given  =  given ;
     }
    @ Override
     public   String  toString ()   {
         return   "Review [id="   +  id  +   ", bookId="   +  bookId  +   ", comments="
                 +  comments  +   ", author="   +  author  +   "]" ;
     }
    @ Override
     public   int  hashCode ()   {
         final   int  prime  =   31 ;
         int  result  =   1 ;
        result  =  prime  *  result  +   (( bookId  ==   null )   ?   0   :  bookId . hashCode ());
        result  =  prime  *  result  +   (( id  ==   null )   ?   0   :  id . hashCode ());
         return  result ;
     }
    @ Override
     public   boolean  equals ( Object  obj )   {
         if   ( this   ==  obj )
             return   true ;
         if   ( obj  ==   null )
             return   false ;
         if   ( getClass ()   !=  obj . getClass ())
             return   false ;
         Review  other  =   ( Review )  obj ;
         if   ( bookId  ==   null )   {
             if   ( other . bookId  !=   null )
                 return   false ;
         }   else   if   ( ! bookId . equals ( other . bookId ))
             return   false ;
         if   ( id  ==   null )   {
             if   ( other . id  !=   null )
                 return   false ;
         }   else   if   ( ! id . equals ( other . id ))
             return   false ;
         return   true ;
     }
    
    

}

BookStoreCXFWS/src/org/mississippi/book/store/bo/Shipping.java

BookStoreCXFWS/src/org/mississippi/book/store/bo/Shipping.java

package  org . mississippi . book . store . bo ;

import  java . io . Serializable ;

public   class   Shipping   implements   Serializable {
     private   String  id ;   
     private   String  orderId ;
     private   Address  shippAddress ;
     private   String  method ;
     private   Address  pickup ;
        
     public   Shipping ()   {
         super ();
     }

     public   Shipping ( Address  shippAddress ,   String  method ,
             Address  pickup ,   String  orderId )   {
         super ();
         this . orderId  =  orderId ;
         this . shippAddress  =  shippAddress ;
         this . method  =  method ;
         this . pickup  =  pickup ;
     }
    
     public   Address  getPickup ()   {
         return  pickup ;
     }
     public   void  setPickup ( Address  pickup )   {
         this . pickup  =  pickup ;
     }
     public   String  getOrderId ()   {
         return  orderId ;
     }
     public   String  getId ()   {
         return  id ;
     }
     public   Address  getShippAddress ()   {
         return  shippAddress ;
     }
     public   void  setShippAddress ( Address  shippAddress )   {
         this . shippAddress  =  shippAddress ;
     }
     public   String  getMethod ()   {
         return  method ;
     }
     public   void  setMethod ( String  method )   {
         this . method  =  method ;
     }
    @ Override
     public   int  hashCode ()   {
         final   int  prime  =   31 ;
         int  result  =   1 ;
        result  =  prime  *  result  +   (( id  ==   null )   ?   0   :  id . hashCode ());
        result  =  prime  *  result  +   (( orderId  ==   null )   ?   0   :  orderId . hashCode ());
         return  result ;
     }
    @ Override
     public   boolean  equals ( Object  obj )   {
         if   ( this   ==  obj )
             return   true ;
         if   ( obj  ==   null )
             return   false ;
         if   ( getClass ()   !=  obj . getClass ())
             return   false ;
         Shipping  other  =   ( Shipping )  obj ;
         if   ( id  ==   null )   {
             if   ( other . id  !=   null )
                 return   false ;
         }   else   if   ( ! id . equals ( other . id ))
             return   false ;
         if   ( orderId  ==   null )   {
             if   ( other . orderId  !=   null )
                 return   false ;
         }   else   if   ( ! orderId . equals ( other . orderId ))
             return   false ;
         return   true ;
     }
    @ Override
     public   String  toString ()   {
         return   "Shipping [id="   +  id  +   ", orderId="   +  orderId
                 +   ", shippAddress="   +  shippAddress  +   ", method="   +  method
                 +   ", pickup="   +  pickup  +   "]" ;
     }

     public   void  setId ( int  id )   {
         this . id  =   String . valueOf ( id );        
     }
    
}

BookStoreCXFWS/src/org/mississippi/book/store/client/BookStoreClient.java

BookStoreCXFWS/src/org/mississippi/book/store/client/BookStoreClient.java

package  org . mississippi . book . store . client ;

import  java . util . ArrayList ;
import  java . util . Calendar ;
import  java . util . Date ;
import  java . util . List ;

import  org . apache . cxf . interceptor . LoggingInInterceptor ;
import  org . apache . cxf . interceptor . LoggingOutInterceptor ;
import  org . apache . cxf . jaxws . JaxWsProxyFactoryBean ;
import  org . mississippi . book . store . bo . Address ;
import  org . mississippi . book . store . bo . Book ;
import  org . mississippi . book . store . bo . BookOrder ;
import  org . mississippi . book . store . bo . CreditCard ;
import  org . mississippi . book . store . bo . Order ;
import  org . mississippi . book . store . bo . Shipping ;
import  org . mississippi . book . store . services . BookStore ;

public   final   class   BookStoreClient   {
     public   static   void  main ( String  args [])   throws   Exception   {

         // The following approach is called simple frontend.
         // The simple frontend provides simple components or Java classes that
         // use reflection to build and publish web services.
         // The simple frontend uses factory components to create a service and
         // the client. It does so by using Java reflection API.
         // Here we get the implementation of the BookStore API using the Java
         // reflection API for implementing the Client.
         JaxWsProxyFactoryBean  factory  =   new   JaxWsProxyFactoryBean ();

         // Interceptors are components that intercept the messages exchanged or
         // passed between web service clients and server components.
         // In CXF, this is implemented through the concept of Interceptor
         // chains.
         // The concept of Interceptor chaining is the core functionality of CXF
         // runtime.
         // the following are Interceptors to log in and out messages.
        factory . getInInterceptors (). add ( new   LoggingInInterceptor ());
        factory . getOutInterceptors (). add ( new   LoggingOutInterceptor ());

         // the following line is to bind for regular XML format instead of SOAP
         // format
        factory . setBindingId ( "http://cxf.apache.org/bindings/xformat" );

         // Associate the intended Service Endpoint Interface
         // Java Reflection will be used to generate the implementation.
        factory . setServiceClass ( BookStore . class );
        factory . setAddress ( "http://localhost:8080/CXFWS/services/cxfBookStoreSvc" );
         BookStore  bookStoreSvc  =   ( BookStore )  factory . create ();

         // Now, start sending requests and accepting responses
         System . out . println ( "-- SEARCH BOOK...." );
         Book  book  =  bookStoreSvc
                 . searchBook (
                         "A Short Textbook of Psychiatry 7th Edition (English) 7th Edition (Paperback)" ,
                         "Niraj Ahuja" );

         if ( book != null ){
             System . out . println ( "\t SUCCESS: "   +  book . toString ());
             System . out . println ( "\t BUY BOOK..." );
             // Creating a book order to be processed
             Calendar  calendar  =   Calendar . getInstance ();
             Order  order  =   new   Order ( calendar . getTime (),   "in-progress" );
            
             BookOrder  bookOrder  =   new   BookOrder ( order ,   "xion" );
            bookOrder . add ( book . getId (),   2 );
            
             // setting the shipping info
            calendar . add ( Calendar . DATE ,   5 );
            bookOrder . setShipDate ( calendar . getTime ());

             // setting the estimate delivery time
            calendar . add ( Calendar . DATE ,   20 );
            bookOrder . setEta ( calendar . getTime ());
            
             List < BookOrder >  bookOrders  =   new   ArrayList < BookOrder > ();
            bookOrders . add ( bookOrder );
            
             //Placing the order
             System . out . println ( "\t\t Placing the order...." );
            bookOrders  =  bookStoreSvc . buyOrder ( bookOrders );
            
             System . out . println ( "\t\t SUCCESS: INCLUDING Payment Information" );
             //Including the payment information
             CreditCard  creditCard  =   new   CreditCard ( "123412342345" ,   "234" ,   "XION ION" ,   "VISA" ,   "12/19" );
             for ( BookOrder  bookOrder2 :  bookOrders ){
                creditCard . setOrderId ( bookOrder2 . getOrder (). getId ());
                 String  code  =  bookStoreSvc . creditCardPayment ( creditCard );
                 if ( code . equalsIgnoreCase ( "success" )){
                     System . out . println ( "\t\t SUCCESS: INCLUDING Shipping Information."    +  bookOrder2 );
                     //Include Shipping information 
                     Shipping  shipping  =   new   Shipping ( new   Address ( "9, Northcote Ave" ,
                             "St Kilda East" ,   "VIC" ,   "AUS" ,   "3183" ),   "Delivery" ,
                             new   Address ( "9, Northcote Ave" ,   "St Kilda East" ,   "VIC" ,   "AUS" ,
                                     "3183" ),  bookOrder2 . getOrder (). getId ());
                    bookStoreSvc . shipOrder ( shipping );
                 }   else   {
                     System . err . println ( "\t\t FAILURE: The credit card payment failed."   +  bookOrder2 );
                 }
             }
            
             System . out . println ( "\t GETTING THE ORDER STATUS" );
             // Get Order Status Information
             List < Order >  orders   =  bookStoreSvc . inProgressOrders ();
             for ( Order  order2 :  orders ){
                 System . out . println ( "\t\t SUCCESS: Order: "   +  order2 . toString ());
                 System . out . println ( "\t\t Cancelling the Order: "   +  order2 . toString ());           
                 //Cancel Book Order
                 String  code  =  bookStoreSvc . cancelOrder ( order2 . getId ());
                 if ( code . equalsIgnoreCase ( "success" )){
                     System . out . println ( "\t\t\t SUCCESS: Order cancelled. "   +  order2 );
                 }   else   System . err . println ( "\t\t\t FAILURE: "   +  order2 );
             }
         }   else
             System . err . println ( "\t FAILURE: Book not found. "   +  book );
        
         System . exit ( 0 );

     }

}

BookStoreCXFWS/src/org/mississippi/book/store/dao/BookDao.java

BookStoreCXFWS/src/org/mississippi/book/store/dao/BookDao.java

package  org . mississippi . book . store . dao ;

import  java . util . ArrayList ;
import  java . util . List ;

import  org . mississippi . book . store . bo . Book ;
import  org . mississippi . book . store . exception . BookStoreException ;

public   class   BookDao   {
    
     private   List < Book >  books  =   new   ArrayList < Book > ();
    
     public   BookDao (){
        books . add ( new   Book ( "100" ,   "A Short Textbook of Psychiatry 7th Edition (English) 7th Edition (Paperback)" ,   "Niraj Ahuja" ));
        books . add ( new   Book ( "101" ,   "SRB'S MANUAL OF SURGERY (English) 4th Edition (Paperback)" ,   "BHAT" ));
        books . add ( new   Book ( "102" ,   "Manipal Manual of Surgery (English) 4th Edition (Paperback)" ,   "Anitha Shenoy, K. Rajgopal " ));
        books . add ( new   Book ( "103" ,   "The Washington Manual of Critical Care (English) 2nd Edition (Paperback)" ,   "Marin Kollef" ));
        books . add ( new   Book ( "104" ,   "COMMON MNEMONICS FOR MBBS FINAL YEAR (English) 1st Edition (Paperback)" ,   "Ankit Gupta" ));
        books . add ( new   Book ( "105" ,   "Handbook of Local Anesthesia 6/e (English) 6th Edition (Paperback)" ,   "American Psychiatric " ));
        books . add ( new   Book ( "106" ,   "Parson's Diseases of the Eye, 21ED (English) 21st Edition (Paperback)" ,   "Radhika Tandon" ));
     }
    
     public   Book  findOne ( String  title ,   String  author )   throws   BookStoreException {
         for ( Book  book :  books )
             if ( book . getTitle (). equals ( title )   &&  book . getAuthor (). equals ( author ))
                 return  book ;
        
         throw   new   BookStoreException ( "Book with title(" + title + ") and author(" + author + ") not found!" );
     }
    
     public   void  save ( Book  book )   throws   BookStoreException {
         if ( ! books . contains ( book ))
            books . add ( book );
         else
             throw   new   BookStoreException ( "Book already exists!" );
     }    
}

BookStoreCXFWS/src/org/mississippi/book/store/dao/BookInventoryDao.java

BookStoreCXFWS/src/org/mississippi/book/store/dao/BookInventoryDao.java

package  org . mississippi . book . store . dao ;

import  java . util . HashMap ;
import  java . util . Map ;

import  org . mississippi . book . store . bo . BookInventory ;

public   class   BookInventoryDao   {
     private   Map < String ,   Integer >  inventory  =   new   HashMap < String ,   Integer > ();

     public   BookInventoryDao ()   {
        inventory . put ( "100" ,   1 );
        inventory . put ( "101" ,   1 );
        inventory . put ( "102" ,   1 );
        inventory . put ( "103" ,   1 );
        inventory . put ( "104" ,   1 );
        inventory . put ( "105" ,   1 );
        inventory . put ( "106" ,   1 );         
     }
    
     public   void  update ( BookInventory  bookInventory ){
         Map < String ,   Integer >  pInventory   =  bookInventory . getInventoryMap ();
         for ( String  key :  pInventory . keySet ()){
             if ( inventory . containsKey ( key )){
                inventory . put ( key ,  inventory . get ( key ) + pInventory . get ( key ));
             }   else   {
                inventory . put ( key ,  pInventory . get ( key ));
             }
         }
     }
}

BookStoreCXFWS/src/org/mississippi/book/store/dao/BookOrderDao.java

BookStoreCXFWS/src/org/mississippi/book/store/dao/BookOrderDao.java

package  org . mississippi . book . store . dao ;

import  java . util . ArrayList ;
import  java . util . List ;

import  org . mississippi . book . store . bo . BookOrder ;
import  org . mississippi . book . store . exception . BookStoreException ;

public   class   BookOrderDao   {  
     private   List < BookOrder >  bookOrders  =   new   ArrayList < BookOrder > ();

     public   void  save ( BookOrder  bookOrder )   throws   BookStoreException {
         if ( ! bookOrders . contains ( bookOrder ))   {
            bookOrders . add ( bookOrder );
         }
         else   {
             for ( BookOrder  dbBookOrder :  bookOrders ){
                 if ( dbBookOrder . equals ( bookOrder ))
                    dbBookOrder . setBooks ( bookOrder . getBooks ());              
             }
         }
     }
}

BookStoreCXFWS/src/org/mississippi/book/store/dao/OrderDao.java

BookStoreCXFWS/src/org/mississippi/book/store/dao/OrderDao.java

package  org . mississippi . book . store . dao ;

import  java . util . ArrayList ;
import  java . util . List ;

import  org . mississippi . book . store . bo . Order ;
import  org . mississippi . book . store . exception . BookStoreException ;

public   class   OrderDao   {
     private   List < Order >  orders  =   new   ArrayList < Order > ();
    
     public   String  save ( Order  order )   throws   BookStoreException {
         int  id  =  orders . size () + 101 ;
        order . setId ( id );
        orders . add ( order );
         return  order . getId ();
     }
    
     public   Order  findOne ( String  orderId )   throws   BookStoreException {
         for ( Order  order :  orders ){
             if ( order . getId (). equals ( orderId ))
                 return  order ;
         }
        
         throw   new   BookStoreException ( "Order (" + orderId + ") not found!" );
     }
    
     public   boolean  update ( Order  order )   throws   BookStoreException {
         for ( Order  dbOrder :  orders ){
             if ( order . equals ( dbOrder ))
             {
                dbOrder . setDate ( order . getDate ());
                dbOrder . setStatus ( order . getStatus ());
                 return   true ;
             }
         }
        
         throw   new   BookStoreException ( "Order (" + order + ") not found!" );
     }
    
     public   List < Order >  getAll ( String  status ){
         List < Order >  statusOrders  =   new   ArrayList < Order > ();
         for ( Order  order :  orders ){
             if ( order . getStatus (). equalsIgnoreCase ( status ))
                statusOrders . add ( order );
         }
        
         return  statusOrders ;
     }
}    

BookStoreCXFWS/src/org/mississippi/book/store/dao/PartnerDao.java

BookStoreCXFWS/src/org/mississippi/book/store/dao/PartnerDao.java

package  org . mississippi . book . store . dao ;

import  java . util . ArrayList ;
import  java . util . List ;

import  org . mississippi . book . store . bo . Partner ;
import  org . mississippi . book . store . exception . BookStoreException ;

public   class   PartnerDao   {
     private   List < Partner >  partners  =   new   ArrayList < Partner > ();
    
     public   void  save ( Partner  partner )   throws   BookStoreException {
         if ( ! partners . contains ( partner ))
            partners . add ( partner );
         else   throw   new   BookStoreException ( "Partner already registered." );
     }
}

BookStoreCXFWS/src/org/mississippi/book/store/dao/PaymentDao.java

BookStoreCXFWS/src/org/mississippi/book/store/dao/PaymentDao.java

package  org . mississippi . book . store . dao ;

import  java . util . ArrayList ;
import  java . util . List ;

import  org . mississippi . book . store . bo . CreditCard ;
import  org . mississippi . book . store . exception . BookStoreException ;

public   class   PaymentDao   {
     private   List < CreditCard >  creditCards  =   new   ArrayList < CreditCard > ();
     public   void  save ( CreditCard  creditCard )   throws   BookStoreException {
        creditCards . add ( creditCard );         
     }
}

BookStoreCXFWS/src/org/mississippi/book/store/dao/ReviewDao.java

BookStoreCXFWS/src/org/mississippi/book/store/dao/ReviewDao.java

package  org . mississippi . book . store . dao ;

import  java . util . ArrayList ;
import  java . util . List ;

import  org . mississippi . book . store . bo . Review ;
import  org . mississippi . book . store . exception . BookStoreException ;

public   class   ReviewDao   {
     private   List < Review >  reviews  =   new   ArrayList < Review > ();
     public   void  save ( Review  review )   throws   BookStoreException {
         if ( ! reviews . contains ( review )) reviews . add ( review );
         else   throw   new   BookStoreException ( "Review already exists!" );
     }
    
     public   List < Review >  findAll ( String  bookId ){
         List < Review >  bookReviews  =   new   ArrayList < Review > ();
         for ( Review  review :  reviews ){
             if ( review . getBookId (). equals ( bookId ))
                bookReviews . add ( review );
         }
        
         return  bookReviews ;
     }
}    

BookStoreCXFWS/src/org/mississippi/book/store/dao/ShippingDao.java

BookStoreCXFWS/src/org/mississippi/book/store/dao/ShippingDao.java

package  org . mississippi . book . store . dao ;

import  java . util . ArrayList ;
import  java . util . List ;

import  org . mississippi . book . store . bo . Shipping ;
import  org . mississippi . book . store . exception . BookStoreException ;

public   class   ShippingDao   {
     private   List < Shipping >  shippings  =   new   ArrayList < Shipping > ();
     public   String  save ( Shipping  shipping )   throws   BookStoreException {         
        shipping . setId ( shippings . size () + 101 );
        shippings . add ( shipping );
         return  shipping . getId ();
     }
    
     public   List < Shipping >  findAll ( String  orderId ){
         List < Shipping >  orderShippings  =   new   ArrayList < Shipping > ();
         for ( Shipping  shipping :  shippings ){
             if ( shipping . getOrderId (). equals ( orderId ))
                orderShippings . add ( shipping );
         }
         return  orderShippings ;       
     }
}

BookStoreCXFWS/src/org/mississippi/book/store/exception/BookStoreException.java

BookStoreCXFWS/src/org/mississippi/book/store/exception/BookStoreException.java

package  org . mississippi . book . store . exception ;

public   class   BookStoreException   extends   Exception {   
     private   static   final   long  serialVersionUID  =   5979229666870171726L ;

     public   BookStoreException ( String  message )   {
         super ( message );
     }
}

BookStoreCXFWS/src/org/mississippi/book/store/services/BookStore.java

BookStoreCXFWS/src/org/mississippi/book/store/services/BookStore.java

package  org . mississippi . book . store . services ;

import  java . util . List ;

import  javax . jws . WebParam ;
import  javax . jws . WebResult ;
import  javax . jws . WebService ;

import  org . mississippi . book . store . bo . Address ;
import  org . mississippi . book . store . bo . Book ;
import  org . mississippi . book . store . bo . BookInventory ;
import  org . mississippi . book . store . bo . BookOrder ;
import  org . mississippi . book . store . bo . CreditCard ;
import  org . mississippi . book . store . bo . Order ;
import  org . mississippi . book . store . bo . Partner ;
import  org . mississippi . book . store . bo . Review ;
import  org . mississippi . book . store . bo . Shipping ;
import  org . mississippi . book . store . exception . BookStoreException ;

@ WebService
public   interface   BookStore   {
    @ WebResult ( targetNamespace = "" ,  name = "book" )
     public   Book  searchBook ( @ WebParam ( name = "title" )   String  title ,  @ WebParam ( name = "author" )   String  author )   throws   BookStoreException ;
    
    @ WebResult ( targetNamespace = "" ,  name = "bookOrders" )
     public   List < BookOrder >  buyOrder ( @ WebParam ( name = "bookOrders" )   List < BookOrder >  bookOrders )   throws   BookStoreException ;
    
    @ WebResult ( targetNamespace = "" ,  name = "code" )
     public   String  creditCardPayment ( @ WebParam ( name = "card" )   CreditCard  creditCard )   throws   BookStoreException ;
    
    @ WebResult ( targetNamespace = "" ,  name = "shipId" )
     public   String  shipOrder ( @ WebParam ( name = "shipping" )   Shipping  shipping )   throws   BookStoreException ;
    
    @ WebResult ( targetNamespace = "" ,  name = "orders" )
     public   List < Order >  inProgressOrders ();
    
    @ WebResult ( targetNamespace = "" ,  name = "code" )
     public   String  cancelOrder ( @ WebParam ( name = "orderId" )   String  orderId )   throws   BookStoreException ;
    
    @ WebResult ( targetNamespace = "" ,  name = "code" )
     public   String  registerPartner ( @ WebParam ( name = "partner" )   Partner  partner )   throws   BookStoreException ;
    
    @ WebResult ( targetNamespace = "" ,  name = "code" )
     public   String  acceptReviews ( @ WebParam ( name = "review" )   Review  review )   throws   BookStoreException ;
    
    @ WebResult ( targetNamespace = "" ,  name = "code" )
     public   String  updateInventory ( @ WebParam ( name = "inventory" )   BookInventory  bookInventory );
    
    @ WebResult ( targetNamespace = "" ,  name = "pickUpLocations" )
     public   List < Address >  pickupLocations ( @ WebParam ( name = "orderId" )   String  orderId );
}

BookStoreCXFWS/src/org/mississippi/book/store/services/BookStoreImpl.java

BookStoreCXFWS/src/org/mississippi/book/store/services/BookStoreImpl.java

package  org . mississippi . book . store . services ;

import  java . util . ArrayList ;
import  java . util . List ;

import  javax . jws . WebMethod ;
import  javax . jws . WebService ;

import  org . mississippi . book . store . bo . Address ;
import  org . mississippi . book . store . bo . Book ;
import  org . mississippi . book . store . bo . BookInventory ;
import  org . mississippi . book . store . bo . BookOrder ;
import  org . mississippi . book . store . bo . CreditCard ;
import  org . mississippi . book . store . bo . Order ;
import  org . mississippi . book . store . bo . Partner ;
import  org . mississippi . book . store . bo . Review ;
import  org . mississippi . book . store . bo . Shipping ;
import  org . mississippi . book . store . dao . BookDao ;
import  org . mississippi . book . store . dao . BookInventoryDao ;
import  org . mississippi . book . store . dao . BookOrderDao ;
import  org . mississippi . book . store . dao . OrderDao ;
import  org . mississippi . book . store . dao . PartnerDao ;
import  org . mississippi . book . store . dao . PaymentDao ;
import  org . mississippi . book . store . dao . ReviewDao ;
import  org . mississippi . book . store . dao . ShippingDao ;
import  org . mississippi . book . store . exception . BookStoreException ;

public   class   BookStoreImpl   implements   BookStore   {

     private   static   final   String  SUCCESS  =   "Success" ;
     private   static   final   String  FAILURE  =   "Failure" ;

     private   BookDao  bookDao  =   new   BookDao ();
     private   BookOrderDao  bookOrderDao  =   new   BookOrderDao ();
     private   PaymentDao  paymentDao  =   new   PaymentDao ();
     private   ShippingDao  shippingDao  =   new   ShippingDao ();
     private   OrderDao  orderDao  =   new   OrderDao ();
     private   PartnerDao  partnerDao  =   new   PartnerDao ();
     private   ReviewDao  reviewDao  =   new   ReviewDao ();
     private   BookInventoryDao  bookInventoryDao  =   new   BookInventoryDao ();

    
     public   BookStoreImpl ()   {
         super ();
     }

     public   Book  searchBook ( String  title ,   String  author )
             throws   BookStoreException   {
         System . out . println ( "Called searchBook - Title: "   +  title  +   ", author: "
                 +  author );
         return  bookDao . findOne ( title ,  author );
     }

     public   List < BookOrder >  buyOrder ( List < BookOrder >  bookOrders )
             throws   BookStoreException   {
         System . out . println ( "Called buyOrder - books: "   +  bookOrders );
         StringBuilder  errorMsg  =   new   StringBuilder ();
         for   ( BookOrder  bookOrder  :  bookOrders )   {
             try   {
                bookOrderDao . save ( bookOrder );
                 Order  order  =  bookOrder . getOrder ();
                order . setId ( orderDao . save ( order ));
                 return  bookOrders ;
             }   catch   ( BookStoreException  bse )   {
                errorMsg . append ( bse . getMessage ());
                errorMsg . append ( "\n" );
             }   catch   ( Exception  e )   {
                 throw   new   BookStoreException ( e . getMessage ());
             }
         }

         if   ( errorMsg . length ()   >   0 )
             throw   new   BookStoreException ( errorMsg . toString ());
         return  bookOrders ;
     }

     public   String  creditCardPayment ( CreditCard  creditCard )
             throws   BookStoreException   {
         System . out . println ( "Called creditCardPayment - creditCard: "
                 +  creditCard );
        paymentDao . save ( creditCard );
         return  SUCCESS ;
     }

     public   String  shipOrder ( Shipping  shipping )   throws   BookStoreException   {
         System . out . println ( "Called shipOrder - shipping: "   +  shipping );
         return  shippingDao . save ( shipping );       
     }

     public   List < Order >  inProgressOrders ()   {
         System . out . println ( "Called inProgressOrders" );
         return  orderDao . getAll ( "In-progress" );
     }

     public   String  cancelOrder ( String  orderId )   throws   BookStoreException   {
         System . out . println ( "Called cancelOrder - orderId: "   +  orderId );
         Order  order  =  orderDao . findOne ( orderId );
        order . setStatus ( "cancel" );
         return  orderDao . update ( order ) ?  SUCCESS :  FAILURE ;
     }

     public   String  registerPartner ( Partner  partner )   throws   BookStoreException   {
         System . out . println ( "Called registerPartner - partner: "   +  partner );
        partnerDao . save ( partner );
         return  SUCCESS ;
     }

     public   String  acceptReviews ( Review  review )   throws   BookStoreException   {
         System . out . println ( "Called acceptReviews - review: "   +  review );
        reviewDao . save ( review );
         return  SUCCESS ;
     }

     public   String  updateInventory ( BookInventory  bookInventory )   {
         System . out . println ( "Called updateInventory - bookInventory: "
                 +  bookInventory );
        bookInventoryDao . update ( bookInventory );
         return  SUCCESS ;
     }

     public   List < Address >  pickupLocations ( String  orderId )   {
         System . out . println ( "Called pickupLocations - orderId: "   +  orderId );
         List < Shipping >  orderShippings  =  shippingDao . findAll ( orderId );
         List < Address >  pickUpAddresses  =   new   ArrayList < Address > ();

         for   ( Shipping  shipping  :  orderShippings )   {
            pickUpAddresses . add ( shipping . getPickup ());
         }

         return  pickUpAddresses ;
     }

}

BookStoreCXFWS/src/org/mississippi/book/store/services/cxf.xml

BookStoreCXFWS/WebContent/META-INF/MANIFEST.MF

Manifest-Version: 1.0 Class-Path:

BookStoreCXFWS/WebContent/WEB-INF/lib/axis.jar

META-INF/MANIFEST.MF

Manifest-Version: 1.0 Ant-Version: Apache Ant 1.6.5 Created-By: 1.4.2_08-b03 (Sun Microsystems Inc.) Name: org/apache/axis Implementation-Title: Apache Axis Implementation-Version: 1.4 1855 April 22 2006 Implementation-Vendor: Apache Web Services

org/apache/axis/AxisEngine.class

                    package org.apache.axis;

                    public 
                    abstract 
                    synchronized 
                    class AxisEngine 
                    extends handlers.BasicHandler {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public 
                    static 
                    final String 
                    PROP_XML_DECL = sendXMLDeclaration;
    
                    public 
                    static 
                    final String 
                    PROP_DEBUG_LEVEL = debugLevel;
    
                    public 
                    static 
                    final String 
                    PROP_DEBUG_FILE = debugFile;
    
                    public 
                    static 
                    final String 
                    PROP_DOMULTIREFS = sendMultiRefs;
    
                    public 
                    static 
                    final String 
                    PROP_DISABLE_PRETTY_XML = disablePrettyXML;
    
                    public 
                    static 
                    final String 
                    PROP_ENABLE_NAMESPACE_PREFIX_OPTIMIZATION = enableNamespacePrefixOptimization;
    
                    public 
                    static 
                    final String 
                    PROP_PASSWORD = adminPassword;
    
                    public 
                    static 
                    final String 
                    PROP_SYNC_CONFIG = syncConfiguration;
    
                    public 
                    static 
                    final String 
                    PROP_SEND_XSI = sendXsiTypes;
    
                    public 
                    static 
                    final String 
                    PROP_ATTACHMENT_DIR = attachments.Directory;
    
                    public 
                    static 
                    final String 
                    PROP_ATTACHMENT_IMPLEMENTATION = attachments.implementation;
    
                    public 
                    static 
                    final String 
                    PROP_ATTACHMENT_CLEANUP = attachment.DirectoryCleanUp;
    
                    public 
                    static 
                    final String 
                    PROP_DEFAULT_CONFIG_CLASS = axis.engineConfigClass;
    
                    public 
                    static 
                    final String 
                    PROP_SOAP_VERSION = defaultSOAPVersion;
    
                    public 
                    static 
                    final String 
                    PROP_SOAP_ALLOWED_VERSION = singleSOAPVersion;
    
                    public 
                    static 
                    final String 
                    PROP_TWOD_ARRAY_ENCODING = enable2DArrayEncoding;
    
                    public 
                    static 
                    final String 
                    PROP_XML_ENCODING = axis.xmlEncoding;
    
                    public 
                    static 
                    final String 
                    PROP_XML_REUSE_SAX_PARSERS = axis.xml.reuseParsers;
    
                    public 
                    static 
                    final String 
                    PROP_BYTE_BUFFER_BACKING = axis.byteBuffer.backing;
    
                    public 
                    static 
                    final String 
                    PROP_BYTE_BUFFER_CACHE_INCREMENT = axis.byteBuffer.cacheIncrement;
    
                    public 
                    static 
                    final String 
                    PROP_BYTE_BUFFER_RESIDENT_MAX_SIZE = axis.byteBuffer.residentMaxSize;
    
                    public 
                    static 
                    final String 
                    PROP_BYTE_BUFFER_WORK_BUFFER_SIZE = axis.byteBuffer.workBufferSize;
    
                    public 
                    static 
                    final String 
                    PROP_EMIT_ALL_TYPES = emitAllTypesInWSDL;
    
                    public 
                    static 
                    final String 
                    PROP_DOTNET_SOAPENC_FIX = dotNetSoapEncFix;
    
                    public 
                    static 
                    final String 
                    PROP_BP10_COMPLIANCE = ws-i.bp10Compliance;
    
                    public 
                    static 
                    final String 
                    DEFAULT_ATTACHMENT_IMPL = org.apache.axis.attachments.AttachmentsImpl;
    
                    public 
                    static 
                    final String 
                    ENV_ATTACHMENT_DIR = axis.attachments.Directory;
    
                    public 
                    static 
                    final String 
                    ENV_SERVLET_REALPATH = servlet.realpath;
    
                    public 
                    static 
                    final String 
                    ENV_SERVLET_CONTEXT = servletContext;
    
                    private 
                    static 
                    final String 
                    DEFAULT_ADMIN_PASSWORD = admin;
    
                    protected EngineConfiguration 
                    config;
    
                    protected boolean 
                    _hasSafePassword;
    
                    protected boolean 
                    shouldSaveConfig;
    
                    protected 
                    transient utils.cache.ClassCache 
                    classCache;
    
                    private session.Session 
                    session;
    
                    private java.util.ArrayList 
                    actorURIs;
    
                    private 
                    static ThreadLocal 
                    currentMessageContext;
    
                    private 
                    static 
                    final String[] 
                    BOOLEAN_OPTIONS;
    
                    protected 
                    static void 
                    setCurrentMessageContext(MessageContext);
    
                    public 
                    static MessageContext 
                    getCurrentMessageContext();
    
                    public void AxisEngine(EngineConfiguration);
    
                    public void 
                    init();
    
                    public void 
                    cleanup();
    
                    public void 
                    saveConfiguration();
    
                    public EngineConfiguration 
                    getConfig();
    
                    public boolean 
                    hasSafePassword();
    
                    public void 
                    setAdminPassword(String);
    
                    public void 
                    setShouldSaveConfig(boolean);
    
                    public Handler 
                    getHandler(String) 
                    throws AxisFault;
    
                    public handlers.soap.SOAPService 
                    getService(String) 
                    throws AxisFault;
    
                    public Handler 
                    getTransport(String) 
                    throws AxisFault;
    
                    public encoding.TypeMappingRegistry 
                    getTypeMappingRegistry();
    
                    public Handler 
                    getGlobalRequest() 
                    throws ConfigurationException;
    
                    public Handler 
                    getGlobalResponse() 
                    throws ConfigurationException;
    
                    public java.util.ArrayList 
                    getActorURIs();
    
                    public void 
                    addActorURI(String);
    
                    public void 
                    removeActorURI(String);
    
                    public 
                    abstract AxisEngine 
                    getClientEngine();
    
                    public 
                    static void 
                    normaliseOptions(Handler);
    
                    public void 
                    refreshGlobalOptions() 
                    throws ConfigurationException;
    
                    public session.Session 
                    getApplicationSession();
    
                    public utils.cache.ClassCache 
                    getClassCache();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/AxisFault.class

                    package org.apache.axis;

                    public 
                    synchronized 
                    class AxisFault 
                    extends java.rmi.RemoteException {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    protected javax.xml.namespace.QName 
                    faultCode;
    
                    protected java.util.Vector 
                    faultSubCode;
    
                    protected String 
                    faultString;
    
                    protected String 
                    faultActor;
    
                    protected java.util.Vector 
                    faultDetails;
    
                    protected String 
                    faultNode;
    
                    protected java.util.ArrayList 
                    faultHeaders;
    
                    public 
                    static AxisFault 
                    makeFault(Exception);
    
                    public void AxisFault(String, String, String, org.w3c.dom.Element[]);
    
                    public void AxisFault(javax.xml.namespace.QName, String, String, org.w3c.dom.Element[]);
    
                    public void AxisFault(javax.xml.namespace.QName, javax.xml.namespace.QName[], String, String, String, org.w3c.dom.Element[]);
    
                    protected void AxisFault(Exception);
    
                    public void AxisFault(String);
    
                    public void AxisFault();
    
                    public void AxisFault(String, Throwable);
    
                    private void 
                    initFromException(Exception);
    
                    private void 
                    initFromSOAPFaultException(javax.xml.rpc.soap.SOAPFaultException);
    
                    private void 
                    initFaultDetails();
    
                    public void 
                    clearFaultDetails();
    
                    public void 
                    dump();
    
                    public String 
                    dumpToString();
    
                    public void 
                    setFaultCode(javax.xml.namespace.QName);
    
                    public void 
                    setFaultCode(String);
    
                    public void 
                    setFaultCodeAsString(String);
    
                    public javax.xml.namespace.QName 
                    getFaultCode();
    
                    public void 
                    addFaultSubCodeAsString(String);
    
                    protected void 
                    initFaultSubCodes();
    
                    public void 
                    addFaultSubCode(javax.xml.namespace.QName);
    
                    public void 
                    clearFaultSubCodes();
    
                    public javax.xml.namespace.QName[] 
                    getFaultSubCodes();
    
                    public void 
                    setFaultString(String);
    
                    public String 
                    getFaultString();
    
                    public void 
                    setFaultReason(String);
    
                    public String 
                    getFaultReason();
    
                    public void 
                    setFaultActor(String);
    
                    public String 
                    getFaultActor();
    
                    public String 
                    getFaultRole();
    
                    public void 
                    setFaultRole(String);
    
                    public String 
                    getFaultNode();
    
                    public void 
                    setFaultNode(String);
    
                    public void 
                    setFaultDetail(org.w3c.dom.Element[]);
    
                    public void 
                    setFaultDetailString(String);
    
                    public void 
                    addFaultDetailString(String);
    
                    public void 
                    addFaultDetail(org.w3c.dom.Element);
    
                    public void 
                    addFaultDetail(javax.xml.namespace.QName, String);
    
                    public org.w3c.dom.Element[] 
                    getFaultDetails();
    
                    public org.w3c.dom.Element 
                    lookupFaultDetail(javax.xml.namespace.QName);
    
                    public boolean 
                    removeFaultDetail(javax.xml.namespace.QName);
    
                    public void 
                    output(encoding.SerializationContext) 
                    throws Exception;
    
                    public String 
                    toString();
    
                    private String 
                    getPlainStackTrace();
    
                    public void 
                    printStackTrace(java.io.PrintStream);
    
                    public void 
                    printStackTrace(java.io.PrintWriter);
    
                    public void 
                    addHeader(message.SOAPHeaderElement);
    
                    public java.util.ArrayList 
                    getHeaders();
    
                    public void 
                    clearHeaders();
    
                    public void 
                    writeDetails(javax.xml.namespace.QName, encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    public void 
                    addHostnameIfNeeded();
    
                    public void 
                    addHostname(String);
    
                    public void 
                    removeHostname();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/AxisProperties$1.class

                    package org.apache.axis;

                    synchronized 
                    class AxisProperties$1 
                    implements java.security.PrivilegedAction {
    void AxisProperties$1(Class, Class[], Object[]);
    
                    public Object 
                    run();
}

                

org/apache/axis/AxisProperties$2.class

                    package org.apache.axis;

                    synchronized 
                    class AxisProperties$2 
                    implements java.security.PrivilegedAction {
    void AxisProperties$2(org.apache.commons.discovery.tools.SPInterface, org.apache.commons.discovery.tools.DefaultClassHolder);
    
                    public Object 
                    run();
}

                

org/apache/axis/AxisProperties.class

                    package org.apache.axis;

                    public 
                    synchronized 
                    class AxisProperties {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private 
                    static org.apache.commons.discovery.resource.names.DiscoverNamesInAlternateManagedProperties 
                    altNameDiscoverer;
    
                    private 
                    static org.apache.commons.discovery.resource.names.DiscoverMappedNames 
                    mappedNames;
    
                    private 
                    static org.apache.commons.discovery.resource.names.NameDiscoverers 
                    nameDiscoverer;
    
                    private 
                    static org.apache.commons.discovery.resource.ClassLoaders 
                    loaders;
    
                    public void AxisProperties();
    
                    public 
                    static void 
                    setClassOverrideProperty(Class, String);
    
                    public 
                    static void 
                    setClassDefault(Class, String);
    
                    public 
                    static void 
                    setClassDefaults(Class, String[]);
    
                    public 
                    static 
                    synchronized org.apache.commons.discovery.ResourceNameDiscover 
                    getNameDiscoverer();
    
                    public 
                    static org.apache.commons.discovery.ResourceClassIterator 
                    getResourceClassIterator(Class);
    
                    private 
                    static 
                    synchronized org.apache.commons.discovery.resource.ClassLoaders 
                    getClassLoaders();
    
                    private 
                    static 
                    synchronized org.apache.commons.discovery.resource.names.DiscoverMappedNames 
                    getMappedNames();
    
                    private 
                    static 
                    synchronized org.apache.commons.discovery.resource.names.DiscoverNamesInAlternateManagedProperties 
                    getAlternatePropertyNameDiscoverer();
    
                    public 
                    static Object 
                    newInstance(Class);
    
                    public 
                    static Object 
                    newInstance(Class, Class[], Object[]);
    
                    public 
                    static String 
                    getProperty(String);
    
                    public 
                    static String 
                    getProperty(String, String);
    
                    public 
                    static void 
                    setProperty(String, String);
    
                    public 
                    static void 
                    setProperty(String, String, boolean);
    
                    public 
                    static void 
                    setProperties(java.util.Map);
    
                    public 
                    static void 
                    setProperties(java.util.Map, boolean);
    
                    public 
                    static java.util.Enumeration 
                    propertyNames();
    
                    public 
                    static java.util.Properties 
                    getProperties();
    
                    public 
                    static Object 
                    newInstance(Class, Class);
    
                    private 
                    static Object 
                    newInstance(org.apache.commons.discovery.tools.SPInterface, org.apache.commons.discovery.tools.DefaultClassHolder);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/AxisServiceConfig.class

                    package org.apache.axis;

                    public 
                    abstract 
                    interface AxisServiceConfig {
    
                    public 
                    abstract String 
                    getAllowedMethods();
}

                

org/apache/axis/AxisServiceConfigImpl.class

                    package org.apache.axis;

                    public 
                    synchronized 
                    class AxisServiceConfigImpl 
                    implements AxisServiceConfig {
    
                    private String 
                    methods;
    
                    public void AxisServiceConfigImpl();
    
                    public void 
                    setAllowedMethods(String);
    
                    public String 
                    getAllowedMethods();
}

                

org/apache/axis/Chain.class

                    package org.apache.axis;

                    public 
                    abstract 
                    interface Chain 
                    extends Handler {
    
                    public 
                    abstract void 
                    addHandler(Handler);
    
                    public 
                    abstract boolean 
                    contains(Handler);
    
                    public 
                    abstract Handler[] 
                    getHandlers();
}

                

org/apache/axis/ConfigurationException.class

                    package org.apache.axis;

                    public 
                    synchronized 
                    class ConfigurationException 
                    extends java.io.IOException {
    
                    private Exception 
                    containedException;
    
                    private String 
                    stackTrace;
    
                    protected 
                    static boolean 
                    copyStackByDefault;
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void ConfigurationException(String);
    
                    public void ConfigurationException(Exception);
    
                    public String 
                    toString();
    
                    public void ConfigurationException(Exception, boolean);
    
                    private void 
                    logException(Exception);
    
                    public Exception 
                    getContainedException();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/Constants.class

                    package org.apache.axis;

                    public 
                    synchronized 
                    class Constants {
    
                    public 
                    static 
                    final String 
                    NS_PREFIX_SOAP_ENV = soapenv;
    
                    public 
                    static 
                    final String 
                    NS_PREFIX_SOAP_ENC = soapenc;
    
                    public 
                    static 
                    final String 
                    NS_PREFIX_SCHEMA_XSI = xsi;
    
                    public 
                    static 
                    final String 
                    NS_PREFIX_SCHEMA_XSD = xsd;
    
                    public 
                    static 
                    final String 
                    NS_PREFIX_WSDL = wsdl;
    
                    public 
                    static 
                    final String 
                    NS_PREFIX_WSDL_SOAP = wsdlsoap;
    
                    public 
                    static 
                    final String 
                    NS_PREFIX_XMLSOAP = apachesoap;
    
                    public 
                    static 
                    final String 
                    NS_PREFIX_XML = xml;
    
                    public 
                    static 
                    final String 
                    NS_PREFIX_XOP = xop;
    
                    public 
                    static 
                    final String 
                    NS_URI_AXIS = http://xml.apache.org/axis/;
    
                    public 
                    static 
                    final String 
                    NS_URI_XMLSOAP = http://xml.apache.org/xml-soap;
    
                    public 
                    static 
                    final String 
                    NS_URI_JAVA = http://xml.apache.org/axis/java;
    
                    public 
                    static 
                    final soap.SOAPConstants 
                    DEFAULT_SOAP_VERSION;
    
                    public 
                    static 
                    final String 
                    URI_SOAP11_ENV = http://schemas.xmlsoap.org/soap/envelope/;
    
                    public 
                    static 
                    final String 
                    URI_SOAP12_ENV = http://www.w3.org/2003/05/soap-envelope;
    
                    public 
                    static 
                    final String 
                    URI_DEFAULT_SOAP_ENV;
    
                    public 
                    static 
                    final String[] 
                    URIS_SOAP_ENV;
    
                    public 
                    static 
                    final String 
                    ENTERPRISE_LOG_CATEGORY = org.apache.axis.enterprise;
    
                    public 
                    static 
                    final String 
                    TIME_LOG_CATEGORY = org.apache.axis.TIME;
    
                    public 
                    static 
                    final String 
                    EXCEPTION_LOG_CATEGORY = org.apache.axis.EXCEPTIONS;
    
                    public 
                    static 
                    final String 
                    ANYCONTENT = _any;
    
                    public 
                    static 
                    final int 
                    HTTP_TXR_BUFFER_SIZE = 8192;
    
                    public 
                    static 
                    final String 
                    WSIBP11_COMPAT_PROPERTY = axis.ws-i.bp11.compatibility;
    
                    public 
                    static 
                    final String 
                    URI_LITERAL_ENC = ;
    
                    public 
                    static 
                    final String 
                    URI_SOAP11_ENC = http://schemas.xmlsoap.org/soap/encoding/;
    
                    public 
                    static 
                    final String 
                    URI_SOAP12_ENC = http://www.w3.org/2003/05/soap-encoding;
    
                    public 
                    static 
                    final String 
                    URI_SOAP12_NOENC = http://www.w3.org/2003/05/soap-envelope/encoding/none;
    
                    public 
                    static 
                    final String 
                    URI_DEFAULT_SOAP_ENC;
    
                    public 
                    static 
                    final String[] 
                    URIS_SOAP_ENC;
    
                    public 
                    static 
                    final String 
                    URI_SOAP11_NEXT_ACTOR = http://schemas.xmlsoap.org/soap/actor/next;
    
                    public 
                    static 
                    final String 
                    URI_SOAP12_NEXT_ROLE = http://www.w3.org/2003/05/soap-envelope/role/next;
    
                    public 
                    static 
                    final String 
                    URI_SOAP12_NEXT_ACTOR = http://www.w3.org/2003/05/soap-envelope/role/next;
    
                    public 
                    static 
                    final String 
                    URI_SOAP12_RPC = http://www.w3.org/2003/05/soap-rpc;
    
                    public 
                    static 
                    final String 
                    URI_SOAP12_NONE_ROLE = http://www.w3.org/2003/05/soap-envelope/role/none;
    
                    public 
                    static 
                    final String 
                    URI_SOAP12_ULTIMATE_ROLE = http://www.w3.org/2003/05/soap-envelope/role/ultimateReceiver;
    
                    public 
                    static 
                    final String 
                    URI_SOAP11_HTTP = http://schemas.xmlsoap.org/soap/http;
    
                    public 
                    static 
                    final String 
                    URI_SOAP12_HTTP = http://www.w3.org/2003/05/http;
    
                    public 
                    static 
                    final String 
                    NS_URI_XMLNS = http://www.w3.org/2000/xmlns/;
    
                    public 
                    static 
                    final String 
                    NS_URI_XML = http://www.w3.org/XML/1998/namespace;
    
                    public 
                    static 
                    final String 
                    URI_1999_SCHEMA_XSD = http://www.w3.org/1999/XMLSchema;
    
                    public 
                    static 
                    final String 
                    URI_2000_SCHEMA_XSD = http://www.w3.org/2000/10/XMLSchema;
    
                    public 
                    static 
                    final String 
                    URI_2001_SCHEMA_XSD = http://www.w3.org/2001/XMLSchema;
    
                    public 
                    static 
                    final String 
                    URI_DEFAULT_SCHEMA_XSD = http://www.w3.org/2001/XMLSchema;
    
                    public 
                    static 
                    final String[] 
                    URIS_SCHEMA_XSD;
    
                    public 
                    static 
                    final javax.xml.namespace.QName[] 
                    QNAMES_NIL;
    
                    public 
                    static 
                    final String 
                    URI_1999_SCHEMA_XSI = http://www.w3.org/1999/XMLSchema-instance;
    
                    public 
                    static 
                    final String 
                    URI_2000_SCHEMA_XSI = http://www.w3.org/2000/10/XMLSchema-instance;
    
                    public 
                    static 
                    final String 
                    URI_2001_SCHEMA_XSI = http://www.w3.org/2001/XMLSchema-instance;
    
                    public 
                    static 
                    final String 
                    URI_DEFAULT_SCHEMA_XSI = http://www.w3.org/2001/XMLSchema-instance;
    
                    public 
                    static 
                    final String[] 
                    URIS_SCHEMA_XSI;
    
                    public 
                    static 
                    final String 
                    NS_URI_WSDL11 = http://schemas.xmlsoap.org/wsdl/;
    
                    public 
                    static 
                    final String[] 
                    NS_URIS_WSDL;
    
                    public 
                    static 
                    final String 
                    URI_DIME_WSDL = http://schemas.xmlsoap.org/ws/2002/04/dime/wsdl/;
    
                    public 
                    static 
                    final String 
                    URI_DIME_CONTENT = http://schemas.xmlsoap.org/ws/2002/04/content-type/;
    
                    public 
                    static 
                    final String 
                    URI_DIME_REFERENCE = http://schemas.xmlsoap.org/ws/2002/04/reference/;
    
                    public 
                    static 
                    final String 
                    URI_DIME_CLOSED_LAYOUT = http://schemas.xmlsoap.org/ws/2002/04/dime/closed-layout;
    
                    public 
                    static 
                    final String 
                    URI_DIME_OPEN_LAYOUT = http://schemas.xmlsoap.org/ws/2002/04/dime/open-layout;
    
                    public 
                    static 
                    final String 
                    URI_XOP_INCLUDE = http://www.w3.org/2004/08/xop/include;
    
                    public 
                    static 
                    final String 
                    ELEM_XOP_INCLUDE = Include;
    
                    public 
                    static 
                    final String 
                    URI_WSDL11_SOAP = http://schemas.xmlsoap.org/wsdl/soap/;
    
                    public 
                    static 
                    final String 
                    URI_WSDL12_SOAP = http://schemas.xmlsoap.org/wsdl/soap12/;
    
                    public 
                    static 
                    final String[] 
                    NS_URIS_WSDL_SOAP;
    
                    public 
                    static 
                    final String 
                    AXIS_SAX = Axis SAX Mechanism;
    
                    public 
                    static 
                    final String 
                    ELEM_ENVELOPE = Envelope;
    
                    public 
                    static 
                    final String 
                    ELEM_HEADER = Header;
    
                    public 
                    static 
                    final String 
                    ELEM_BODY = Body;
    
                    public 
                    static 
                    final String 
                    ELEM_FAULT = Fault;
    
                    public 
                    static 
                    final String 
                    ELEM_NOTUNDERSTOOD = NotUnderstood;
    
                    public 
                    static 
                    final String 
                    ELEM_UPGRADE = Upgrade;
    
                    public 
                    static 
                    final String 
                    ELEM_SUPPORTEDENVELOPE = SupportedEnvelope;
    
                    public 
                    static 
                    final String 
                    ELEM_FAULT_CODE = faultcode;
    
                    public 
                    static 
                    final String 
                    ELEM_FAULT_STRING = faultstring;
    
                    public 
                    static 
                    final String 
                    ELEM_FAULT_DETAIL = detail;
    
                    public 
                    static 
                    final String 
                    ELEM_FAULT_ACTOR = faultactor;
    
                    public 
                    static 
                    final String 
                    ELEM_FAULT_CODE_SOAP12 = Code;
    
                    public 
                    static 
                    final String 
                    ELEM_FAULT_VALUE_SOAP12 = Value;
    
                    public 
                    static 
                    final String 
                    ELEM_FAULT_SUBCODE_SOAP12 = Subcode;
    
                    public 
                    static 
                    final String 
                    ELEM_FAULT_REASON_SOAP12 = Reason;
    
                    public 
                    static 
                    final String 
                    ELEM_FAULT_NODE_SOAP12 = Node;
    
                    public 
                    static 
                    final String 
                    ELEM_FAULT_ROLE_SOAP12 = Role;
    
                    public 
                    static 
                    final String 
                    ELEM_FAULT_DETAIL_SOAP12 = Detail;
    
                    public 
                    static 
                    final String 
                    ELEM_TEXT_SOAP12 = Text;
    
                    public 
                    static 
                    final String 
                    ATTR_MUST_UNDERSTAND = mustUnderstand;
    
                    public 
                    static 
                    final String 
                    ATTR_ENCODING_STYLE = encodingStyle;
    
                    public 
                    static 
                    final String 
                    ATTR_ACTOR = actor;
    
                    public 
                    static 
                    final String 
                    ATTR_ROLE = role;
    
                    public 
                    static 
                    final String 
                    ATTR_RELAY = relay;
    
                    public 
                    static 
                    final String 
                    ATTR_ROOT = root;
    
                    public 
                    static 
                    final String 
                    ATTR_ID = id;
    
                    public 
                    static 
                    final String 
                    ATTR_HREF = href;
    
                    public 
                    static 
                    final String 
                    ATTR_REF = ref;
    
                    public 
                    static 
                    final String 
                    ATTR_QNAME = qname;
    
                    public 
                    static 
                    final String 
                    ATTR_ARRAY_TYPE = arrayType;
    
                    public 
                    static 
                    final String 
                    ATTR_ITEM_TYPE = itemType;
    
                    public 
                    static 
                    final String 
                    ATTR_ARRAY_SIZE = arraySize;
    
                    public 
                    static 
                    final String 
                    ATTR_OFFSET = offset;
    
                    public 
                    static 
                    final String 
                    ATTR_POSITION = position;
    
                    public 
                    static 
                    final String 
                    ATTR_TYPE = type;
    
                    public 
                    static 
                    final String 
                    ATTR_HANDLERINFOCHAIN = handlerInfoChain;
    
                    public 
                    static 
                    final String 
                    FAULT_CLIENT = Client;
    
                    public 
                    static 
                    final String 
                    FAULT_SERVER_GENERAL = Server.generalException;
    
                    public 
                    static 
                    final String 
                    FAULT_SERVER_USER = Server.userException;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    FAULT_VERSIONMISMATCH;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    FAULT_MUSTUNDERSTAND;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    FAULT_SOAP12_MUSTUNDERSTAND;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    FAULT_SOAP12_VERSIONMISMATCH;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    FAULT_SOAP12_DATAENCODINGUNKNOWN;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    FAULT_SOAP12_SENDER;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    FAULT_SOAP12_RECEIVER;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    FAULT_SUBCODE_BADARGS;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    FAULT_SUBCODE_PROC_NOT_PRESENT;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_FAULTCODE;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_FAULTSTRING;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_FAULTACTOR;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_FAULTDETAILS;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_FAULTCODE_SOAP12;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_FAULTVALUE_SOAP12;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_FAULTSUBCODE_SOAP12;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_FAULTREASON_SOAP12;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_TEXT_SOAP12;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_FAULTNODE_SOAP12;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_FAULTROLE_SOAP12;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_FAULTDETAIL_SOAP12;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_NOTUNDERSTOOD;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_STRING;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_BOOLEAN;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_DOUBLE;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_FLOAT;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_INT;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_INTEGER;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_LONG;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_SHORT;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_BYTE;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_DECIMAL;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_BASE64;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_HEXBIN;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_ANYSIMPLETYPE;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_ANYTYPE;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_ANY;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_QNAME;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_DATETIME;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_DATE;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_TIME;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_TIMEINSTANT1999;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_TIMEINSTANT2000;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_NORMALIZEDSTRING;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_TOKEN;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_UNSIGNEDLONG;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_UNSIGNEDINT;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_UNSIGNEDSHORT;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_UNSIGNEDBYTE;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_POSITIVEINTEGER;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_NEGATIVEINTEGER;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_NONNEGATIVEINTEGER;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_NONPOSITIVEINTEGER;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_YEARMONTH;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_MONTHDAY;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_YEAR;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_MONTH;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_DAY;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_DURATION;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_NAME;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_NCNAME;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_NMTOKEN;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_NMTOKENS;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_NOTATION;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_ENTITY;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_ENTITIES;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_IDREF;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_IDREFS;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_ANYURI;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_LANGUAGE;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_ID;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_SCHEMA;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XML_LANG;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    SOAP_BASE64;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    SOAP_BASE64BINARY;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    SOAP_STRING;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    SOAP_BOOLEAN;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    SOAP_DOUBLE;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    SOAP_FLOAT;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    SOAP_INT;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    SOAP_LONG;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    SOAP_SHORT;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    SOAP_BYTE;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    SOAP_INTEGER;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    SOAP_DECIMAL;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    SOAP_ARRAY;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    SOAP_COMMON_ATTRS11;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    SOAP_COMMON_ATTRS12;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    SOAP_ARRAY_ATTRS11;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    SOAP_ARRAY_ATTRS12;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    SOAP_ARRAY12;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    SOAP_MAP;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    SOAP_ELEMENT;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    SOAP_DOCUMENT;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    SOAP_VECTOR;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    MIME_IMAGE;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    MIME_PLAINTEXT;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    MIME_MULTIPART;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    MIME_SOURCE;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    MIME_OCTETSTREAM;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    MIME_DATA_HANDLER;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_LITERAL_ITEM;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_RPC_RESULT;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_FAULTDETAIL_STACKTRACE;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_FAULTDETAIL_EXCEPTIONNAME;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_FAULTDETAIL_RUNTIMEEXCEPTION;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_FAULTDETAIL_HTTPERRORCODE;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_FAULTDETAIL_NESTEDFAULT;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_FAULTDETAIL_HOSTNAME;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_NO_SERVICE_FAULT_CODE;
    
                    public 
                    static 
                    final String 
                    MC_JWS_CLASSDIR = jws.classDir;
    
                    public 
                    static 
                    final String 
                    MC_HOME_DIR = home.dir;
    
                    public 
                    static 
                    final String 
                    MC_RELATIVE_PATH = path;
    
                    public 
                    static 
                    final String 
                    MC_REALPATH = realpath;
    
                    public 
                    static 
                    final String 
                    MC_CONFIGPATH = configPath;
    
                    public 
                    static 
                    final String 
                    MC_REMOTE_ADDR = remoteaddr;
    
                    public 
                    static 
                    final String 
                    MC_SERVLET_ENDPOINT_CONTEXT = servletEndpointContext;
    
                    public 
                    static 
                    final String 
                    MC_NO_OPERATION_OK = NoOperationOK;
    
                    public 
                    static 
                    final String 
                    MC_SINGLE_SOAP_VERSION = SingleSOAPVersion;
    
                    public 
                    static 
                    final String 
                    JWS_DEFAULT_FILE_EXTENSION = .jws;
    
                    public 
                    static 
                    final int 
                    DEFAULT_MESSAGE_TIMEOUT = 600000;
    
                    public 
                    static 
                    final String 
                    MIME_CT_APPLICATION_OCTETSTREAM = application/octet-stream;
    
                    public 
                    static 
                    final String 
                    MIME_CT_TEXT_PLAIN = text/plain;
    
                    public 
                    static 
                    final String 
                    MIME_CT_IMAGE_JPEG = image/jpeg;
    
                    public 
                    static 
                    final String 
                    MIME_CT_IMAGE_GIF = image/gif;
    
                    public 
                    static 
                    final String 
                    MIME_CT_TEXT_XML = text/xml;
    
                    public 
                    static 
                    final String 
                    MIME_CT_APPLICATION_XML = application/xml;
    
                    public 
                    static 
                    final String 
                    MIME_CT_MULTIPART_PREFIX = multipart/;
    
                    public void Constants();
    
                    public 
                    static boolean 
                    isSOAP_ENV(String);
    
                    public 
                    static boolean 
                    isSOAP_ENC(String);
    
                    public 
                    static String 
                    getValue(org.xml.sax.Attributes, String[], String);
    
                    public 
                    static String 
                    getValue(org.xml.sax.Attributes, javax.xml.namespace.QName[]);
    
                    public 
                    static boolean 
                    equals(javax.xml.namespace.QName, javax.xml.namespace.QName);
    
                    public 
                    static boolean 
                    isSchemaXSD(String);
    
                    public 
                    static boolean 
                    isSchemaXSI(String);
    
                    public 
                    static boolean 
                    isWSDL(String);
    
                    public 
                    static boolean 
                    isWSDLSOAP(String);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/EngineConfiguration.class

                    package org.apache.axis;

                    public 
                    abstract 
                    interface EngineConfiguration {
    
                    public 
                    static 
                    final String 
                    PROPERTY_NAME = engineConfig;
    
                    public 
                    abstract void 
                    configureEngine(AxisEngine) 
                    throws ConfigurationException;
    
                    public 
                    abstract void 
                    writeEngineConfig(AxisEngine) 
                    throws ConfigurationException;
    
                    public 
                    abstract Handler 
                    getHandler(javax.xml.namespace.QName) 
                    throws ConfigurationException;
    
                    public 
                    abstract handlers.soap.SOAPService 
                    getService(javax.xml.namespace.QName) 
                    throws ConfigurationException;
    
                    public 
                    abstract handlers.soap.SOAPService 
                    getServiceByNamespaceURI(String) 
                    throws ConfigurationException;
    
                    public 
                    abstract Handler 
                    getTransport(javax.xml.namespace.QName) 
                    throws ConfigurationException;
    
                    public 
                    abstract encoding.TypeMappingRegistry 
                    getTypeMappingRegistry() 
                    throws ConfigurationException;
    
                    public 
                    abstract Handler 
                    getGlobalRequest() 
                    throws ConfigurationException;
    
                    public 
                    abstract Handler 
                    getGlobalResponse() 
                    throws ConfigurationException;
    
                    public 
                    abstract java.util.Hashtable 
                    getGlobalOptions() 
                    throws ConfigurationException;
    
                    public 
                    abstract java.util.Iterator 
                    getDeployedServices() 
                    throws ConfigurationException;
    
                    public 
                    abstract java.util.List 
                    getRoles();
}

                

org/apache/axis/EngineConfigurationFactory.class

                    package org.apache.axis;

                    public 
                    abstract 
                    interface EngineConfigurationFactory {
    
                    public 
                    static 
                    final String 
                    SYSTEM_PROPERTY_NAME = axis.EngineConfigFactory;
    
                    public 
                    abstract EngineConfiguration 
                    getClientEngineConfig();
    
                    public 
                    abstract EngineConfiguration 
                    getServerEngineConfig();
}

                

org/apache/axis/FaultableHandler.class

                    package org.apache.axis;

                    public 
                    synchronized 
                    class FaultableHandler 
                    extends handlers.BasicHandler {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    protected 
                    static org.apache.commons.logging.Log 
                    entLog;
    
                    protected Handler 
                    workHandler;
    
                    public void FaultableHandler(Handler);
    
                    public void 
                    init();
    
                    public void 
                    cleanup();
    
                    public void 
                    invoke(MessageContext) 
                    throws AxisFault;
    
                    public void 
                    onFault(MessageContext);
    
                    public boolean 
                    canHandleBlock(javax.xml.namespace.QName);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/Handler.class

                    package org.apache.axis;

                    public 
                    abstract 
                    interface Handler 
                    extends java.io.Serializable {
    
                    public 
                    abstract void 
                    init();
    
                    public 
                    abstract void 
                    cleanup();
    
                    public 
                    abstract void 
                    invoke(MessageContext) 
                    throws AxisFault;
    
                    public 
                    abstract void 
                    onFault(MessageContext);
    
                    public 
                    abstract boolean 
                    canHandleBlock(javax.xml.namespace.QName);
    
                    public 
                    abstract java.util.List 
                    getUnderstoodHeaders();
    
                    public 
                    abstract void 
                    setOption(String, Object);
    
                    public 
                    abstract Object 
                    getOption(String);
    
                    public 
                    abstract void 
                    setName(String);
    
                    public 
                    abstract String 
                    getName();
    
                    public 
                    abstract java.util.Hashtable 
                    getOptions();
    
                    public 
                    abstract void 
                    setOptions(java.util.Hashtable);
    
                    public 
                    abstract org.w3c.dom.Element 
                    getDeploymentData(org.w3c.dom.Document);
    
                    public 
                    abstract void 
                    generateWSDL(MessageContext) 
                    throws AxisFault;
}

                

org/apache/axis/HandlerIterationStrategy.class

                    package org.apache.axis;

                    public 
                    abstract 
                    interface HandlerIterationStrategy {
    
                    public 
                    abstract void 
                    visit(Handler, MessageContext) 
                    throws AxisFault;
}

                

org/apache/axis/InternalException.class

                    package org.apache.axis;

                    public 
                    synchronized 
                    class InternalException 
                    extends RuntimeException {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private 
                    static boolean 
                    shouldLog;
    
                    public 
                    static void 
                    setLogging(boolean);
    
                    public 
                    static boolean 
                    getLogging();
    
                    public void InternalException(String);
    
                    public void InternalException(Exception);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/Message.class

                    package org.apache.axis;

                    public 
                    synchronized 
                    class Message 
                    extends javax.xml.soap.SOAPMessage 
                    implements java.io.Serializable {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public 
                    static 
                    final String 
                    REQUEST = request;
    
                    public 
                    static 
                    final String 
                    RESPONSE = response;
    
                    public 
                    static 
                    final String 
                    MIME_MULTIPART_RELATED = multipart/related;
    
                    public 
                    static 
                    final String 
                    MIME_APPLICATION_DIME = application/dime;
    
                    public 
                    static 
                    final String 
                    CONTENT_TYPE_MTOM = application/xop+xml;
    
                    public 
                    static 
                    final String 
                    DEFAULT_ATTACHMNET_IMPL = org.apache.axis.attachments.AttachmentsImpl;
    
                    private 
                    static String 
                    mAttachmentsImplClassName;
    
                    public 
                    static 
                    final String 
                    MIME_UNKNOWN =   ;
    
                    private String 
                    messageType;
    
                    private SOAPPart 
                    mSOAPPart;
    
                    private attachments.Attachments 
                    mAttachments;
    
                    private message.MimeHeaders 
                    headers;
    
                    private boolean 
                    saveRequired;
    
                    private MessageContext 
                    msgContext;
    
                    private 
                    static Class 
                    attachImpl;
    
                    private 
                    static boolean 
                    checkForAttachmentSupport;
    
                    private 
                    static boolean 
                    attachmentSupportEnabled;
    
                    private java.util.Hashtable 
                    mProps;
    
                    public 
                    static String 
                    getAttachmentImplClassName();
    
                    public String 
                    getMessageType();
    
                    public void 
                    setMessageType(String);
    
                    public MessageContext 
                    getMessageContext();
    
                    public void 
                    setMessageContext(MessageContext);
    
                    public void Message(Object, boolean);
    
                    public void Message(Object, boolean, javax.xml.soap.MimeHeaders);
    
                    public void Message(Object, message.MimeHeaders);
    
                    public void Message(Object, boolean, String, String);
    
                    public void Message(Object);
    
                    private 
                    static 
                    synchronized boolean 
                    isAttachmentSupportEnabled(MessageContext);
    
                    private void 
                    setup(Object, boolean, String, String, javax.xml.soap.MimeHeaders);
    
                    public javax.xml.soap.SOAPPart 
                    getSOAPPart();
    
                    public String 
                    getSOAPPartAsString() 
                    throws AxisFault;
    
                    public byte[] 
                    getSOAPPartAsBytes() 
                    throws AxisFault;
    
                    public message.SOAPEnvelope 
                    getSOAPEnvelope() 
                    throws AxisFault;
    
                    public attachments.Attachments 
                    getAttachmentsImpl();
    
                    public String 
                    getContentType(soap.SOAPConstants) 
                    throws AxisFault;
    
                    private int 
                    getSendType();
    
                    public long 
                    getContentLength() 
                    throws AxisFault;
    
                    public void 
                    writeTo(java.io.OutputStream) 
                    throws javax.xml.soap.SOAPException, java.io.IOException;
    
                    public javax.xml.soap.SOAPBody 
                    getSOAPBody() 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.SOAPHeader 
                    getSOAPHeader() 
                    throws javax.xml.soap.SOAPException;
    
                    public void 
                    setProperty(String, Object) 
                    throws javax.xml.soap.SOAPException;
    
                    public Object 
                    getProperty(String) 
                    throws javax.xml.soap.SOAPException;
    
                    public String 
                    getContentDescription();
    
                    public void 
                    setContentDescription(String);
    
                    public void 
                    saveChanges() 
                    throws javax.xml.soap.SOAPException;
    
                    public boolean 
                    saveRequired();
    
                    public javax.xml.soap.MimeHeaders 
                    getMimeHeaders();
    
                    public void 
                    removeAllAttachments();
    
                    public int 
                    countAttachments();
    
                    public java.util.Iterator 
                    getAttachments();
    
                    public java.util.Iterator 
                    getAttachments(javax.xml.soap.MimeHeaders);
    
                    public void 
                    addAttachmentPart(javax.xml.soap.AttachmentPart);
    
                    public javax.xml.soap.AttachmentPart 
                    createAttachmentPart();
    
                    public void 
                    dispose();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/MessageContext.class

                    package org.apache.axis;

                    public 
                    synchronized 
                    class MessageContext 
                    implements javax.xml.rpc.handler.soap.SOAPMessageContext {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private Message 
                    requestMessage;
    
                    private Message 
                    responseMessage;
    
                    private String 
                    targetService;
    
                    private String 
                    transportName;
    
                    private ClassLoader 
                    classLoader;
    
                    private AxisEngine 
                    axisEngine;
    
                    private session.Session 
                    session;
    
                    private boolean 
                    maintainSession;
    
                    private boolean 
                    havePassedPivot;
    
                    private int 
                    timeout;
    
                    private boolean 
                    highFidelity;
    
                    private utils.LockableHashtable 
                    bag;
    
                    private String 
                    username;
    
                    private String 
                    password;
    
                    private String 
                    encodingStyle;
    
                    private boolean 
                    useSOAPAction;
    
                    private String 
                    SOAPActionURI;
    
                    private String[] 
                    roles;
    
                    private soap.SOAPConstants 
                    soapConstants;
    
                    private schema.SchemaVersion 
                    schemaVersion;
    
                    private description.OperationDesc 
                    currentOperation;
    
                    protected 
                    static String 
                    systemTempDir;
    
                    private encoding.TypeMappingRegistry 
                    mappingRegistry;
    
                    private handlers.soap.SOAPService 
                    serviceHandler;
    
                    public 
                    static 
                    final String 
                    ENGINE_HANDLER = engine.handler;
    
                    public 
                    static 
                    final String 
                    TRANS_URL = transport.url;
    
                    public 
                    static 
                    final String 
                    QUIT_REQUESTED = quit.requested;
    
                    public 
                    static 
                    final String 
                    AUTHUSER = authenticatedUser;
    
                    public 
                    static 
                    final String 
                    CALL = call_object;
    
                    public 
                    static 
                    final String 
                    IS_MSG = isMsg;
    
                    public 
                    static 
                    final String 
                    ATTACHMENTS_DIR = attachments.directory;
    
                    public 
                    static 
                    final String 
                    ACCEPTMISSINGPARAMS = acceptMissingParams;
    
                    public 
                    static 
                    final String 
                    WSDLGEN_INTFNAMESPACE = axis.wsdlgen.intfnamespace;
    
                    public 
                    static 
                    final String 
                    WSDLGEN_SERV_LOC_URL = axis.wsdlgen.serv.loc.url;
    
                    public 
                    static 
                    final String 
                    HTTP_TRANSPORT_VERSION = axis.transport.version;
    
                    public 
                    static 
                    final String 
                    SECURITY_PROVIDER = securityProvider;
    
                    public description.OperationDesc 
                    getOperation();
    
                    public void 
                    setOperation(description.OperationDesc);
    
                    public description.OperationDesc[] 
                    getPossibleOperationsByQName(javax.xml.namespace.QName) 
                    throws AxisFault;
    
                    public description.OperationDesc 
                    getOperationByQName(javax.xml.namespace.QName) 
                    throws AxisFault;
    
                    public 
                    static MessageContext 
                    getCurrentContext();
    
                    public void MessageContext(AxisEngine);
    
                    protected void 
                    finalize();
    
                    public void 
                    setTypeMappingRegistry(encoding.TypeMappingRegistry);
    
                    public encoding.TypeMappingRegistry 
                    getTypeMappingRegistry();
    
                    public encoding.TypeMapping 
                    getTypeMapping();
    
                    public String 
                    getTransportName();
    
                    public void 
                    setTransportName(String);
    
                    public soap.SOAPConstants 
                    getSOAPConstants();
    
                    public void 
                    setSOAPConstants(soap.SOAPConstants);
    
                    public schema.SchemaVersion 
                    getSchemaVersion();
    
                    public void 
                    setSchemaVersion(schema.SchemaVersion);
    
                    public session.Session 
                    getSession();
    
                    public void 
                    setSession(session.Session);
    
                    public boolean 
                    isEncoded();
    
                    public void 
                    setMaintainSession(boolean);
    
                    public boolean 
                    getMaintainSession();
    
                    public Message 
                    getRequestMessage();
    
                    public void 
                    setRequestMessage(Message);
    
                    public Message 
                    getResponseMessage();
    
                    public void 
                    setResponseMessage(Message);
    
                    public Message 
                    getCurrentMessage();
    
                    public javax.xml.soap.SOAPMessage 
                    getMessage();
    
                    public void 
                    setCurrentMessage(Message);
    
                    public void 
                    setMessage(javax.xml.soap.SOAPMessage);
    
                    public boolean 
                    getPastPivot();
    
                    public void 
                    setPastPivot(boolean);
    
                    public void 
                    setTimeout(int);
    
                    public int 
                    getTimeout();
    
                    public ClassLoader 
                    getClassLoader();
    
                    public void 
                    setClassLoader(ClassLoader);
    
                    public String 
                    getTargetService();
    
                    public AxisEngine 
                    getAxisEngine();
    
                    public void 
                    setTargetService(String) 
                    throws AxisFault;
    
                    public handlers.soap.SOAPService 
                    getService();
    
                    public void 
                    setService(handlers.soap.SOAPService) 
                    throws AxisFault;
    
                    public boolean 
                    isClient();
    
                    public String 
                    getStrProp(String);
    
                    public boolean 
                    isPropertyTrue(String);
    
                    public boolean 
                    isPropertyTrue(String, boolean);
    
                    public void 
                    setProperty(String, Object);
    
                    public boolean 
                    containsProperty(String);
    
                    public java.util.Iterator 
                    getPropertyNames();
    
                    public java.util.Iterator 
                    getAllPropertyNames();
    
                    public Object 
                    getProperty(String);
    
                    public void 
                    setPropertyParent(java.util.Hashtable);
    
                    public void 
                    setUsername(String);
    
                    public String 
                    getUsername();
    
                    public void 
                    setPassword(String);
    
                    public String 
                    getPassword();
    
                    public constants.Style 
                    getOperationStyle();
    
                    public constants.Use 
                    getOperationUse();
    
                    public void 
                    setUseSOAPAction(boolean);
    
                    public boolean 
                    useSOAPAction();
    
                    public void 
                    setSOAPActionURI(String) 
                    throws IllegalArgumentException;
    
                    public String 
                    getSOAPActionURI();
    
                    public void 
                    setEncodingStyle(String);
    
                    public String 
                    getEncodingStyle();
    
                    public void 
                    removeProperty(String);
    
                    public void 
                    reset();
    
                    public boolean 
                    isHighFidelity();
    
                    public void 
                    setHighFidelity(boolean);
    
                    public String[] 
                    getRoles();
    
                    public void 
                    setRoles(String[]);
    
                    public 
                    synchronized void 
                    dispose();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/NoEndPointException.class

                    package org.apache.axis;

                    public 
                    synchronized 
                    class NoEndPointException 
                    extends AxisFault {
    
                    public void NoEndPointException();
}

                

org/apache/axis/Part.class

                    package org.apache.axis;

                    public 
                    abstract 
                    interface Part 
                    extends java.io.Serializable {
    
                    public 
                    abstract String[] 
                    getMimeHeader(String);
    
                    public 
                    abstract void 
                    addMimeHeader(String, String);
    
                    public 
                    abstract String 
                    getContentLocation();
    
                    public 
                    abstract void 
                    setContentLocation(String);
    
                    public 
                    abstract void 
                    setContentId(String);
    
                    public 
                    abstract String 
                    getContentId();
    
                    public 
                    abstract java.util.Iterator 
                    getMatchingMimeHeaders(String[]);
    
                    public 
                    abstract java.util.Iterator 
                    getNonMatchingMimeHeaders(String[]);
    
                    public 
                    abstract String 
                    getContentType();
    
                    public 
                    abstract String 
                    getContentIdRef();
}

                

org/apache/axis/SOAPPart.class

                    package org.apache.axis;

                    public 
                    synchronized 
                    class SOAPPart 
                    extends javax.xml.soap.SOAPPart 
                    implements Part {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public 
                    static 
                    final int 
                    FORM_STRING = 1;
    
                    public 
                    static 
                    final int 
                    FORM_INPUTSTREAM = 2;
    
                    public 
                    static 
                    final int 
                    FORM_SOAPENVELOPE = 3;
    
                    public 
                    static 
                    final int 
                    FORM_BYTES = 4;
    
                    public 
                    static 
                    final int 
                    FORM_BODYINSTREAM = 5;
    
                    public 
                    static 
                    final int 
                    FORM_FAULT = 6;
    
                    public 
                    static 
                    final int 
                    FORM_OPTIMIZED = 7;
    
                    private int 
                    currentForm;
    
                    public 
                    static 
                    final String 
                    ALLOW_FORM_OPTIMIZATION = axis.form.optimization;
    
                    private message.MimeHeaders 
                    mimeHeaders;
    
                    private 
                    static 
                    final String[] 
                    formNames;
    
                    private Object 
                    currentMessage;
    
                    private String 
                    currentEncoding;
    
                    private String 
                    currentMessageAsString;
    
                    private byte[] 
                    currentMessageAsBytes;
    
                    private message.SOAPEnvelope 
                    currentMessageAsEnvelope;
    
                    private Message 
                    msgObject;
    
                    private javax.xml.transform.Source 
                    contentSource;
    
                    private org.w3c.dom.Document 
                    document;
    
                    protected org.w3c.dom.Document 
                    mDocument;
    
                    public void SOAPPart(Message, Object, boolean);
    
                    public Message 
                    getMessage();
    
                    public void 
                    setMessage(Message);
    
                    public String 
                    getContentType();
    
                    public long 
                    getContentLength() 
                    throws AxisFault;
    
                    public void 
                    setSOAPEnvelope(message.SOAPEnvelope);
    
                    public void 
                    writeTo(java.io.OutputStream) 
                    throws java.io.IOException;
    
                    public void 
                    writeTo(java.io.Writer) 
                    throws java.io.IOException;
    
                    public Object 
                    getCurrentMessage();
    
                    public void 
                    setCurrentMessage(Object, int);
    
                    private void 
                    setCurrentForm(Object, int);
    
                    private boolean 
                    isFormOptimizationAllowed();
    
                    public int 
                    getCurrentForm();
    
                    public byte[] 
                    getAsBytes() 
                    throws AxisFault;
    
                    public void 
                    saveChanges() 
                    throws AxisFault;
    
                    public String 
                    getAsString() 
                    throws AxisFault;
    
                    public message.SOAPEnvelope 
                    getAsSOAPEnvelope() 
                    throws AxisFault;
    
                    public void 
                    addMimeHeader(String, String);
    
                    private String 
                    getFirstMimeHeader(String);
    
                    public String 
                    getContentLocation();
    
                    public void 
                    setContentLocation(String);
    
                    public void 
                    setContentId(String);
    
                    public String 
                    getContentId();
    
                    public String 
                    getContentIdRef();
    
                    public java.util.Iterator 
                    getMatchingMimeHeaders(String[]);
    
                    public java.util.Iterator 
                    getNonMatchingMimeHeaders(String[]);
    
                    public void 
                    setContent(javax.xml.transform.Source) 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.transform.Source 
                    getContent() 
                    throws javax.xml.soap.SOAPException;
    
                    public java.util.Iterator 
                    getAllMimeHeaders();
    
                    public void 
                    setMimeHeader(String, String);
    
                    public String[] 
                    getMimeHeader(String);
    
                    public void 
                    removeAllMimeHeaders();
    
                    public void 
                    removeMimeHeader(String);
    
                    public javax.xml.soap.SOAPEnvelope 
                    getEnvelope() 
                    throws javax.xml.soap.SOAPException;
    
                    public org.w3c.dom.Document 
                    getSOAPDocument();
    
                    public org.w3c.dom.DocumentType 
                    getDoctype();
    
                    public org.w3c.dom.DOMImplementation 
                    getImplementation();
    
                    public org.w3c.dom.Element 
                    getDocumentElement();
    
                    public org.w3c.dom.Element 
                    createElement(String) 
                    throws org.w3c.dom.DOMException;
    
                    public org.w3c.dom.DocumentFragment 
                    createDocumentFragment();
    
                    public org.w3c.dom.Text 
                    createTextNode(String);
    
                    public org.w3c.dom.Comment 
                    createComment(String);
    
                    public org.w3c.dom.CDATASection 
                    createCDATASection(String) 
                    throws org.w3c.dom.DOMException;
    
                    public org.w3c.dom.ProcessingInstruction 
                    createProcessingInstruction(String, String) 
                    throws org.w3c.dom.DOMException;
    
                    public org.w3c.dom.Attr 
                    createAttribute(String) 
                    throws org.w3c.dom.DOMException;
    
                    public org.w3c.dom.EntityReference 
                    createEntityReference(String) 
                    throws org.w3c.dom.DOMException;
    
                    public org.w3c.dom.NodeList 
                    getElementsByTagName(String);
    
                    public org.w3c.dom.Node 
                    importNode(org.w3c.dom.Node, boolean) 
                    throws org.w3c.dom.DOMException;
    
                    public org.w3c.dom.Element 
                    createElementNS(String, String) 
                    throws org.w3c.dom.DOMException;
    
                    public org.w3c.dom.Attr 
                    createAttributeNS(String, String) 
                    throws org.w3c.dom.DOMException;
    
                    public org.w3c.dom.NodeList 
                    getElementsByTagNameNS(String, String);
    
                    public org.w3c.dom.Element 
                    getElementById(String);
    
                    public String 
                    getEncoding();
    
                    public void 
                    setEncoding(String);
    
                    public boolean 
                    getStandalone();
    
                    public void 
                    setStandalone(boolean);
    
                    public boolean 
                    getStrictErrorChecking();
    
                    public void 
                    setStrictErrorChecking(boolean);
    
                    public String 
                    getVersion();
    
                    public void 
                    setVersion(String);
    
                    public org.w3c.dom.Node 
                    adoptNode(org.w3c.dom.Node) 
                    throws org.w3c.dom.DOMException;
    
                    public String 
                    getNodeName();
    
                    public String 
                    getNodeValue() 
                    throws org.w3c.dom.DOMException;
    
                    public void 
                    setNodeValue(String) 
                    throws org.w3c.dom.DOMException;
    
                    public short 
                    getNodeType();
    
                    public org.w3c.dom.Node 
                    getParentNode();
    
                    public org.w3c.dom.NodeList 
                    getChildNodes();
    
                    public org.w3c.dom.Node 
                    getFirstChild();
    
                    public org.w3c.dom.Node 
                    getLastChild();
    
                    public org.w3c.dom.Node 
                    getPreviousSibling();
    
                    public org.w3c.dom.Node 
                    getNextSibling();
    
                    public org.w3c.dom.NamedNodeMap 
                    getAttributes();
    
                    public org.w3c.dom.Document 
                    getOwnerDocument();
    
                    public org.w3c.dom.Node 
                    insertBefore(org.w3c.dom.Node, org.w3c.dom.Node) 
                    throws org.w3c.dom.DOMException;
    
                    public org.w3c.dom.Node 
                    replaceChild(org.w3c.dom.Node, org.w3c.dom.Node) 
                    throws org.w3c.dom.DOMException;
    
                    public org.w3c.dom.Node 
                    removeChild(org.w3c.dom.Node) 
                    throws org.w3c.dom.DOMException;
    
                    public org.w3c.dom.Node 
                    appendChild(org.w3c.dom.Node) 
                    throws org.w3c.dom.DOMException;
    
                    public boolean 
                    hasChildNodes();
    
                    public org.w3c.dom.Node 
                    cloneNode(boolean);
    
                    public void 
                    normalize();
    
                    public boolean 
                    isSupported(String, String);
    
                    public String 
                    getNamespaceURI();
    
                    public String 
                    getPrefix();
    
                    public void 
                    setPrefix(String) 
                    throws org.w3c.dom.DOMException;
    
                    public String 
                    getLocalName();
    
                    public boolean 
                    hasAttributes();
    
                    public boolean 
                    isBodyStream();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/SimpleChain.class

                    package org.apache.axis;

                    public 
                    synchronized 
                    class SimpleChain 
                    extends handlers.BasicHandler 
                    implements Chain {
    
                    private 
                    static org.apache.commons.logging.Log 
                    log;
    
                    protected java.util.Vector 
                    handlers;
    
                    protected boolean 
                    invoked;
    
                    private String 
                    CAUGHTFAULT_PROPERTY;
    
                    private 
                    static 
                    final HandlerIterationStrategy 
                    iVisitor;
    
                    private 
                    static 
                    final HandlerIterationStrategy 
                    wsdlVisitor;
    
                    public void SimpleChain();
    
                    public void 
                    init();
    
                    public void 
                    cleanup();
    
                    public void 
                    invoke(MessageContext) 
                    throws AxisFault;
    
                    public void 
                    generateWSDL(MessageContext) 
                    throws AxisFault;
    
                    private void 
                    doVisiting(MessageContext, HandlerIterationStrategy) 
                    throws AxisFault;
    
                    public void 
                    onFault(MessageContext);
    
                    public boolean 
                    canHandleBlock(javax.xml.namespace.QName);
    
                    public void 
                    addHandler(Handler);
    
                    public boolean 
                    contains(Handler);
    
                    public Handler[] 
                    getHandlers();
    
                    public org.w3c.dom.Element 
                    getDeploymentData(org.w3c.dom.Document);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/SimpleTargetedChain$PivotIndicator.class

                    package org.apache.axis;

                    synchronized 
                    class SimpleTargetedChain$PivotIndicator 
                    extends handlers.BasicHandler {
    
                    public void SimpleTargetedChain$PivotIndicator(SimpleTargetedChain);
    
                    public void 
                    invoke(MessageContext) 
                    throws AxisFault;
}

                

org/apache/axis/SimpleTargetedChain.class

                    package org.apache.axis;

                    public 
                    synchronized 
                    class SimpleTargetedChain 
                    extends SimpleChain 
                    implements TargetedChain {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    protected Handler 
                    requestHandler;
    
                    protected Handler 
                    pivotHandler;
    
                    protected Handler 
                    responseHandler;
    
                    public void SimpleTargetedChain();
    
                    public void SimpleTargetedChain(Handler);
    
                    public void SimpleTargetedChain(Handler, Handler, Handler);
    
                    protected void 
                    init(Handler, Handler, Handler, Handler, Handler);
    
                    public Handler 
                    getRequestHandler();
    
                    public Handler 
                    getPivotHandler();
    
                    public Handler 
                    getResponseHandler();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/TargetedChain.class

                    package org.apache.axis;

                    public 
                    abstract 
                    interface TargetedChain 
                    extends Chain {
    
                    public 
                    abstract Handler 
                    getRequestHandler();
    
                    public 
                    abstract Handler 
                    getPivotHandler();
    
                    public 
                    abstract Handler 
                    getResponseHandler();
}

                

org/apache/axis/Version.class

                    package org.apache.axis;

                    public 
                    synchronized 
                    class Version {
    
                    public void Version();
    
                    public 
                    static String 
                    getVersion();
    
                    public 
                    static String 
                    getVersionText();
    
                    public 
                    static void 
                    main(String[]);
}

                

org/apache/axis/WSDDEngineConfiguration.class

                    package org.apache.axis;

                    public 
                    abstract 
                    interface WSDDEngineConfiguration 
                    extends EngineConfiguration {
    
                    public 
                    abstract deployment.wsdd.WSDDDeployment 
                    getDeployment();
}

                

org/apache/axis/attachments/AttachmentPart.class

                    package org.apache.axis.attachments;

                    public 
                    synchronized 
                    class AttachmentPart 
                    extends javax.xml.soap.AttachmentPart 
                    implements org.apache.axis.Part {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    javax.activation.DataHandler 
                    datahandler;
    
                    private javax.xml.soap.MimeHeaders 
                    mimeHeaders;
    
                    private Object 
                    contentObject;
    
                    private String 
                    attachmentFile;
    
                    public void AttachmentPart();
    
                    public void AttachmentPart(javax.activation.DataHandler);
    
                    protected void 
                    finalize() 
                    throws Throwable;
    
                    public javax.activation.DataHandler 
                    getActivationDataHandler();
    
                    public String 
                    getContentType();
    
                    public void 
                    addMimeHeader(String, String);
    
                    public String 
                    getFirstMimeHeader(String);
    
                    public boolean 
                    matches(javax.xml.soap.MimeHeaders);
    
                    public String 
                    getContentLocation();
    
                    public void 
                    setContentLocation(String);
    
                    public void 
                    setContentId(String);
    
                    public String 
                    getContentId();
    
                    public java.util.Iterator 
                    getMatchingMimeHeaders(String[]);
    
                    public java.util.Iterator 
                    getNonMatchingMimeHeaders(String[]);
    
                    public java.util.Iterator 
                    getAllMimeHeaders();
    
                    public void 
                    setMimeHeader(String, String);
    
                    public void 
                    removeAllMimeHeaders();
    
                    public void 
                    removeMimeHeader(String);
    
                    public javax.activation.DataHandler 
                    getDataHandler() 
                    throws javax.xml.soap.SOAPException;
    
                    public void 
                    setDataHandler(javax.activation.DataHandler);
    
                    public Object 
                    getContent() 
                    throws javax.xml.soap.SOAPException;
    
                    public void 
                    setContent(Object, String);
    
                    public void 
                    clearContent();
    
                    public int 
                    getSize() 
                    throws javax.xml.soap.SOAPException;
    
                    public String[] 
                    getMimeHeader(String);
    
                    public String 
                    getContentIdRef();
    
                    private void 
                    extractFilename(ManagedMemoryDataSource);
    
                    protected void 
                    setAttachmentFile(String);
    
                    public void 
                    detachAttachmentFile();
    
                    public String 
                    getAttachmentFile();
    
                    public 
                    synchronized void 
                    dispose();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/attachments/AttachmentUtils.class

                    package org.apache.axis.attachments;

                    public 
                    synchronized 
                    class AttachmentUtils {
    
                    private void AttachmentUtils();
    
                    public 
                    static javax.activation.DataHandler 
                    getActivationDataHandler(org.apache.axis.Part) 
                    throws org.apache.axis.AxisFault;
    
                    public 
                    static boolean 
                    isAttachment(Object);
}

                

org/apache/axis/attachments/Attachments.class

                    package org.apache.axis.attachments;

                    public 
                    abstract 
                    interface Attachments 
                    extends java.io.Serializable {
    
                    public 
                    static 
                    final int 
                    SEND_TYPE_NOTSET = 1;
    
                    public 
                    static 
                    final int 
                    SEND_TYPE_MIME = 2;
    
                    public 
                    static 
                    final int 
                    SEND_TYPE_DIME = 3;
    
                    public 
                    static 
                    final int 
                    SEND_TYPE_MTOM = 4;
    
                    public 
                    static 
                    final int 
                    SEND_TYPE_NONE = 5;
    
                    public 
                    static 
                    final int 
                    SEND_TYPE_MAX = 5;
    
                    public 
                    static 
                    final int 
                    SEND_TYPE_DEFAULT = 2;
    
                    public 
                    static 
                    final String 
                    CIDprefix = cid:;
    
                    public 
                    abstract org.apache.axis.Part 
                    addAttachmentPart(org.apache.axis.Part) 
                    throws org.apache.axis.AxisFault;
    
                    public 
                    abstract org.apache.axis.Part 
                    removeAttachmentPart(String) 
                    throws org.apache.axis.AxisFault;
    
                    public 
                    abstract void 
                    removeAllAttachments();
    
                    public 
                    abstract org.apache.axis.Part 
                    getAttachmentByReference(String) 
                    throws org.apache.axis.AxisFault;
    
                    public 
                    abstract java.util.Collection 
                    getAttachments() 
                    throws org.apache.axis.AxisFault;
    
                    public 
                    abstract java.util.Iterator 
                    getAttachments(javax.xml.soap.MimeHeaders);
    
                    public 
                    abstract org.apache.axis.Part 
                    createAttachmentPart(Object) 
                    throws org.apache.axis.AxisFault;
    
                    public 
                    abstract org.apache.axis.Part 
                    createAttachmentPart() 
                    throws org.apache.axis.AxisFault;
    
                    public 
                    abstract void 
                    setAttachmentParts(java.util.Collection) 
                    throws org.apache.axis.AxisFault;
    
                    public 
                    abstract org.apache.axis.Part 
                    getRootPart();
    
                    public 
                    abstract void 
                    setRootPart(org.apache.axis.Part);
    
                    public 
                    abstract long 
                    getContentLength() 
                    throws org.apache.axis.AxisFault;
    
                    public 
                    abstract void 
                    writeContentToStream(java.io.OutputStream) 
                    throws org.apache.axis.AxisFault;
    
                    public 
                    abstract String 
                    getContentType() 
                    throws org.apache.axis.AxisFault;
    
                    public 
                    abstract int 
                    getAttachmentCount();
    
                    public 
                    abstract boolean 
                    isAttachment(Object);
    
                    public 
                    abstract void 
                    setSendType(int);
    
                    public 
                    abstract int 
                    getSendType();
    
                    public 
                    abstract void 
                    dispose();
    
                    public 
                    abstract IncomingAttachmentStreams 
                    getIncomingAttachmentStreams();
}

                

org/apache/axis/attachments/AttachmentsImpl.class

                    package org.apache.axis.attachments;

                    public 
                    synchronized 
                    class AttachmentsImpl 
                    implements Attachments {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private java.util.HashMap 
                    attachments;
    
                    private java.util.LinkedList 
                    orderedAttachments;
    
                    protected org.apache.axis.SOAPPart 
                    soapPart;
    
                    protected MultiPartInputStream 
                    mpartStream;
    
                    protected int 
                    sendtype;
    
                    protected String 
                    contentLocation;
    
                    private java.util.HashMap 
                    stackDataHandler;
    
                    private IncomingAttachmentStreams 
                    _streams;
    
                    private boolean 
                    _askedForAttachments;
    
                    private boolean 
                    _askedForStreams;
    javax.mail.internet.MimeMultipart 
                    multipart;
    DimeMultiPart 
                    dimemultipart;
    
                    public void AttachmentsImpl(Object, String, String) 
                    throws org.apache.axis.AxisFault;
    
                    private void 
                    mergeinAttachments() 
                    throws org.apache.axis.AxisFault;
    
                    public org.apache.axis.Part 
                    removeAttachmentPart(String) 
                    throws org.apache.axis.AxisFault;
    
                    public org.apache.axis.Part 
                    addAttachmentPart(org.apache.axis.Part) 
                    throws org.apache.axis.AxisFault;
    
                    public org.apache.axis.Part 
                    createAttachmentPart(Object) 
                    throws org.apache.axis.AxisFault;
    
                    public void 
                    setAttachmentParts(java.util.Collection) 
                    throws org.apache.axis.AxisFault;
    
                    public org.apache.axis.Part 
                    getAttachmentByReference(String) 
                    throws org.apache.axis.AxisFault;
    
                    public java.util.Collection 
                    getAttachments() 
                    throws org.apache.axis.AxisFault;
    
                    public org.apache.axis.Part 
                    getRootPart();
    
                    public void 
                    setRootPart(org.apache.axis.Part);
    
                    public long 
                    getContentLength() 
                    throws org.apache.axis.AxisFault;
    
                    protected DimeMultiPart 
                    createDimeMessage() 
                    throws org.apache.axis.AxisFault;
    
                    public void 
                    writeContentToStream(java.io.OutputStream) 
                    throws org.apache.axis.AxisFault;
    
                    public String 
                    getContentType() 
                    throws org.apache.axis.AxisFault;
    
                    public int 
                    getAttachmentCount();
    
                    public boolean 
                    isAttachment(Object);
    
                    public void 
                    removeAllAttachments();
    
                    public java.util.Iterator 
                    getAttachments(javax.xml.soap.MimeHeaders);
    
                    private java.util.Iterator 
                    GetAttachmentsIterator();
    
                    public org.apache.axis.Part 
                    createAttachmentPart() 
                    throws org.apache.axis.AxisFault;
    
                    public void 
                    setSendType(int);
    
                    public int 
                    getSendType();
    
                    public void 
                    dispose();
    
                    public 
                    static int 
                    getSendType(String);
    
                    public 
                    static String 
                    getSendTypeString(int);
    
                    public IncomingAttachmentStreams 
                    getIncomingAttachmentStreams();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/attachments/BoundaryDelimitedStream.class

                    package org.apache.axis.attachments;

                    public 
                    synchronized 
                    class BoundaryDelimitedStream 
                    extends java.io.FilterInputStream {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    protected byte[] 
                    boundary;
    int 
                    boundaryLen;
    int 
                    boundaryBufLen;
    java.io.InputStream 
                    is;
    boolean 
                    closed;
    boolean 
                    eos;
    boolean 
                    theEnd;
    int 
                    readbufsz;
    byte[] 
                    readbuf;
    int 
                    readBufPos;
    int 
                    readBufEnd;
    
                    protected 
                    static 
                    final int 
                    BOUNDARY_NOT_FOUND = 2147483647;
    int 
                    boundaryPos;
    
                    static int 
                    streamCount;
    
                    protected int 
                    streamNo;
    
                    static boolean 
                    isDebugEnabled;
    
                    private int[] 
                    skip;
    
                    protected 
                    static 
                    synchronized int 
                    newStreamNo();
    
                    public 
                    synchronized BoundaryDelimitedStream 
                    getNextStream() 
                    throws java.io.IOException;
    
                    protected 
                    synchronized BoundaryDelimitedStream 
                    getNextStream(int) 
                    throws java.io.IOException;
    
                    protected void BoundaryDelimitedStream(BoundaryDelimitedStream, int) 
                    throws java.io.IOException;
    void BoundaryDelimitedStream(java.io.InputStream, byte[], int) 
                    throws org.apache.axis.AxisFault;
    
                    private 
                    final int 
                    readFromStream(byte[]) 
                    throws java.io.IOException;
    
                    private 
                    final int 
                    readFromStream(byte[], int, int) 
                    throws java.io.IOException;
    
                    public 
                    synchronized int 
                    read(byte[], int, int) 
                    throws java.io.IOException;
    
                    public int 
                    read(byte[]) 
                    throws java.io.IOException;
    
                    public int 
                    read() 
                    throws java.io.IOException;
    
                    public 
                    synchronized void 
                    close() 
                    throws java.io.IOException;
    
                    public void 
                    mark(int);
    
                    public void 
                    reset() 
                    throws java.io.IOException;
    
                    public boolean 
                    markSupported();
    
                    public int 
                    available() 
                    throws java.io.IOException;
    
                    protected int 
                    boundaryPosition(byte[], int, int) 
                    throws java.io.IOException;
    
                    private int 
                    boundarySearch(byte[], int, int);
    
                    protected void 
                    finalClose() 
                    throws java.io.IOException;
    
                    public 
                    static void 
                    printarry(byte[], int, int);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/attachments/DimeAttachmentStreams.class

                    package org.apache.axis.attachments;

                    public 
                    final 
                    synchronized 
                    class DimeAttachmentStreams 
                    extends IncomingAttachmentStreams {
    
                    private DimeDelimitedInputStream 
                    _delimitedStream;
    
                    public void DimeAttachmentStreams(DimeDelimitedInputStream) 
                    throws org.apache.axis.AxisFault;
    
                    public IncomingAttachmentStreams$IncomingAttachmentInputStream 
                    getNextStream() 
                    throws org.apache.axis.AxisFault;
}

                

org/apache/axis/attachments/DimeBodyPart.class

                    package org.apache.axis.attachments;

                    public 
                    synchronized 
                    class DimeBodyPart {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    protected Object 
                    data;
    
                    protected DimeTypeNameFormat 
                    dtnf;
    
                    protected byte[] 
                    type;
    
                    protected byte[] 
                    id;
    
                    static 
                    final byte 
                    POSITION_FIRST = 4;
    
                    static 
                    final byte 
                    POSITION_LAST = 2;
    
                    private 
                    static 
                    final byte 
                    CHUNK = 1;
    
                    private 
                    static 
                    final byte 
                    CHUNK_NEXT = 2;
    
                    private 
                    static 
                    final byte 
                    ONLY_CHUNK = -1;
    
                    private 
                    static 
                    final byte 
                    LAST_CHUNK = 0;
    
                    private 
                    static int 
                    MAX_TYPE_LENGTH;
    
                    private 
                    static int 
                    MAX_ID_LENGTH;
    
                    static 
                    final long 
                    MAX_DWORD = 4294967295;
    
                    private 
                    static 
                    final byte[] 
                    pad;
    
                    static 
                    final byte 
                    CURRENT_OPT_T = 0;
    
                    protected void DimeBodyPart();
    
                    public void DimeBodyPart(byte[], DimeTypeNameFormat, String, String);
    
                    public void DimeBodyPart(javax.activation.DataHandler, DimeTypeNameFormat, String, String);
    
                    public void DimeBodyPart(javax.activation.DataHandler, String);
    void 
                    write(java.io.OutputStream, byte, long) 
                    throws java.io.IOException;
    void 
                    write(java.io.OutputStream, byte) 
                    throws java.io.IOException;
    void 
                    send(java.io.OutputStream, byte, byte[], long) 
                    throws java.io.IOException;
    void 
                    send(java.io.OutputStream, byte, byte[], int, int, long) 
                    throws java.io.IOException;
    void 
                    send(java.io.OutputStream, byte, javax.activation.DataHandler, long) 
                    throws java.io.IOException;
    void 
                    send(java.io.OutputStream, byte, DynamicContentDataHandler, long) 
                    throws java.io.IOException;
    
                    protected void 
                    sendChunk(java.io.OutputStream, byte, byte[], byte) 
                    throws java.io.IOException;
    
                    protected void 
                    sendChunk(java.io.OutputStream, byte, byte[], int, int, byte) 
                    throws java.io.IOException;
    
                    protected void 
                    sendHeader(java.io.OutputStream, byte, long, byte) 
                    throws java.io.IOException;
    
                    static 
                    final int 
                    dimePadding(long);
    long 
                    getTransmissionSize(long);
    long 
                    getTransmissionSize();
    
                    protected long 
                    getDataSize();
    
                    protected long 
                    getDataSize(javax.activation.DataHandler);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/attachments/DimeDelimitedInputStream.class

                    package org.apache.axis.attachments;

                    public 
                    synchronized 
                    class DimeDelimitedInputStream 
                    extends java.io.FilterInputStream {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    java.io.InputStream 
                    is;
    
                    volatile boolean 
                    closed;
    boolean 
                    theEnd;
    boolean 
                    moreChunks;
    boolean 
                    MB;
    boolean 
                    ME;
    DimeTypeNameFormat 
                    tnf;
    String 
                    type;
    String 
                    id;
    long 
                    recordLength;
    long 
                    bytesRead;
    int 
                    dataPadLength;
    
                    private 
                    static byte[] 
                    trash;
    
                    protected int 
                    streamNo;
    
                    protected java.io.IOException 
                    streamInError;
    
                    protected 
                    static int 
                    streamCount;
    
                    static boolean 
                    isDebugEnabled;
    
                    protected 
                    static 
                    synchronized int 
                    newStreamNo();
    
                    synchronized DimeDelimitedInputStream 
                    getNextStream() 
                    throws java.io.IOException;
    void DimeDelimitedInputStream(java.io.InputStream) 
                    throws java.io.IOException;
    
                    private 
                    final int 
                    readPad(int) 
                    throws java.io.IOException;
    
                    private 
                    final int 
                    readFromStream(byte[]) 
                    throws java.io.IOException;
    
                    private 
                    final int 
                    readFromStream(byte[], int, int) 
                    throws java.io.IOException;
    
                    public String 
                    getContentId();
    
                    public DimeTypeNameFormat 
                    getDimeTypeNameFormat();
    
                    public String 
                    getType();
    
                    public 
                    synchronized int 
                    read(byte[], int, int) 
                    throws java.io.IOException;
    
                    protected int 
                    _read(byte[], int, int) 
                    throws java.io.IOException;
    void 
                    readHeader(boolean) 
                    throws java.io.IOException;
    
                    public int 
                    read(byte[]) 
                    throws java.io.IOException;
    
                    public int 
                    read() 
                    throws java.io.IOException;
    
                    public void 
                    close() 
                    throws java.io.IOException;
    
                    public void 
                    mark(int);
    
                    public void 
                    reset() 
                    throws java.io.IOException;
    
                    public boolean 
                    markSupported();
    
                    public 
                    synchronized int 
                    available() 
                    throws java.io.IOException;
    
                    protected void 
                    finalClose() 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/attachments/DimeMultiPart.class

                    package org.apache.axis.attachments;

                    public 
                    final 
                    synchronized 
                    class DimeMultiPart {
    
                    static 
                    final long 
                    transSize = 2147483647;
    
                    static 
                    final byte 
                    CURRENT_VERSION = 1;
    
                    protected java.util.Vector 
                    parts;
    
                    public void DimeMultiPart();
    
                    public void 
                    addBodyPart(DimeBodyPart);
    
                    public void 
                    write(java.io.OutputStream) 
                    throws java.io.IOException;
    
                    public long 
                    getTransmissionSize();
}

                

org/apache/axis/attachments/DimeTypeNameFormat.class

                    package org.apache.axis.attachments;

                    public 
                    final 
                    synchronized 
                    class DimeTypeNameFormat {
    
                    private byte 
                    format;
    
                    static 
                    final byte 
                    NOCHANGE_VALUE = 0;
    
                    static 
                    final byte 
                    MIME_VALUE = 1;
    
                    static 
                    final byte 
                    URI_VALUE = 2;
    
                    static 
                    final byte 
                    UNKNOWN_VALUE = 3;
    
                    static 
                    final byte 
                    NODATA_VALUE = 4;
    
                    static 
                    final DimeTypeNameFormat 
                    NOCHANGE;
    
                    public 
                    static 
                    final DimeTypeNameFormat 
                    MIME;
    
                    public 
                    static 
                    final DimeTypeNameFormat 
                    URI;
    
                    public 
                    static 
                    final DimeTypeNameFormat 
                    UNKNOWN;
    
                    static 
                    final DimeTypeNameFormat 
                    NODATA;
    
                    private 
                    static String[] 
                    toEnglish;
    
                    private 
                    static DimeTypeNameFormat[] 
                    fromByte;
    
                    private void DimeTypeNameFormat();
    
                    private void DimeTypeNameFormat(byte);
    
                    public 
                    final String 
                    toString();
    
                    public 
                    final byte 
                    toByte();
    
                    public int 
                    hashCode();
    
                    public 
                    final boolean 
                    equals(Object);
    
                    public 
                    static DimeTypeNameFormat 
                    parseByte(byte);
    
                    public 
                    static DimeTypeNameFormat 
                    parseByte(Byte);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/attachments/DynamicContentDataHandler.class

                    package org.apache.axis.attachments;

                    public 
                    synchronized 
                    class DynamicContentDataHandler 
                    extends javax.activation.DataHandler {
    int 
                    chunkSize;
    
                    public void DynamicContentDataHandler(javax.activation.DataSource);
    
                    public void DynamicContentDataHandler(Object, String);
    
                    public void DynamicContentDataHandler(java.net.URL);
    
                    public int 
                    getChunkSize();
    
                    public void 
                    setChunkSize(int);
}

                

org/apache/axis/attachments/ImageDataSource.class

                    package org.apache.axis.attachments;

                    public 
                    synchronized 
                    class ImageDataSource 
                    implements javax.activation.DataSource {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public 
                    static 
                    final String 
                    CONTENT_TYPE = image/jpeg;
    
                    private 
                    final String 
                    name;
    
                    private 
                    final String 
                    contentType;
    
                    private byte[] 
                    data;
    
                    private java.io.ByteArrayOutputStream 
                    os;
    
                    public void ImageDataSource(String, java.awt.Image);
    
                    public void ImageDataSource(String, String, java.awt.Image);
    
                    public String 
                    getName();
    
                    public String 
                    getContentType();
    
                    public java.io.InputStream 
                    getInputStream() 
                    throws java.io.IOException;
    
                    public java.io.OutputStream 
                    getOutputStream() 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/attachments/IncomingAttachmentStreams$IncomingAttachmentInputStream.class

                    package org.apache.axis.attachments;

                    public 
                    final 
                    synchronized 
                    class IncomingAttachmentStreams$IncomingAttachmentInputStream 
                    extends java.io.InputStream {
    
                    private java.util.HashMap 
                    _headers;
    
                    private java.io.InputStream 
                    _stream;
    
                    public void IncomingAttachmentStreams$IncomingAttachmentInputStream(IncomingAttachmentStreams, java.io.InputStream);
    
                    public java.util.Map 
                    getHeaders();
    
                    public void 
                    addHeader(String, String);
    
                    public String 
                    getHeader(String);
    
                    public String 
                    getContentId();
    
                    public String 
                    getContentLocation();
    
                    public String 
                    getContentType();
    
                    public boolean 
                    markSupported();
    
                    public void 
                    reset() 
                    throws java.io.IOException;
    
                    public void 
                    mark(int);
    
                    public int 
                    read() 
                    throws java.io.IOException;
    
                    public int 
                    read(byte[]) 
                    throws java.io.IOException;
    
                    public int 
                    read(byte[], int, int) 
                    throws java.io.IOException;
}

                

org/apache/axis/attachments/IncomingAttachmentStreams.class

                    package org.apache.axis.attachments;

                    public 
                    abstract 
                    synchronized 
                    class IncomingAttachmentStreams {
    
                    private boolean 
                    _readyToGetNextStream;
    
                    public void IncomingAttachmentStreams();
    
                    public 
                    abstract IncomingAttachmentStreams$IncomingAttachmentInputStream 
                    getNextStream() 
                    throws org.apache.axis.AxisFault;
    
                    public 
                    final boolean 
                    isReadyToGetNextStream();
    
                    protected 
                    final void 
                    setReadyToGetNextStream(boolean);
}

                

org/apache/axis/attachments/ManagedMemoryDataSource$Instream.class

                    package org.apache.axis.attachments;

                    synchronized 
                    class ManagedMemoryDataSource$Instream 
                    extends java.io.InputStream {
    
                    protected long 
                    bread;
    java.io.FileInputStream 
                    fin;
    int 
                    currentIndex;
    byte[] 
                    currentBuf;
    int 
                    currentBufPos;
    boolean 
                    readClosed;
    
                    protected void ManagedMemoryDataSource$Instream(ManagedMemoryDataSource) 
                    throws java.io.IOException;
    
                    public int 
                    available() 
                    throws java.io.IOException;
    
                    public int 
                    read() 
                    throws java.io.IOException;
    
                    public boolean 
                    markSupported();
    
                    public void 
                    mark(int);
    
                    public void 
                    reset() 
                    throws java.io.IOException;
    
                    public long 
                    skip(long) 
                    throws java.io.IOException;
    
                    public int 
                    read(byte[], int, int) 
                    throws java.io.IOException;
    
                    public 
                    synchronized void 
                    close() 
                    throws java.io.IOException;
    
                    protected void 
                    finalize() 
                    throws Throwable;
}

                

org/apache/axis/attachments/ManagedMemoryDataSource.class

                    package org.apache.axis.attachments;

                    public 
                    synchronized 
                    class ManagedMemoryDataSource 
                    implements javax.activation.DataSource {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    protected String 
                    contentType;
    java.io.InputStream 
                    ss;
    
                    public 
                    static 
                    final int 
                    MIN_MEMORY_DISK_CACHED = -1;
    
                    public 
                    static 
                    final int 
                    MAX_MEMORY_DISK_CACHED = 16384;
    
                    protected int 
                    maxCached;
    
                    protected java.io.File 
                    diskCacheFile;
    
                    protected java.util.WeakHashMap 
                    readers;
    
                    protected boolean 
                    deleted;
    
                    public 
                    static 
                    final int 
                    READ_CHUNK_SZ = 32768;
    
                    protected boolean 
                    debugEnabled;
    
                    protected java.util.LinkedList 
                    memorybuflist;
    
                    protected byte[] 
                    currentMemoryBuf;
    
                    protected int 
                    currentMemoryBufSz;
    
                    protected long 
                    totalsz;
    
                    protected java.io.BufferedOutputStream 
                    cachediskstream;
    
                    protected boolean 
                    closed;
    
                    protected 
                    static org.apache.commons.logging.Log 
                    is_log;
    
                    protected void ManagedMemoryDataSource();
    
                    public void ManagedMemoryDataSource(java.io.InputStream, int, String) 
                    throws java.io.IOException;
    
                    public void ManagedMemoryDataSource(java.io.InputStream, int, String, boolean) 
                    throws java.io.IOException;
    
                    public String 
                    getContentType();
    
                    public 
                    synchronized java.io.InputStream 
                    getInputStream() 
                    throws java.io.IOException;
    
                    public String 
                    getName();
    
                    public java.io.OutputStream 
                    getOutputStream() 
                    throws java.io.IOException;
    
                    protected void 
                    write(byte[]) 
                    throws java.io.IOException;
    
                    protected 
                    synchronized void 
                    write(byte[], int) 
                    throws java.io.IOException;
    
                    protected 
                    synchronized void 
                    close() 
                    throws java.io.IOException;
    
                    protected void 
                    finalize() 
                    throws Throwable;
    
                    protected void 
                    flushToDisk() 
                    throws java.io.IOException, java.io.FileNotFoundException;
    
                    public 
                    synchronized boolean 
                    delete();
    
                    public 
                    static void 
                    main(String[]);
    
                    public java.io.File 
                    getDiskCacheFile();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/attachments/MimeMultipartDataSource.class

                    package org.apache.axis.attachments;

                    public 
                    synchronized 
                    class MimeMultipartDataSource 
                    implements javax.activation.DataSource {
    
                    public 
                    static 
                    final String 
                    CONTENT_TYPE = multipart/mixed;
    
                    private 
                    final String 
                    name;
    
                    private 
                    final String 
                    contentType;
    
                    private byte[] 
                    data;
    
                    private java.io.ByteArrayOutputStream 
                    os;
    
                    public void MimeMultipartDataSource(String, javax.mail.internet.MimeMultipart);
    
                    public String 
                    getName();
    
                    public String 
                    getContentType();
    
                    public java.io.InputStream 
                    getInputStream() 
                    throws java.io.IOException;
    
                    public java.io.OutputStream 
                    getOutputStream() 
                    throws java.io.IOException;
}

                

org/apache/axis/attachments/MimeUtils.class

                    package org.apache.axis.attachments;

                    public 
                    synchronized 
                    class MimeUtils {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public 
                    static String[] 
                    filter;
    
                    public void MimeUtils();
    
                    public 
                    static long 
                    getContentLength(javax.mail.Multipart) 
                    throws javax.mail.MessagingException, java.io.IOException;
    
                    protected 
                    static long 
                    getContentLength(javax.mail.internet.MimeBodyPart);
    
                    private 
                    static long 
                    getHeaderLength(javax.mail.internet.MimeBodyPart) 
                    throws javax.mail.MessagingException, java.io.IOException;
    
                    public 
                    static void 
                    writeToMultiPartStream(java.io.OutputStream, javax.mail.internet.MimeMultipart);
    
                    public 
                    static String 
                    getContentType(javax.mail.internet.MimeMultipart);
    
                    public 
                    static javax.mail.internet.MimeMultipart 
                    createMP(String, java.util.Collection, int) 
                    throws org.apache.axis.AxisFault;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/attachments/MultiPartDimeInputStream.class

                    package org.apache.axis.attachments;

                    public 
                    synchronized 
                    class MultiPartDimeInputStream 
                    extends MultiPartInputStream {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    protected java.util.HashMap 
                    parts;
    
                    protected java.util.LinkedList 
                    orderedParts;
    
                    protected int 
                    rootPartLength;
    
                    protected boolean 
                    closed;
    
                    protected boolean 
                    eos;
    
                    protected DimeDelimitedInputStream 
                    dimeDelimitedStream;
    
                    protected java.io.InputStream 
                    soapStream;
    
                    protected byte[] 
                    boundary;
    
                    protected java.io.ByteArrayInputStream 
                    cachedSOAPEnvelope;
    
                    protected String 
                    contentId;
    
                    protected 
                    static 
                    final String[] 
                    READ_ALL;
    
                    public void MultiPartDimeInputStream(java.io.InputStream) 
                    throws java.io.IOException;
    
                    public org.apache.axis.Part 
                    getAttachmentByReference(String[]) 
                    throws org.apache.axis.AxisFault;
    
                    protected void 
                    addPart(String, String, AttachmentPart);
    
                    protected void 
                    readAll() 
                    throws org.apache.axis.AxisFault;
    
                    public java.util.Collection 
                    getAttachments() 
                    throws org.apache.axis.AxisFault;
    
                    protected org.apache.axis.Part 
                    readTillFound(String[]) 
                    throws java.io.IOException;
    
                    public String 
                    getContentLocation();
    
                    public String 
                    getContentId();
    
                    public int 
                    read(byte[], int, int) 
                    throws java.io.IOException;
    
                    public int 
                    read(byte[]) 
                    throws java.io.IOException;
    
                    public int 
                    read() 
                    throws java.io.IOException;
    
                    public void 
                    close() 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/attachments/MultiPartInputStream.class

                    package org.apache.axis.attachments;

                    public 
                    abstract 
                    synchronized 
                    class MultiPartInputStream 
                    extends java.io.FilterInputStream {
    void MultiPartInputStream(java.io.InputStream);
    
                    public 
                    abstract org.apache.axis.Part 
                    getAttachmentByReference(String[]) 
                    throws org.apache.axis.AxisFault;
    
                    public 
                    abstract java.util.Collection 
                    getAttachments() 
                    throws org.apache.axis.AxisFault;
    
                    public 
                    abstract String 
                    getContentLocation();
    
                    public 
                    abstract String 
                    getContentId();
}

                

org/apache/axis/attachments/MultiPartRelatedInputStream.class

                    package org.apache.axis.attachments;

                    public 
                    synchronized 
                    class MultiPartRelatedInputStream 
                    extends MultiPartInputStream {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public 
                    static 
                    final String 
                    MIME_MULTIPART_RELATED = multipart/related;
    
                    protected java.util.HashMap 
                    parts;
    
                    protected java.util.LinkedList 
                    orderedParts;
    
                    protected int 
                    rootPartLength;
    
                    protected boolean 
                    closed;
    
                    protected boolean 
                    eos;
    
                    protected BoundaryDelimitedStream 
                    boundaryDelimitedStream;
    
                    protected java.io.InputStream 
                    soapStream;
    
                    protected java.io.InputStream 
                    soapStreamBDS;
    
                    protected byte[] 
                    boundary;
    
                    protected java.io.ByteArrayInputStream 
                    cachedSOAPEnvelope;
    
                    protected String 
                    contentLocation;
    
                    protected String 
                    contentId;
    
                    private 
                    static 
                    final int 
                    MAX_CACHED = 16384;
    
                    protected 
                    static 
                    final String[] 
                    READ_ALL;
    
                    public void MultiPartRelatedInputStream(String, java.io.InputStream) 
                    throws org.apache.axis.AxisFault;
    
                    private 
                    final byte[] 
                    readLine(java.io.InputStream) 
                    throws java.io.IOException;
    
                    public org.apache.axis.Part 
                    getAttachmentByReference(String[]) 
                    throws org.apache.axis.AxisFault;
    
                    protected void 
                    addPart(String, String, AttachmentPart);
    
                    protected void 
                    readAll() 
                    throws org.apache.axis.AxisFault;
    
                    public java.util.Collection 
                    getAttachments() 
                    throws org.apache.axis.AxisFault;
    
                    protected org.apache.axis.Part 
                    readTillFound(String[]) 
                    throws org.apache.axis.AxisFault;
    
                    public String 
                    getContentLocation();
    
                    public String 
                    getContentId();
    
                    public int 
                    read(byte[], int, int) 
                    throws java.io.IOException;
    
                    public int 
                    read(byte[]) 
                    throws java.io.IOException;
    
                    public int 
                    read() 
                    throws java.io.IOException;
    
                    public void 
                    close() 
                    throws java.io.IOException;
    
                    public int 
                    available() 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/attachments/MultipartAttachmentStreams.class

                    package org.apache.axis.attachments;

                    public 
                    final 
                    synchronized 
                    class MultipartAttachmentStreams 
                    extends IncomingAttachmentStreams {
    
                    private BoundaryDelimitedStream 
                    _delimitedStream;
    
                    private java.util.Iterator 
                    _attachmentParts;
    
                    public void MultipartAttachmentStreams(BoundaryDelimitedStream) 
                    throws org.apache.axis.AxisFault;
    
                    public void MultipartAttachmentStreams(BoundaryDelimitedStream, java.util.Collection) 
                    throws org.apache.axis.AxisFault;
    
                    public void 
                    setAttachmentsPriorToSoapPart(java.util.Iterator);
    
                    public IncomingAttachmentStreams$IncomingAttachmentInputStream 
                    getNextStream() 
                    throws org.apache.axis.AxisFault;
}

                

org/apache/axis/attachments/OctetStream.class

                    package org.apache.axis.attachments;

                    public 
                    synchronized 
                    class OctetStream {
    
                    private byte[] 
                    bytes;
    
                    public void OctetStream();
    
                    public void OctetStream(byte[]);
    
                    public byte[] 
                    getBytes();
    
                    public void 
                    setBytes(byte[]);
}

                

org/apache/axis/attachments/OctetStreamDataSource.class

                    package org.apache.axis.attachments;

                    public 
                    synchronized 
                    class OctetStreamDataSource 
                    implements javax.activation.DataSource {
    
                    public 
                    static 
                    final String 
                    CONTENT_TYPE = application/octet-stream;
    
                    private 
                    final String 
                    name;
    
                    private byte[] 
                    data;
    
                    private java.io.ByteArrayOutputStream 
                    os;
    
                    public void OctetStreamDataSource(String, OctetStream);
    
                    public String 
                    getName();
    
                    public String 
                    getContentType();
    
                    public java.io.InputStream 
                    getInputStream() 
                    throws java.io.IOException;
    
                    public java.io.OutputStream 
                    getOutputStream() 
                    throws java.io.IOException;
}

                

org/apache/axis/attachments/PlainTextDataSource.class

                    package org.apache.axis.attachments;

                    public 
                    synchronized 
                    class PlainTextDataSource 
                    implements javax.activation.DataSource {
    
                    public 
                    static 
                    final String 
                    CONTENT_TYPE = text/plain;
    
                    private 
                    final String 
                    name;
    
                    private byte[] 
                    data;
    
                    private java.io.ByteArrayOutputStream 
                    os;
    
                    public void PlainTextDataSource(String, String);
    
                    public String 
                    getName();
    
                    public String 
                    getContentType();
    
                    public java.io.InputStream 
                    getInputStream() 
                    throws java.io.IOException;
    
                    public java.io.OutputStream 
                    getOutputStream() 
                    throws java.io.IOException;
}

                

org/apache/axis/attachments/SourceDataSource.class

                    package org.apache.axis.attachments;

                    public 
                    synchronized 
                    class SourceDataSource 
                    implements javax.activation.DataSource {
    
                    public 
                    static 
                    final String 
                    CONTENT_TYPE = text/xml;
    
                    private 
                    final String 
                    name;
    
                    private 
                    final String 
                    contentType;
    
                    private byte[] 
                    data;
    
                    private java.io.ByteArrayOutputStream 
                    os;
    
                    public void SourceDataSource(String, javax.xml.transform.stream.StreamSource);
    
                    public void SourceDataSource(String, String, javax.xml.transform.stream.StreamSource);
    
                    public String 
                    getName();
    
                    public String 
                    getContentType();
    
                    public java.io.InputStream 
                    getInputStream() 
                    throws java.io.IOException;
    
                    public java.io.OutputStream 
                    getOutputStream() 
                    throws java.io.IOException;
}

                

org/apache/axis/client/AdminClient.class

                    package org.apache.axis.client;

                    public 
                    synchronized 
                    class AdminClient {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private 
                    static ThreadLocal 
                    defaultConfiguration;
    
                    protected Call 
                    call;
    
                    protected 
                    static 
                    final String 
                    ROOT_UNDEPLOY;
    
                    public 
                    static void 
                    setDefaultConfiguration(org.apache.axis.EngineConfiguration);
    
                    private 
                    static String 
                    getUsageInfo();
    
                    public void AdminClient();
    
                    public void AdminClient(boolean) 
                    throws javax.xml.rpc.ServiceException;
    
                    private void 
                    initAdminClient() 
                    throws javax.xml.rpc.ServiceException;
    
                    public Call 
                    getCall();
    
                    public String 
                    list(org.apache.axis.utils.Options) 
                    throws Exception;
    
                    public String 
                    list() 
                    throws Exception;
    
                    public String 
                    quit(org.apache.axis.utils.Options) 
                    throws Exception;
    
                    public String 
                    quit() 
                    throws Exception;
    
                    public String 
                    undeployHandler(String) 
                    throws Exception;
    
                    public String 
                    undeployService(String) 
                    throws Exception;
    
                    public String 
                    process(String[]) 
                    throws Exception;
    
                    public void 
                    processOpts(org.apache.axis.utils.Options) 
                    throws Exception;
    
                    public void 
                    setLogin(String, String);
    
                    public void 
                    setTargetEndpointAddress(java.net.URL);
    
                    public void 
                    setTransport(String);
    
                    public String 
                    process(java.io.InputStream) 
                    throws Exception;
    
                    public String 
                    process(java.net.URL) 
                    throws Exception;
    
                    public String 
                    process(String) 
                    throws Exception;
    
                    public String 
                    process(org.apache.axis.utils.Options, String) 
                    throws Exception;
    
                    public String 
                    process(org.apache.axis.utils.Options, java.io.InputStream) 
                    throws Exception;
    
                    public 
                    static void 
                    main(String[]);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/client/AxisClient.class

                    package org.apache.axis.client;

                    public 
                    synchronized 
                    class AxisClient 
                    extends org.apache.axis.AxisEngine {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    org.apache.axis.handlers.soap.MustUnderstandChecker 
                    checker;
    
                    public void AxisClient(org.apache.axis.EngineConfiguration);
    
                    public void AxisClient();
    
                    public org.apache.axis.AxisEngine 
                    getClientEngine();
    
                    public void 
                    invoke(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    protected javax.xml.rpc.handler.HandlerChain 
                    getJAXRPChandlerChain(org.apache.axis.MessageContext);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/client/AxisClientProxy.class

                    package org.apache.axis.client;

                    public 
                    synchronized 
                    class AxisClientProxy 
                    implements reflect.InvocationHandler {
    
                    private Call 
                    call;
    
                    private javax.xml.namespace.QName 
                    portName;
    void AxisClientProxy(Call, javax.xml.namespace.QName);
    
                    private Object[] 
                    proxyParams2CallParams(Object[]) 
                    throws org.apache.axis.utils.JavaUtils$HolderException;
    
                    private void 
                    callOutputParams2proxyParams(Object[]) 
                    throws org.apache.axis.utils.JavaUtils$HolderException;
    
                    public Object 
                    invoke(Object, reflect.Method, Object[]) 
                    throws Throwable;
    
                    public Call 
                    getCall();
}

                

org/apache/axis/client/Call$1.class

                    package org.apache.axis.client;

                    synchronized 
                    class Call$1 
                    implements java.security.PrivilegedAction {
    void Call$1(String);
    
                    public Object 
                    run();
}

                

org/apache/axis/client/Call$2.class

                    package org.apache.axis.client;

                    synchronized 
                    class Call$2 
                    implements Runnable {
    void Call$2(Call, org.apache.axis.MessageContext);
    
                    public void 
                    run();
}

                

org/apache/axis/client/Call.class

                    package org.apache.axis.client;

                    public 
                    synchronized 
                    class Call 
                    implements javax.xml.rpc.Call {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private 
                    static org.apache.commons.logging.Log 
                    tlog;
    
                    protected 
                    static org.apache.commons.logging.Log 
                    entLog;
    
                    private boolean 
                    parmAndRetReq;
    
                    private Service 
                    service;
    
                    private javax.xml.namespace.QName 
                    portName;
    
                    private javax.xml.namespace.QName 
                    portTypeName;
    
                    private javax.xml.namespace.QName 
                    operationName;
    
                    private org.apache.axis.MessageContext 
                    msgContext;
    
                    private org.apache.axis.utils.LockableHashtable 
                    myProperties;
    
                    private String 
                    username;
    
                    private String 
                    password;
    
                    private boolean 
                    maintainSession;
    
                    private boolean 
                    useSOAPAction;
    
                    private String 
                    SOAPActionURI;
    
                    private Integer 
                    timeout;
    
                    private boolean 
                    useStreaming;
    
                    private org.apache.axis.description.OperationDesc 
                    operation;
    
                    private boolean 
                    operationSetManually;
    
                    private boolean 
                    invokeOneWay;
    
                    private boolean 
                    isMsg;
    
                    private Transport 
                    transport;
    
                    private String 
                    transportName;
    
                    private java.util.HashMap 
                    outParams;
    
                    private java.util.ArrayList 
                    outParamsList;
    
                    private java.util.Vector 
                    myHeaders;
    
                    public 
                    static 
                    final String 
                    SEND_TYPE_ATTR = sendXsiTypes;
    
                    public 
                    static 
                    final String 
                    TRANSPORT_NAME = transport_name;
    
                    public 
                    static 
                    final String 
                    CHARACTER_SET_ENCODING = javax.xml.soap.character-set-encoding;
    
                    public 
                    static 
                    final String 
                    TRANSPORT_PROPERTY = java.protocol.handler.pkgs;
    
                    public 
                    static 
                    final String 
                    WSDL_SERVICE = wsdl.service;
    
                    public 
                    static 
                    final String 
                    WSDL_PORT_NAME = wsdl.portName;
    
                    public 
                    static 
                    final String 
                    JAXRPC_SERVICE = wsdl.service;
    
                    public 
                    static 
                    final String 
                    JAXRPC_PORTTYPE_NAME = wsdl.portName;
    
                    public 
                    static 
                    final String 
                    FAULT_ON_NO_RESPONSE = call.FaultOnNoResponse;
    
                    public 
                    static 
                    final String 
                    CHECK_MUST_UNDERSTAND = call.CheckMustUnderstand;
    
                    public 
                    static 
                    final String 
                    ATTACHMENT_ENCAPSULATION_FORMAT = attachment_encapsulation_format;
    
                    public 
                    static 
                    final String 
                    ATTACHMENT_ENCAPSULATION_FORMAT_MIME = axis.attachment.style.mime;
    
                    public 
                    static 
                    final String 
                    ATTACHMENT_ENCAPSULATION_FORMAT_DIME = axis.attachment.style.dime;
    
                    public 
                    static 
                    final String 
                    ATTACHMENT_ENCAPSULATION_FORMAT_MTOM = axis.attachment.style.mtom;
    
                    public 
                    static 
                    final String 
                    CONNECTION_TIMEOUT_PROPERTY = axis.connection.timeout;
    
                    public 
                    static 
                    final String 
                    STREAMING_PROPERTY = axis.streaming;
    
                    protected 
                    static 
                    final String 
                    ONE_WAY = axis.one.way;
    
                    private 
                    static java.util.Hashtable 
                    transports;
    
                    static javax.xml.rpc.ParameterMode[] 
                    modes;
    
                    private boolean 
                    encodingStyleExplicitlySet;
    
                    private boolean 
                    useExplicitlySet;
    
                    private org.apache.axis.handlers.soap.SOAPService 
                    myService;
    
                    protected java.util.Vector 
                    attachmentParts;
    
                    private boolean 
                    isNeverInvoked;
    
                    private 
                    static java.util.ArrayList 
                    propertyNames;
    
                    private 
                    static java.util.ArrayList 
                    transportPackages;
    
                    public void Call(Service);
    
                    public void Call(String) 
                    throws java.net.MalformedURLException;
    
                    public void Call(java.net.URL);
    
                    public void 
                    setProperty(String, Object);
    
                    private void 
                    verifyStringProperty(String, Object);
    
                    private void 
                    verifyBooleanProperty(String, Object);
    
                    private void 
                    verifyIntegerProperty(String, Object);
    
                    public Object 
                    getProperty(String);
    
                    public void 
                    removeProperty(String);
    
                    public java.util.Iterator 
                    getPropertyNames();
    
                    public boolean 
                    isPropertySupported(String);
    
                    public void 
                    setUsername(String);
    
                    public String 
                    getUsername();
    
                    public void 
                    setPassword(String);
    
                    public String 
                    getPassword();
    
                    public void 
                    setMaintainSession(boolean);
    
                    public boolean 
                    getMaintainSession();
    
                    public void 
                    setOperationStyle(String);
    
                    public void 
                    setOperationStyle(org.apache.axis.constants.Style);
    
                    public org.apache.axis.constants.Style 
                    getOperationStyle();
    
                    public void 
                    setOperationUse(String);
    
                    public void 
                    setOperationUse(org.apache.axis.constants.Use);
    
                    public org.apache.axis.constants.Use 
                    getOperationUse();
    
                    public void 
                    setUseSOAPAction(boolean);
    
                    public boolean 
                    useSOAPAction();
    
                    public void 
                    setSOAPActionURI(String);
    
                    public String 
                    getSOAPActionURI();
    
                    public void 
                    setEncodingStyle(String);
    
                    public String 
                    getEncodingStyle();
    
                    public void 
                    setTargetEndpointAddress(String);
    
                    public void 
                    setTargetEndpointAddress(java.net.URL);
    
                    public String 
                    getTargetEndpointAddress();
    
                    public Integer 
                    getTimeout();
    
                    public void 
                    setTimeout(Integer);
    
                    public boolean 
                    getStreaming();
    
                    public void 
                    setStreaming(boolean);
    
                    public boolean 
                    isParameterAndReturnSpecRequired(javax.xml.namespace.QName);
    
                    public void 
                    addParameter(javax.xml.namespace.QName, javax.xml.namespace.QName, javax.xml.rpc.ParameterMode);
    
                    public void 
                    addParameter(javax.xml.namespace.QName, javax.xml.namespace.QName, Class, javax.xml.rpc.ParameterMode);
    
                    public void 
                    addParameter(String, javax.xml.namespace.QName, javax.xml.rpc.ParameterMode);
    
                    public void 
                    addParameter(String, javax.xml.namespace.QName, Class, javax.xml.rpc.ParameterMode);
    
                    public void 
                    addParameterAsHeader(javax.xml.namespace.QName, javax.xml.namespace.QName, javax.xml.rpc.ParameterMode, javax.xml.rpc.ParameterMode);
    
                    public void 
                    addParameterAsHeader(javax.xml.namespace.QName, javax.xml.namespace.QName, Class, javax.xml.rpc.ParameterMode, javax.xml.rpc.ParameterMode);
    
                    public javax.xml.namespace.QName 
                    getParameterTypeByName(String);
    
                    public javax.xml.namespace.QName 
                    getParameterTypeByQName(javax.xml.namespace.QName);
    
                    public void 
                    setReturnType(javax.xml.namespace.QName);
    
                    public void 
                    setReturnType(javax.xml.namespace.QName, Class);
    
                    public void 
                    setReturnTypeAsHeader(javax.xml.namespace.QName);
    
                    public void 
                    setReturnTypeAsHeader(javax.xml.namespace.QName, Class);
    
                    public javax.xml.namespace.QName 
                    getReturnType();
    
                    public void 
                    setReturnQName(javax.xml.namespace.QName);
    
                    public void 
                    setReturnClass(Class);
    
                    public void 
                    removeAllParameters();
    
                    public javax.xml.namespace.QName 
                    getOperationName();
    
                    public void 
                    setOperationName(javax.xml.namespace.QName);
    
                    public void 
                    setOperationName(String);
    
                    public void 
                    setOperation(String);
    
                    public void 
                    setOperation(javax.xml.namespace.QName, String);
    
                    public void 
                    setOperation(javax.xml.namespace.QName, javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getPortName();
    
                    public void 
                    setPortName(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getPortTypeName();
    
                    public void 
                    setPortTypeName(javax.xml.namespace.QName);
    
                    public void 
                    setSOAPVersion(org.apache.axis.soap.SOAPConstants);
    
                    public Object 
                    invoke(javax.xml.namespace.QName, Object[]) 
                    throws java.rmi.RemoteException;
    
                    public Object 
                    invoke(Object[]) 
                    throws java.rmi.RemoteException;
    
                    public void 
                    invokeOneWay(Object[]);
    
                    public org.apache.axis.message.SOAPEnvelope 
                    invoke(org.apache.axis.Message) 
                    throws org.apache.axis.AxisFault;
    
                    public org.apache.axis.message.SOAPEnvelope 
                    invoke(org.apache.axis.message.SOAPEnvelope) 
                    throws org.apache.axis.AxisFault;
    
                    public 
                    static void 
                    setTransportForProtocol(String, Class);
    
                    public 
                    static 
                    synchronized void 
                    initialize();
    
                    public 
                    static 
                    synchronized void 
                    addTransportPackage(String);
    
                    private Object[] 
                    getParamList(Object[]);
    
                    public void 
                    setTransport(Transport);
    
                    public Transport 
                    getTransportForProtocol(String);
    
                    public void 
                    setRequestMessage(org.apache.axis.Message);
    
                    public org.apache.axis.Message 
                    getResponseMessage();
    
                    public org.apache.axis.MessageContext 
                    getMessageContext();
    
                    public void 
                    addHeader(org.apache.axis.message.SOAPHeaderElement);
    
                    public void 
                    clearHeaders();
    
                    public org.apache.axis.encoding.TypeMapping 
                    getTypeMapping();
    
                    public void 
                    registerTypeMapping(Class, javax.xml.namespace.QName, org.apache.axis.encoding.SerializerFactory, org.apache.axis.encoding.DeserializerFactory);
    
                    public void 
                    registerTypeMapping(Class, javax.xml.namespace.QName, org.apache.axis.encoding.SerializerFactory, org.apache.axis.encoding.DeserializerFactory, boolean);
    
                    public void 
                    registerTypeMapping(Class, javax.xml.namespace.QName, Class, Class);
    
                    public void 
                    registerTypeMapping(Class, javax.xml.namespace.QName, Class, Class, boolean);
    
                    public Object 
                    invoke(String, String, Object[]) 
                    throws org.apache.axis.AxisFault;
    
                    public Object 
                    invoke(String, Object[]) 
                    throws org.apache.axis.AxisFault;
    
                    public Object 
                    invoke(org.apache.axis.message.RPCElement) 
                    throws org.apache.axis.AxisFault;
    
                    private Class 
                    getJavaTypeForQName(javax.xml.namespace.QName);
    
                    public void 
                    setOption(String, Object);
    
                    public void 
                    invoke() 
                    throws org.apache.axis.AxisFault;
    
                    private void 
                    invokeEngine(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    private void 
                    invokeEngineOneWay(org.apache.axis.MessageContext);
    
                    public java.util.Map 
                    getOutputParams();
    
                    public java.util.List 
                    getOutputValues();
    
                    public Service 
                    getService();
    
                    public void 
                    setSOAPService(org.apache.axis.handlers.soap.SOAPService);
    
                    public void 
                    setClientHandlers(org.apache.axis.Handler, org.apache.axis.Handler);
    
                    public void 
                    addAttachmentPart(Object);
    
                    public void 
                    addFault(javax.xml.namespace.QName, Class, javax.xml.namespace.QName, boolean);
    
                    public void 
                    setOperation(org.apache.axis.description.OperationDesc);
    
                    public org.apache.axis.description.OperationDesc 
                    getOperation();
    
                    public void 
                    clearOperation();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/client/HappyClient.class

                    package org.apache.axis.client;

                    public 
                    synchronized 
                    class HappyClient {
    java.io.PrintStream 
                    out;
    
                    public void HappyClient(java.io.PrintStream);
    Class 
                    classExists(String);
    boolean 
                    resourceExists(String);
    int 
                    probeClass(String, String, String, String, String, String) 
                    throws java.io.IOException;
    String 
                    getLocation(Class);
    int 
                    needClass(String, String, String, String, String) 
                    throws java.io.IOException;
    int 
                    wantClass(String, String, String, String, String) 
                    throws java.io.IOException;
    int 
                    wantResource(String, String) 
                    throws Exception;
    
                    private String 
                    getParserName();
    
                    private javax.xml.parsers.SAXParser 
                    getSAXParser();
    
                    private String 
                    getParserLocation();
    
                    public int 
                    getJavaVersionNumber();
    
                    private void 
                    title(String);
    
                    public boolean 
                    verifyClientIsHappy(boolean) 
                    throws java.io.IOException;
    
                    public 
                    static void 
                    main(String[]);
    
                    private 
                    static boolean 
                    isClientHappy(String[]);
}

                

org/apache/axis/client/Service$HandlerRegistryImpl.class

                    package org.apache.axis.client;

                    public 
                    synchronized 
                    class Service$HandlerRegistryImpl 
                    implements javax.xml.rpc.handler.HandlerRegistry {
    java.util.Map 
                    map;
    
                    protected void Service$HandlerRegistryImpl();
    
                    public java.util.List 
                    getHandlerChain(javax.xml.namespace.QName);
    
                    public void 
                    setHandlerChain(javax.xml.namespace.QName, java.util.List);
}

                

org/apache/axis/client/Service.class

                    package org.apache.axis.client;

                    public 
                    synchronized 
                    class Service 
                    implements javax.xml.rpc.Service, java.io.Serializable, javax.naming.Referenceable {
    
                    private 
                    transient org.apache.axis.AxisEngine 
                    engine;
    
                    private 
                    transient org.apache.axis.EngineConfiguration 
                    config;
    
                    private javax.xml.namespace.QName 
                    serviceName;
    
                    private String 
                    wsdlLocation;
    
                    private javax.wsdl.Service 
                    wsdlService;
    
                    private boolean 
                    maintainSession;
    
                    private Service$HandlerRegistryImpl 
                    registry;
    
                    private org.apache.axis.wsdl.gen.Parser 
                    wsdlParser;
    
                    private 
                    static java.util.Map 
                    cachedWSDL;
    
                    private 
                    static boolean 
                    cachingWSDL;
    
                    protected Call 
                    _call;
    
                    private java.util.Hashtable 
                    transportImpls;
    
                    protected javax.wsdl.Service 
                    getWSDLService();
    
                    public org.apache.axis.wsdl.gen.Parser 
                    getWSDLParser();
    
                    protected AxisClient 
                    getAxisClient();
    
                    public void Service();
    
                    public void Service(javax.xml.namespace.QName);
    
                    public void Service(org.apache.axis.EngineConfiguration, AxisClient);
    
                    public void Service(org.apache.axis.EngineConfiguration);
    
                    public void Service(java.net.URL, javax.xml.namespace.QName) 
                    throws javax.xml.rpc.ServiceException;
    
                    public void Service(org.apache.axis.wsdl.gen.Parser, javax.xml.namespace.QName) 
                    throws javax.xml.rpc.ServiceException;
    
                    public void Service(String, javax.xml.namespace.QName) 
                    throws javax.xml.rpc.ServiceException;
    
                    public void Service(java.io.InputStream, javax.xml.namespace.QName) 
                    throws javax.xml.rpc.ServiceException;
    
                    private void 
                    initService(String, javax.xml.namespace.QName) 
                    throws javax.xml.rpc.ServiceException;
    
                    private void 
                    initService(String, org.w3c.dom.Document, javax.xml.namespace.QName) 
                    throws javax.xml.rpc.ServiceException;
    
                    private void 
                    initService(org.apache.axis.wsdl.gen.Parser, javax.xml.namespace.QName) 
                    throws javax.xml.rpc.ServiceException;
    
                    public java.rmi.Remote 
                    getPort(javax.xml.namespace.QName, Class) 
                    throws javax.xml.rpc.ServiceException;
    
                    private java.rmi.Remote 
                    getGeneratedStub(javax.xml.namespace.QName, Class);
    
                    public java.rmi.Remote 
                    getPort(Class) 
                    throws javax.xml.rpc.ServiceException;
    
                    public java.rmi.Remote 
                    getPort(String, Class) 
                    throws javax.xml.rpc.ServiceException;
    
                    private java.rmi.Remote 
                    getPort(String, javax.xml.namespace.QName, Class) 
                    throws javax.xml.rpc.ServiceException;
    
                    public javax.xml.rpc.Call 
                    createCall(javax.xml.namespace.QName) 
                    throws javax.xml.rpc.ServiceException;
    
                    public javax.xml.rpc.Call 
                    createCall(javax.xml.namespace.QName, String) 
                    throws javax.xml.rpc.ServiceException;
    
                    public javax.xml.rpc.Call 
                    createCall(javax.xml.namespace.QName, javax.xml.namespace.QName) 
                    throws javax.xml.rpc.ServiceException;
    
                    public javax.xml.rpc.Call 
                    createCall() 
                    throws javax.xml.rpc.ServiceException;
    
                    public javax.xml.rpc.Call[] 
                    getCalls(javax.xml.namespace.QName) 
                    throws javax.xml.rpc.ServiceException;
    
                    public javax.xml.rpc.handler.HandlerRegistry 
                    getHandlerRegistry();
    
                    public java.net.URL 
                    getWSDLDocumentLocation();
    
                    public javax.xml.namespace.QName 
                    getServiceName();
    
                    public java.util.Iterator 
                    getPorts() 
                    throws javax.xml.rpc.ServiceException;
    
                    public void 
                    setTypeMappingRegistry(javax.xml.rpc.encoding.TypeMappingRegistry) 
                    throws javax.xml.rpc.ServiceException;
    
                    public javax.xml.rpc.encoding.TypeMappingRegistry 
                    getTypeMappingRegistry();
    
                    public javax.naming.Reference 
                    getReference();
    
                    public void 
                    setEngine(org.apache.axis.AxisEngine);
    
                    public org.apache.axis.AxisEngine 
                    getEngine();
    
                    public void 
                    setEngineConfiguration(org.apache.axis.EngineConfiguration);
    
                    protected org.apache.axis.EngineConfiguration 
                    getEngineConfiguration();
    
                    public void 
                    setMaintainSession(boolean);
    
                    public boolean 
                    getMaintainSession();
    
                    public Call 
                    getCall() 
                    throws javax.xml.rpc.ServiceException;
    
                    public boolean 
                    getCacheWSDL();
    
                    public void 
                    setCacheWSDL(boolean);
    void 
                    registerTransportForURL(java.net.URL, Transport);
    Transport 
                    getTransportForURL(java.net.URL);
    
                    public void 
                    setTypeMappingVersion(String);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/client/ServiceFactory.class

                    package org.apache.axis.client;

                    public 
                    synchronized 
                    class ServiceFactory 
                    extends javax.xml.rpc.ServiceFactory 
                    implements javax.naming.spi.ObjectFactory {
    
                    public 
                    static 
                    final String 
                    SERVICE_CLASSNAME = service classname;
    
                    public 
                    static 
                    final String 
                    WSDL_LOCATION = WSDL location;
    
                    public 
                    static 
                    final String 
                    MAINTAIN_SESSION = maintain session;
    
                    public 
                    static 
                    final String 
                    SERVICE_NAMESPACE = service namespace;
    
                    public 
                    static 
                    final String 
                    SERVICE_LOCAL_PART = service local part;
    
                    public 
                    static 
                    final String 
                    SERVICE_IMPLEMENTATION_NAME_PROPERTY = serviceImplementationName;
    
                    private 
                    static 
                    final String 
                    SERVICE_IMPLEMENTATION_SUFFIX = Locator;
    
                    private 
                    static org.apache.axis.EngineConfiguration 
                    _defaultEngineConfig;
    
                    private 
                    static ThreadLocal 
                    threadDefaultConfig;
    
                    public void ServiceFactory();
    
                    public 
                    static void 
                    setThreadDefaultConfig(org.apache.axis.EngineConfiguration);
    
                    private 
                    static org.apache.axis.EngineConfiguration 
                    getDefaultEngineConfig();
    
                    public 
                    static Service 
                    getService(java.util.Map);
    
                    public Object 
                    getObjectInstance(Object, javax.naming.Name, javax.naming.Context, java.util.Hashtable) 
                    throws Exception;
    
                    public javax.xml.rpc.Service 
                    createService(java.net.URL, javax.xml.namespace.QName) 
                    throws javax.xml.rpc.ServiceException;
    
                    public javax.xml.rpc.Service 
                    createService(javax.xml.namespace.QName) 
                    throws javax.xml.rpc.ServiceException;
    
                    public javax.xml.rpc.Service 
                    loadService(Class) 
                    throws javax.xml.rpc.ServiceException;
    
                    public javax.xml.rpc.Service 
                    loadService(java.net.URL, Class, java.util.Properties) 
                    throws javax.xml.rpc.ServiceException;
    
                    public javax.xml.rpc.Service 
                    loadService(java.net.URL, javax.xml.namespace.QName, java.util.Properties) 
                    throws javax.xml.rpc.ServiceException;
    
                    private Service 
                    createService(String) 
                    throws javax.xml.rpc.ServiceException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/client/Stub.class

                    package org.apache.axis.client;

                    public 
                    abstract 
                    synchronized 
                    class Stub 
                    implements javax.xml.rpc.Stub {
    
                    protected javax.xml.rpc.Service 
                    service;
    
                    protected boolean 
                    maintainSessionSet;
    
                    protected boolean 
                    maintainSession;
    
                    protected java.util.Properties 
                    cachedProperties;
    
                    protected String 
                    cachedUsername;
    
                    protected String 
                    cachedPassword;
    
                    protected java.net.URL 
                    cachedEndpoint;
    
                    protected Integer 
                    cachedTimeout;
    
                    protected javax.xml.namespace.QName 
                    cachedPortName;
    
                    private java.util.Vector 
                    headers;
    
                    private java.util.Vector 
                    attachments;
    
                    private boolean 
                    firstCall;
    
                    protected Call 
                    _call;
    
                    public void Stub();
    
                    protected boolean 
                    firstCall();
    
                    public void 
                    _setProperty(String, Object);
    
                    public Object 
                    _getProperty(String);
    
                    public Object 
                    removeProperty(String);
    
                    public java.util.Iterator 
                    _getPropertyNames();
    
                    public void 
                    setUsername(String);
    
                    public String 
                    getUsername();
    
                    public void 
                    setPassword(String);
    
                    public String 
                    getPassword();
    
                    public int 
                    getTimeout();
    
                    public void 
                    setTimeout(int);
    
                    public javax.xml.namespace.QName 
                    getPortName();
    
                    public void 
                    setPortName(javax.xml.namespace.QName);
    
                    public void 
                    setPortName(String);
    
                    public void 
                    setMaintainSession(boolean);
    
                    public void 
                    setHeader(String, String, Object);
    
                    public void 
                    setHeader(org.apache.axis.message.SOAPHeaderElement);
    
                    public void 
                    extractAttachments(Call);
    
                    public void 
                    addAttachment(Object);
    
                    public org.apache.axis.message.SOAPHeaderElement 
                    getHeader(String, String);
    
                    public org.apache.axis.message.SOAPHeaderElement 
                    getResponseHeader(String, String);
    
                    public org.apache.axis.message.SOAPHeaderElement[] 
                    getHeaders();
    
                    public org.apache.axis.message.SOAPHeaderElement[] 
                    getResponseHeaders();
    
                    public Object[] 
                    getAttachments();
    
                    public void 
                    clearHeaders();
    
                    public void 
                    clearAttachments();
    
                    protected void 
                    setRequestHeaders(Call) 
                    throws org.apache.axis.AxisFault;
    
                    protected void 
                    setAttachments(Call) 
                    throws org.apache.axis.AxisFault;
    
                    public javax.xml.rpc.Service 
                    _getService();
    
                    public Call 
                    _createCall() 
                    throws javax.xml.rpc.ServiceException;
    
                    public Call 
                    _getCall();
    
                    protected void 
                    getResponseHeaders(Call) 
                    throws org.apache.axis.AxisFault;
}

                

org/apache/axis/client/Transport.class

                    package org.apache.axis.client;

                    public 
                    synchronized 
                    class Transport {
    
                    public String 
                    transportName;
    
                    public String 
                    url;
    
                    public void Transport();
    
                    public 
                    final void 
                    setupMessageContext(org.apache.axis.MessageContext, Call, org.apache.axis.AxisEngine) 
                    throws org.apache.axis.AxisFault;
    
                    public void 
                    setupMessageContextImpl(org.apache.axis.MessageContext, Call, org.apache.axis.AxisEngine) 
                    throws org.apache.axis.AxisFault;
    
                    public void 
                    processReturnedMessageContext(org.apache.axis.MessageContext);
    
                    public void 
                    setTransportName(String);
    
                    public String 
                    getTransportName();
    
                    public String 
                    getUrl();
    
                    public void 
                    setUrl(String);
}

                

org/apache/axis/client/async/AsyncCall.class

                    package org.apache.axis.client.async;

                    public 
                    synchronized 
                    class AsyncCall {
    
                    private org.apache.axis.client.Call 
                    call;
    
                    private IAsyncCallback 
                    callback;
    
                    public void AsyncCall(org.apache.axis.client.Call);
    
                    public void AsyncCall(org.apache.axis.client.Call, IAsyncCallback);
    
                    public IAsyncCallback 
                    getCallback();
    
                    public void 
                    setCallback(IAsyncCallback);
    
                    public IAsyncResult 
                    invoke(Object[]);
    
                    public IAsyncResult 
                    invoke(javax.xml.namespace.QName, Object[]);
    
                    public org.apache.axis.client.Call 
                    getCall();
}

                

org/apache/axis/client/async/AsyncResult.class

                    package org.apache.axis.client.async;

                    public 
                    synchronized 
                    class AsyncResult 
                    implements IAsyncResult, Runnable {
    
                    private Thread 
                    thread;
    
                    private Object 
                    response;
    
                    private Throwable 
                    exception;
    
                    private AsyncCall 
                    ac;
    
                    private javax.xml.namespace.QName 
                    opName;
    
                    private Object[] 
                    params;
    
                    private Status 
                    status;
    
                    public void AsyncResult(AsyncCall, javax.xml.namespace.QName, Object[]);
    
                    public void 
                    abort();
    
                    public Status 
                    getStatus();
    
                    public void 
                    waitFor(long) 
                    throws InterruptedException;
    
                    public Object 
                    getResponse();
    
                    public Throwable 
                    getException();
    
                    public void 
                    run();
}

                

org/apache/axis/client/async/IAsyncCallback.class

                    package org.apache.axis.client.async;

                    public 
                    abstract 
                    interface IAsyncCallback {
    
                    public 
                    abstract void 
                    onCompletion(IAsyncResult);
}

                

org/apache/axis/client/async/IAsyncResult.class

                    package org.apache.axis.client.async;

                    public 
                    abstract 
                    interface IAsyncResult {
    
                    public 
                    abstract void 
                    abort();
    
                    public 
                    abstract Status 
                    getStatus();
    
                    public 
                    abstract void 
                    waitFor(long) 
                    throws InterruptedException;
    
                    public 
                    abstract Object 
                    getResponse();
    
                    public 
                    abstract Throwable 
                    getException();
}

                

org/apache/axis/client/async/Status$1.class

                    package org.apache.axis.client.async;

                    synchronized 
                    class Status$1 {
}

                

org/apache/axis/client/async/Status$Type.class

                    package org.apache.axis.client.async;

                    public 
                    synchronized 
                    class Status$Type 
                    extends org.apache.axis.constants.Enum$Type {
    
                    private void Status$Type();
    
                    public 
                    final Status 
                    getStatus(int);
    
                    public 
                    final Status 
                    getStatus(String);
    
                    public 
                    final Status 
                    getStatus(String, Status);
}

                

org/apache/axis/client/async/Status.class

                    package org.apache.axis.client.async;

                    public 
                    synchronized 
                    class Status 
                    extends org.apache.axis.constants.Enum {
    
                    private 
                    static 
                    final Status$Type 
                    type;
    
                    public 
                    static 
                    final String 
                    NONE_STR = none;
    
                    public 
                    static 
                    final String 
                    INTERRUPTED_STR = interrupted;
    
                    public 
                    static 
                    final String 
                    COMPLETED_STR = completed;
    
                    public 
                    static 
                    final String 
                    EXCEPTION_STR = exception;
    
                    public 
                    static 
                    final Status 
                    NONE;
    
                    public 
                    static 
                    final Status 
                    INTERRUPTED;
    
                    public 
                    static 
                    final Status 
                    COMPLETED;
    
                    public 
                    static 
                    final Status 
                    EXCEPTION;
    
                    public 
                    static 
                    final Status 
                    DEFAULT;
    
                    public 
                    static Status 
                    getDefault();
    
                    public 
                    static 
                    final Status 
                    getStatus(int);
    
                    public 
                    static 
                    final Status 
                    getStatus(String);
    
                    public 
                    static 
                    final Status 
                    getStatus(String, Status);
    
                    public 
                    static 
                    final boolean 
                    isValid(String);
    
                    public 
                    static 
                    final int 
                    size();
    
                    public 
                    static 
                    final String[] 
                    getUses();
    
                    private void Status(int, String);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/client/client-config.wsdd

org/apache/axis/collections/LRUMap.class

                    package org.apache.axis.collections;

                    public 
                    synchronized 
                    class LRUMap 
                    extends SequencedHashMap 
                    implements java.io.Externalizable {
    
                    private int 
                    maximumSize;
    
                    private 
                    static 
                    final long 
                    serialVersionUID = 2197433140769957051;
    
                    public void LRUMap();
    
                    public void LRUMap(int);
    
                    public Object 
                    get(Object);
    
                    public Object 
                    put(Object, Object);
    
                    protected void 
                    removeLRU();
    
                    protected void 
                    processRemovedLRU(Object, Object);
    
                    public void 
                    readExternal(java.io.ObjectInput) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    public void 
                    writeExternal(java.io.ObjectOutput) 
                    throws java.io.IOException;
    
                    public int 
                    getMaximumSize();
    
                    public void 
                    setMaximumSize(int);
}

                

org/apache/axis/collections/SequencedHashMap$1.class

                    package org.apache.axis.collections;

                    synchronized 
                    class SequencedHashMap$1 
                    extends java.util.AbstractSet {
    void SequencedHashMap$1(SequencedHashMap);
    
                    public java.util.Iterator 
                    iterator();
    
                    public boolean 
                    remove(Object);
    
                    public void 
                    clear();
    
                    public int 
                    size();
    
                    public boolean 
                    isEmpty();
    
                    public boolean 
                    contains(Object);
}

                

org/apache/axis/collections/SequencedHashMap$2.class

                    package org.apache.axis.collections;

                    synchronized 
                    class SequencedHashMap$2 
                    extends java.util.AbstractCollection {
    void SequencedHashMap$2(SequencedHashMap);
    
                    public java.util.Iterator 
                    iterator();
    
                    public boolean 
                    remove(Object);
    
                    public void 
                    clear();
    
                    public int 
                    size();
    
                    public boolean 
                    isEmpty();
    
                    public boolean 
                    contains(Object);
}

                

org/apache/axis/collections/SequencedHashMap$3.class

                    package org.apache.axis.collections;

                    synchronized 
                    class SequencedHashMap$3 
                    extends java.util.AbstractSet {
    void SequencedHashMap$3(SequencedHashMap);
    
                    private SequencedHashMap$Entry 
                    findEntry(Object);
    
                    public java.util.Iterator 
                    iterator();
    
                    public boolean 
                    remove(Object);
    
                    public void 
                    clear();
    
                    public int 
                    size();
    
                    public boolean 
                    isEmpty();
    
                    public boolean 
                    contains(Object);
}

                

org/apache/axis/collections/SequencedHashMap$Entry.class

                    package org.apache.axis.collections;

                    synchronized 
                    class SequencedHashMap$Entry 
                    implements java.util.Map$Entry {
    
                    private 
                    final Object 
                    key;
    
                    private Object 
                    value;
    SequencedHashMap$Entry 
                    next;
    SequencedHashMap$Entry 
                    prev;
    
                    public void SequencedHashMap$Entry(Object, Object);
    
                    public Object 
                    getKey();
    
                    public Object 
                    getValue();
    
                    public Object 
                    setValue(Object);
    
                    public int 
                    hashCode();
    
                    public boolean 
                    equals(Object);
    
                    public String 
                    toString();
}

                

org/apache/axis/collections/SequencedHashMap$OrderedIterator.class

                    package org.apache.axis.collections;

                    synchronized 
                    class SequencedHashMap$OrderedIterator 
                    implements java.util.Iterator {
    
                    private int 
                    returnType;
    
                    private SequencedHashMap$Entry 
                    pos;
    
                    private 
                    transient long 
                    expectedModCount;
    
                    public void SequencedHashMap$OrderedIterator(SequencedHashMap, int);
    
                    public boolean 
                    hasNext();
    
                    public Object 
                    next();
    
                    public void 
                    remove();
}

                

org/apache/axis/collections/SequencedHashMap.class

                    package org.apache.axis.collections;

                    public 
                    synchronized 
                    class SequencedHashMap 
                    implements java.util.Map, Cloneable, java.io.Externalizable {
    
                    private SequencedHashMap$Entry 
                    sentinel;
    
                    private java.util.HashMap 
                    entries;
    
                    private 
                    transient long 
                    modCount;
    
                    private 
                    static 
                    final int 
                    KEY = 0;
    
                    private 
                    static 
                    final int 
                    VALUE = 1;
    
                    private 
                    static 
                    final int 
                    ENTRY = 2;
    
                    private 
                    static 
                    final int 
                    REMOVED_MASK = -2147483648;
    
                    private 
                    static 
                    final long 
                    serialVersionUID = 3380552487888102930;
    
                    private 
                    static 
                    final SequencedHashMap$Entry 
                    createSentinel();
    
                    public void SequencedHashMap();
    
                    public void SequencedHashMap(int);
    
                    public void SequencedHashMap(int, float);
    
                    public void SequencedHashMap(java.util.Map);
    
                    private void 
                    removeEntry(SequencedHashMap$Entry);
    
                    private void 
                    insertEntry(SequencedHashMap$Entry);
    
                    public int 
                    size();
    
                    public boolean 
                    isEmpty();
    
                    public boolean 
                    containsKey(Object);
    
                    public boolean 
                    containsValue(Object);
    
                    public Object 
                    get(Object);
    
                    public java.util.Map$Entry 
                    getFirst();
    
                    public Object 
                    getFirstKey();
    
                    public Object 
                    getFirstValue();
    
                    public java.util.Map$Entry 
                    getLast();
    
                    public Object 
                    getLastKey();
    
                    public Object 
                    getLastValue();
    
                    public Object 
                    put(Object, Object);
    
                    public Object 
                    remove(Object);
    
                    private SequencedHashMap$Entry 
                    removeImpl(Object);
    
                    public void 
                    putAll(java.util.Map);
    
                    public void 
                    clear();
    
                    public boolean 
                    equals(Object);
    
                    public int 
                    hashCode();
    
                    public String 
                    toString();
    
                    public java.util.Set 
                    keySet();
    
                    public java.util.Collection 
                    values();
    
                    public java.util.Set 
                    entrySet();
    
                    public Object 
                    clone() 
                    throws CloneNotSupportedException;
    
                    private java.util.Map$Entry 
                    getEntry(int);
    
                    public Object 
                    get(int);
    
                    public Object 
                    getValue(int);
    
                    public int 
                    indexOf(Object);
    
                    public java.util.Iterator 
                    iterator();
    
                    public int 
                    lastIndexOf(Object);
    
                    public java.util.List 
                    sequence();
    
                    public Object 
                    remove(int);
    
                    public void 
                    readExternal(java.io.ObjectInput) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    public void 
                    writeExternal(java.io.ObjectOutput) 
                    throws java.io.IOException;
}

                

org/apache/axis/components/compiler/AbstractCompiler.class

                    package org.apache.axis.components.compiler;

                    public 
                    abstract 
                    synchronized 
                    class AbstractCompiler 
                    implements Compiler {
    
                    protected java.util.ArrayList 
                    fileList;
    
                    protected String 
                    srcDir;
    
                    protected String 
                    destDir;
    
                    protected String 
                    classpath;
    
                    protected String 
                    encoding;
    
                    protected java.io.InputStream 
                    errors;
    
                    public void AbstractCompiler();
    
                    public void 
                    addFile(String);
    
                    public void 
                    setSource(String);
    
                    public void 
                    setDestination(String);
    
                    public void 
                    setClasspath(String);
    
                    public void 
                    setEncoding(String);
    
                    public java.util.List 
                    getErrors() 
                    throws java.io.IOException;
    
                    protected 
                    abstract java.util.List 
                    parseStream(java.io.BufferedReader) 
                    throws java.io.IOException;
    
                    protected java.util.List 
                    fillArguments(java.util.List);
    
                    protected String[] 
                    toStringArray(java.util.List);
}

                

org/apache/axis/components/compiler/Compiler.class

                    package org.apache.axis.components.compiler;

                    public 
                    abstract 
                    interface Compiler {
    
                    public 
                    abstract void 
                    addFile(String);
    
                    public 
                    abstract void 
                    setSource(String);
    
                    public 
                    abstract void 
                    setDestination(String);
    
                    public 
                    abstract void 
                    setClasspath(String);
    
                    public 
                    abstract void 
                    setEncoding(String);
    
                    public 
                    abstract boolean 
                    compile() 
                    throws java.io.IOException;
    
                    public 
                    abstract java.util.List 
                    getErrors() 
                    throws java.io.IOException;
}

                

org/apache/axis/components/compiler/CompilerError.class

                    package org.apache.axis.components.compiler;

                    public 
                    synchronized 
                    class CompilerError {
    
                    private boolean 
                    error;
    
                    private int 
                    startline;
    
                    private int 
                    startcolumn;
    
                    private int 
                    endline;
    
                    private int 
                    endcolumn;
    
                    private String 
                    file;
    
                    private String 
                    message;
    
                    public void CompilerError(String, boolean, int, int, int, int, String);
    
                    public void CompilerError(String);
    
                    public String 
                    getFile();
    
                    public boolean 
                    isError();
    
                    public int 
                    getStartLine();
    
                    public int 
                    getStartColumn();
    
                    public int 
                    getEndLine();
    
                    public int 
                    getEndColumn();
    
                    public String 
                    getMessage();
}

                

org/apache/axis/components/compiler/CompilerFactory.class

                    package org.apache.axis.components.compiler;

                    public 
                    synchronized 
                    class CompilerFactory {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void CompilerFactory();
    
                    public 
                    static Compiler 
                    getCompiler();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/components/compiler/Javac.class

                    package org.apache.axis.components.compiler;

                    public 
                    synchronized 
                    class Javac 
                    extends AbstractCompiler {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public 
                    static 
                    final String 
                    CLASSIC_CLASS = sun.tools.javac.Main;
    
                    public 
                    static 
                    final String 
                    MODERN_CLASS = com.sun.tools.javac.main.Main;
    
                    private boolean 
                    modern;
    
                    public void Javac();
    
                    private ClassLoader 
                    getClassLoader();
    
                    public boolean 
                    compile() 
                    throws java.io.IOException;
    
                    protected java.util.List 
                    parseStream(java.io.BufferedReader) 
                    throws java.io.IOException;
    
                    protected java.util.List 
                    parseModernStream(java.io.BufferedReader) 
                    throws java.io.IOException;
    
                    private CompilerError 
                    parseModernError(String);
    
                    protected java.util.List 
                    parseClassicStream(java.io.BufferedReader) 
                    throws java.io.IOException;
    
                    private CompilerError 
                    parseClassicError(String);
    
                    public String 
                    toString();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/components/compiler/Jikes$StreamPumper.class

                    package org.apache.axis.components.compiler;

                    synchronized 
                    class Jikes$StreamPumper 
                    extends Thread {
    
                    private java.io.BufferedInputStream 
                    stream;
    
                    private boolean 
                    endOfStream;
    
                    private boolean 
                    stopSignal;
    
                    private int 
                    SLEEP_TIME;
    
                    private java.io.OutputStream 
                    out;
    
                    public void Jikes$StreamPumper(Jikes, java.io.BufferedInputStream, java.io.OutputStream);
    
                    public void 
                    pumpStream() 
                    throws java.io.IOException;
    
                    public void 
                    run();
}

                

org/apache/axis/components/compiler/Jikes.class

                    package org.apache.axis.components.compiler;

                    public 
                    synchronized 
                    class Jikes 
                    extends AbstractCompiler {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    static 
                    final int 
                    OUTPUT_BUFFER_SIZE = 1024;
    
                    static 
                    final int 
                    BUFFER_SIZE = 512;
    
                    public void Jikes();
    
                    protected String[] 
                    toStringArray(java.util.List);
    
                    public boolean 
                    compile() 
                    throws java.io.IOException;
    
                    protected java.util.List 
                    parseStream(java.io.BufferedReader) 
                    throws java.io.IOException;
    
                    private CompilerError 
                    parseError(String);
    
                    public String 
                    toString();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/components/encoding/AbstractXMLEncoder.class

                    package org.apache.axis.components.encoding;

                    public 
                    abstract 
                    synchronized 
                    class AbstractXMLEncoder 
                    implements XMLEncoder {
    
                    protected 
                    static 
                    final String 
                    AMP = &amp;;
    
                    protected 
                    static 
                    final String 
                    QUOTE = &quot;;
    
                    protected 
                    static 
                    final String 
                    LESS = &lt;;
    
                    protected 
                    static 
                    final String 
                    GREATER = &gt;;
    
                    protected 
                    static 
                    final String 
                    LF = 
;
    
                    protected 
                    static 
                    final String 
                    CR = 
;
    
                    protected 
                    static 
                    final String 
                    TAB = 	;
    
                    public void AbstractXMLEncoder();
    
                    public 
                    abstract String 
                    getEncoding();
    
                    public String 
                    encode(String);
    
                    protected StringBuffer 
                    getInitialByteArray(String, int);
}

                

org/apache/axis/components/encoding/DefaultXMLEncoder.class

                    package org.apache.axis.components.encoding;

                    public 
                    synchronized 
                    class DefaultXMLEncoder 
                    extends UTF8Encoder {
    
                    private String 
                    encoding;
    
                    public void DefaultXMLEncoder(String);
    
                    public String 
                    getEncoding();
}

                

org/apache/axis/components/encoding/EncodedByteArray.class

                    package org.apache.axis.components.encoding;

                    synchronized 
                    class EncodedByteArray {
    
                    private byte[] 
                    array;
    
                    private int 
                    pointer;
    
                    private 
                    final double 
                    PADDING;
    
                    public void EncodedByteArray(byte[], int, int);
    
                    public void EncodedByteArray(int);
    
                    public void 
                    append(int);
    
                    public void 
                    append(byte[]);
    
                    public void 
                    append(byte[], int, int);
    
                    public String 
                    toString();
    
                    public String 
                    toString(String) 
                    throws java.io.UnsupportedEncodingException;
}

                

org/apache/axis/components/encoding/UTF16Encoder.class

                    package org.apache.axis.components.encoding;

                    synchronized 
                    class UTF16Encoder 
                    extends AbstractXMLEncoder {
    void UTF16Encoder();
    
                    public String 
                    getEncoding();
    
                    public void 
                    writeEncoded(java.io.Writer, String) 
                    throws java.io.IOException;
}

                

org/apache/axis/components/encoding/UTF8Encoder.class

                    package org.apache.axis.components.encoding;

                    synchronized 
                    class UTF8Encoder 
                    extends AbstractXMLEncoder {
    void UTF8Encoder();
    
                    public String 
                    getEncoding();
    
                    public void 
                    writeEncoded(java.io.Writer, String) 
                    throws java.io.IOException;
}

                

org/apache/axis/components/encoding/XMLEncoder.class

                    package org.apache.axis.components.encoding;

                    public 
                    abstract 
                    interface XMLEncoder {
    
                    public 
                    abstract String 
                    getEncoding();
    
                    public 
                    abstract String 
                    encode(String);
    
                    public 
                    abstract void 
                    writeEncoded(java.io.Writer, String) 
                    throws java.io.IOException;
}

                

org/apache/axis/components/encoding/XMLEncoderFactory.class

                    package org.apache.axis.components.encoding;

                    public 
                    synchronized 
                    class XMLEncoderFactory {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public 
                    static 
                    final String 
                    ENCODING_UTF_8 = UTF-8;
    
                    public 
                    static 
                    final String 
                    ENCODING_UTF_16 = UTF-16;
    
                    public 
                    static 
                    final String 
                    DEFAULT_ENCODING = UTF-8;
    
                    private 
                    static java.util.Map 
                    encoderMap;
    
                    private 
                    static 
                    final String 
                    PLUGABLE_PROVIDER_FILENAME = org.apache.axis.components.encoding.XMLEncoder;
    
                    public void XMLEncoderFactory();
    
                    public 
                    static XMLEncoder 
                    getDefaultEncoder();
    
                    public 
                    static XMLEncoder 
                    getEncoder(String) 
                    throws java.io.UnsupportedEncodingException;
    
                    private 
                    static void 
                    loadPluggableEncoders();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/components/image/ImageIO.class

                    package org.apache.axis.components.image;

                    public 
                    abstract 
                    interface ImageIO {
    
                    public 
                    abstract void 
                    saveImage(String, java.awt.Image, java.io.OutputStream) 
                    throws Exception;
    
                    public 
                    abstract java.awt.Image 
                    loadImage(java.io.InputStream) 
                    throws Exception;
}

                

org/apache/axis/components/image/ImageIOFactory.class

                    package org.apache.axis.components.image;

                    public 
                    synchronized 
                    class ImageIOFactory {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void ImageIOFactory();
    
                    public 
                    static ImageIO 
                    getImageIO();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/components/image/JDK13IO.class

                    package org.apache.axis.components.image;

                    public 
                    synchronized 
                    class JDK13IO 
                    extends java.awt.Component 
                    implements ImageIO {
    
                    public void JDK13IO();
    
                    public void 
                    saveImage(String, java.awt.Image, java.io.OutputStream) 
                    throws Exception;
    
                    public java.awt.Image 
                    loadImage(java.io.InputStream) 
                    throws Exception;
}

                

org/apache/axis/components/image/JimiIO.class

                    package org.apache.axis.components.image;

                    public 
                    synchronized 
                    class JimiIO 
                    implements ImageIO {
    
                    public void JimiIO();
    
                    public void 
                    saveImage(String, java.awt.Image, java.io.OutputStream) 
                    throws Exception;
    
                    public java.awt.Image 
                    loadImage(java.io.InputStream) 
                    throws Exception;
}

                

org/apache/axis/components/image/MerlinIO.class

                    package org.apache.axis.components.image;

                    public 
                    synchronized 
                    class MerlinIO 
                    extends java.awt.Component 
                    implements ImageIO {
    
                    public void MerlinIO();
    
                    public void 
                    saveImage(String, java.awt.Image, java.io.OutputStream) 
                    throws Exception;
    
                    public java.awt.Image 
                    loadImage(java.io.InputStream) 
                    throws Exception;
}

                

org/apache/axis/components/jms/BeanVendorAdapter.class

                    package org.apache.axis.components.jms;

                    public 
                    abstract 
                    synchronized 
                    class BeanVendorAdapter 
                    extends JMSVendorAdapter {
    
                    protected 
                    static 
                    final String 
                    CONNECTION_FACTORY_CLASS = transport.jms.ConnectionFactoryClass;
    
                    public void BeanVendorAdapter();
    
                    public javax.jms.QueueConnectionFactory 
                    getQueueConnectionFactory(java.util.HashMap) 
                    throws Exception;
    
                    public javax.jms.TopicConnectionFactory 
                    getTopicConnectionFactory(java.util.HashMap) 
                    throws Exception;
    
                    private javax.jms.ConnectionFactory 
                    getConnectionFactory(java.util.HashMap) 
                    throws Exception;
    
                    private void 
                    callSetters(java.util.HashMap, Class, javax.jms.ConnectionFactory) 
                    throws Exception;
}

                

org/apache/axis/components/jms/JMSVendorAdapter.class

                    package org.apache.axis.components.jms;

                    public 
                    abstract 
                    synchronized 
                    class JMSVendorAdapter {
    
                    public 
                    static 
                    final int 
                    SEND_ACTION = 0;
    
                    public 
                    static 
                    final int 
                    CONNECT_ACTION = 1;
    
                    public 
                    static 
                    final int 
                    SUBSCRIBE_ACTION = 2;
    
                    public 
                    static 
                    final int 
                    RECEIVE_ACTION = 3;
    
                    public 
                    static 
                    final int 
                    ON_EXCEPTION_ACTION = 4;
    
                    public void JMSVendorAdapter();
    
                    public 
                    abstract javax.jms.QueueConnectionFactory 
                    getQueueConnectionFactory(java.util.HashMap) 
                    throws Exception;
    
                    public 
                    abstract javax.jms.TopicConnectionFactory 
                    getTopicConnectionFactory(java.util.HashMap) 
                    throws Exception;
    
                    public 
                    abstract void 
                    addVendorConnectionFactoryProperties(org.apache.axis.transport.jms.JMSURLHelper, java.util.HashMap);
    
                    public 
                    abstract boolean 
                    isMatchingConnectionFactory(javax.jms.ConnectionFactory, org.apache.axis.transport.jms.JMSURLHelper, java.util.HashMap);
    
                    public String 
                    getVendorId();
    
                    public java.util.HashMap 
                    getJMSConnectorProperties(org.apache.axis.transport.jms.JMSURLHelper);
    
                    public java.util.HashMap 
                    getJMSConnectionFactoryProperties(org.apache.axis.transport.jms.JMSURLHelper);
    
                    public javax.jms.Queue 
                    getQueue(javax.jms.QueueSession, String) 
                    throws Exception;
    
                    public javax.jms.Topic 
                    getTopic(javax.jms.TopicSession, String) 
                    throws Exception;
    
                    public boolean 
                    isRecoverable(Throwable, int);
    
                    public void 
                    setProperties(javax.jms.Message, java.util.HashMap) 
                    throws javax.jms.JMSException;
    
                    public void 
                    setupMessageContext(org.apache.axis.MessageContext, org.apache.axis.client.Call, org.apache.axis.transport.jms.JMSURLHelper);
    
                    public void 
                    setupApplicationProperties(org.apache.axis.MessageContext, org.apache.axis.client.Call, org.apache.axis.transport.jms.JMSURLHelper);
}

                

org/apache/axis/components/jms/JMSVendorAdapterFactory.class

                    package org.apache.axis.components.jms;

                    public 
                    synchronized 
                    class JMSVendorAdapterFactory {
    
                    private 
                    static java.util.HashMap 
                    s_adapters;
    
                    private 
                    static 
                    final String 
                    VENDOR_PKG = org.apache.axis.components.jms;
    
                    public void JMSVendorAdapterFactory();
    
                    public 
                    static 
                    final JMSVendorAdapter 
                    getJMSVendorAdapter();
    
                    public 
                    static 
                    final JMSVendorAdapter 
                    getJMSVendorAdapter(String);
    
                    private 
                    static String 
                    getVendorAdapterClassname(String);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/components/jms/JNDIVendorAdapter.class

                    package org.apache.axis.components.jms;

                    public 
                    synchronized 
                    class JNDIVendorAdapter 
                    extends JMSVendorAdapter {
    
                    public 
                    static 
                    final String 
                    CONTEXT_FACTORY = java.naming.factory.initial;
    
                    public 
                    static 
                    final String 
                    PROVIDER_URL = java.naming.provider.url;
    
                    public 
                    static 
                    final String 
                    _CONNECTION_FACTORY_JNDI_NAME = ConnectionFactoryJNDIName;
    
                    public 
                    static 
                    final String 
                    CONNECTION_FACTORY_JNDI_NAME = transport.jms.ConnectionFactoryJNDIName;
    
                    private javax.naming.Context 
                    context;
    
                    public void JNDIVendorAdapter();
    
                    public javax.jms.QueueConnectionFactory 
                    getQueueConnectionFactory(java.util.HashMap) 
                    throws Exception;
    
                    public javax.jms.TopicConnectionFactory 
                    getTopicConnectionFactory(java.util.HashMap) 
                    throws Exception;
    
                    private javax.jms.ConnectionFactory 
                    getConnectionFactory(java.util.HashMap) 
                    throws Exception;
    
                    public void 
                    addVendorConnectionFactoryProperties(org.apache.axis.transport.jms.JMSURLHelper, java.util.HashMap);
    
                    public boolean 
                    isMatchingConnectionFactory(javax.jms.ConnectionFactory, org.apache.axis.transport.jms.JMSURLHelper, java.util.HashMap);
    
                    public javax.jms.Queue 
                    getQueue(javax.jms.QueueSession, String) 
                    throws Exception;
    
                    public javax.jms.Topic 
                    getTopic(javax.jms.TopicSession, String) 
                    throws Exception;
}

                

org/apache/axis/components/logger/LogFactory$1.class

                    package org.apache.axis.components.logger;

                    synchronized 
                    class LogFactory$1 
                    implements java.security.PrivilegedAction {
    void LogFactory$1();
    
                    public Object 
                    run();
}

                

org/apache/axis/components/logger/LogFactory.class

                    package org.apache.axis.components.logger;

                    public 
                    synchronized 
                    class LogFactory {
    
                    private 
                    static 
                    final org.apache.commons.logging.LogFactory 
                    logFactory;
    
                    public void LogFactory();
    
                    public 
                    static org.apache.commons.logging.Log 
                    getLog(String);
    
                    private 
                    static 
                    final org.apache.commons.logging.LogFactory 
                    getLogFactory();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/components/net/BooleanHolder.class

                    package org.apache.axis.components.net;

                    public 
                    synchronized 
                    class BooleanHolder {
    
                    public boolean 
                    value;
    
                    public void BooleanHolder(boolean);
}

                

org/apache/axis/components/net/CommonsHTTPClientProperties.class

                    package org.apache.axis.components.net;

                    public 
                    abstract 
                    interface CommonsHTTPClientProperties {
    
                    public 
                    abstract int 
                    getMaximumTotalConnections();
    
                    public 
                    abstract int 
                    getMaximumConnectionsPerHost();
    
                    public 
                    abstract int 
                    getConnectionPoolTimeout();
    
                    public 
                    abstract int 
                    getDefaultConnectionTimeout();
    
                    public 
                    abstract int 
                    getDefaultSoTimeout();
}

                

org/apache/axis/components/net/CommonsHTTPClientPropertiesFactory.class

                    package org.apache.axis.components.net;

                    public 
                    synchronized 
                    class CommonsHTTPClientPropertiesFactory {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private 
                    static CommonsHTTPClientProperties 
                    properties;
    
                    public void CommonsHTTPClientPropertiesFactory();
    
                    public 
                    static 
                    synchronized CommonsHTTPClientProperties 
                    create();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/components/net/DefaultCommonsHTTPClientProperties.class

                    package org.apache.axis.components.net;

                    public 
                    synchronized 
                    class DefaultCommonsHTTPClientProperties 
                    implements CommonsHTTPClientProperties {
    
                    public 
                    static 
                    final String 
                    MAXIMUM_TOTAL_CONNECTIONS_PROPERTY_KEY = axis.http.client.maximum.total.connections;
    
                    public 
                    static 
                    final String 
                    MAXIMUM_CONNECTIONS_PER_HOST_PROPERTY_KEY = axis.http.client.maximum.connections.per.host;
    
                    public 
                    static 
                    final String 
                    CONNECTION_POOL_TIMEOUT_KEY = axis.http.client.connection.pool.timeout;
    
                    public 
                    static 
                    final String 
                    CONNECTION_DEFAULT_CONNECTION_TIMEOUT_KEY = axis.http.client.connection.default.connection.timeout;
    
                    public 
                    static 
                    final String 
                    CONNECTION_DEFAULT_SO_TIMEOUT_KEY = axis.http.client.connection.default.so.timeout;
    
                    public void DefaultCommonsHTTPClientProperties();
    
                    protected 
                    final int 
                    getIntegerProperty(String, String);
    
                    public int 
                    getMaximumTotalConnections();
    
                    public int 
                    getMaximumConnectionsPerHost();
    
                    public int 
                    getConnectionPoolTimeout();
    
                    public int 
                    getDefaultConnectionTimeout();
    
                    public int 
                    getDefaultSoTimeout();
}

                

org/apache/axis/components/net/DefaultHTTPSTransportClientProperties.class

                    package org.apache.axis.components.net;

                    public 
                    synchronized 
                    class DefaultHTTPSTransportClientProperties 
                    extends DefaultHTTPTransportClientProperties {
    
                    public void DefaultHTTPSTransportClientProperties();
    
                    public String 
                    getProxyHost();
    
                    public String 
                    getNonProxyHosts();
    
                    public String 
                    getProxyPort();
    
                    public String 
                    getProxyUser();
    
                    public String 
                    getProxyPassword();
}

                

org/apache/axis/components/net/DefaultHTTPTransportClientProperties.class

                    package org.apache.axis.components.net;

                    public 
                    synchronized 
                    class DefaultHTTPTransportClientProperties 
                    implements TransportClientProperties {
    
                    private 
                    static 
                    final String 
                    emptyString = ;
    
                    protected String 
                    proxyHost;
    
                    protected String 
                    nonProxyHosts;
    
                    protected String 
                    proxyPort;
    
                    protected String 
                    proxyUser;
    
                    protected String 
                    proxyPassword;
    
                    public void DefaultHTTPTransportClientProperties();
    
                    public String 
                    getProxyHost();
    
                    public String 
                    getNonProxyHosts();
    
                    public String 
                    getProxyPort();
    
                    public String 
                    getProxyUser();
    
                    public String 
                    getProxyPassword();
}

                

org/apache/axis/components/net/DefaultSocketFactory.class

                    package org.apache.axis.components.net;

                    public 
                    synchronized 
                    class DefaultSocketFactory 
                    implements SocketFactory {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public 
                    static String 
                    CONNECT_TIMEOUT;
    
                    protected java.util.Hashtable 
                    attributes;
    
                    private 
                    static boolean 
                    plain;
    
                    private 
                    static Class 
                    inetClass;
    
                    private 
                    static reflect.Constructor 
                    inetConstructor;
    
                    private 
                    static reflect.Constructor 
                    socketConstructor;
    
                    private 
                    static reflect.Method 
                    connect;
    
                    public void DefaultSocketFactory(java.util.Hashtable);
    
                    public java.net.Socket 
                    create(String, int, StringBuffer, BooleanHolder) 
                    throws Exception;
    
                    private 
                    static java.net.Socket 
                    create(String, int, int) 
                    throws Exception;
    
                    protected boolean 
                    isHostInNonProxyList(String, String);
    
                    protected 
                    static boolean 
                    match(String, String, boolean);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/components/net/JSSESocketFactory.class

                    package org.apache.axis.components.net;

                    public 
                    synchronized 
                    class JSSESocketFactory 
                    extends DefaultSocketFactory 
                    implements SecureSocketFactory {
    
                    protected javax.net.ssl.SSLSocketFactory 
                    sslFactory;
    
                    public void JSSESocketFactory(java.util.Hashtable);
    
                    protected void 
                    initFactory() 
                    throws java.io.IOException;
    
                    public java.net.Socket 
                    create(String, int, StringBuffer, BooleanHolder) 
                    throws Exception;
}

                

org/apache/axis/components/net/SecureSocketFactory.class

                    package org.apache.axis.components.net;

                    public 
                    abstract 
                    interface SecureSocketFactory 
                    extends SocketFactory {
}

                

org/apache/axis/components/net/SocketFactory.class

                    package org.apache.axis.components.net;

                    public 
                    abstract 
                    interface SocketFactory {
    
                    public 
                    abstract java.net.Socket 
                    create(String, int, StringBuffer, BooleanHolder) 
                    throws Exception;
}

                

org/apache/axis/components/net/SocketFactoryFactory.class

                    package org.apache.axis.components.net;

                    public 
                    synchronized 
                    class SocketFactoryFactory {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private 
                    static java.util.Hashtable 
                    factories;
    
                    private 
                    static 
                    final Class[] 
                    classes;
    
                    public void SocketFactoryFactory();
    
                    public 
                    static 
                    synchronized SocketFactory 
                    getFactory(String, java.util.Hashtable);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/components/net/SunFakeTrustSocketFactory$FakeX509TrustManager.class

                    package org.apache.axis.components.net;

                    public 
                    synchronized 
                    class SunFakeTrustSocketFactory$FakeX509TrustManager 
                    implements com.sun.net.ssl.X509TrustManager {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void SunFakeTrustSocketFactory$FakeX509TrustManager();
    
                    public boolean 
                    isClientTrusted(java.security.cert.X509Certificate[]);
    
                    public boolean 
                    isServerTrusted(java.security.cert.X509Certificate[]);
    
                    public java.security.cert.X509Certificate[] 
                    getAcceptedIssuers();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/components/net/SunFakeTrustSocketFactory.class

                    package org.apache.axis.components.net;

                    public 
                    synchronized 
                    class SunFakeTrustSocketFactory 
                    extends SunJSSESocketFactory {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void SunFakeTrustSocketFactory(java.util.Hashtable);
    
                    protected com.sun.net.ssl.SSLContext 
                    getContext() 
                    throws Exception;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/components/net/SunJSSESocketFactory.class

                    package org.apache.axis.components.net;

                    public 
                    synchronized 
                    class SunJSSESocketFactory 
                    extends JSSESocketFactory 
                    implements SecureSocketFactory {
    
                    private String 
                    keystoreType;
    
                    static String 
                    defaultKeystoreType;
    
                    static String 
                    defaultProtocol;
    
                    static String 
                    defaultAlgorithm;
    
                    static boolean 
                    defaultClientAuth;
    
                    private boolean 
                    clientAuth;
    
                    static String 
                    defaultKeystoreFile;
    
                    static String 
                    defaultKeyPass;
    
                    public void SunJSSESocketFactory(java.util.Hashtable);
    
                    protected void 
                    initFactory() 
                    throws java.io.IOException;
    
                    protected com.sun.net.ssl.SSLContext 
                    getContext() 
                    throws Exception;
    
                    private java.security.KeyStore 
                    initKeyStore(String, String) 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/components/net/TransportClientProperties.class

                    package org.apache.axis.components.net;

                    public 
                    abstract 
                    interface TransportClientProperties {
    
                    public 
                    abstract String 
                    getProxyHost();
    
                    public 
                    abstract String 
                    getNonProxyHosts();
    
                    public 
                    abstract String 
                    getProxyPort();
    
                    public 
                    abstract String 
                    getProxyUser();
    
                    public 
                    abstract String 
                    getProxyPassword();
}

                

org/apache/axis/components/net/TransportClientPropertiesFactory.class

                    package org.apache.axis.components.net;

                    public 
                    synchronized 
                    class TransportClientPropertiesFactory {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private 
                    static java.util.HashMap 
                    cache;
    
                    private 
                    static java.util.HashMap 
                    defaults;
    
                    public void TransportClientPropertiesFactory();
    
                    public 
                    static TransportClientProperties 
                    create(String);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/components/script/BSF.class

                    package org.apache.axis.components.script;

                    public 
                    synchronized 
                    class BSF 
                    implements Script {
    
                    public void BSF();
    
                    public Object 
                    run(String, String, String, String, Object[]) 
                    throws Exception;
}

                

org/apache/axis/components/script/Script.class

                    package org.apache.axis.components.script;

                    public 
                    abstract 
                    interface Script {
    
                    public 
                    abstract Object 
                    run(String, String, String, String, Object[]) 
                    throws Exception;
}

                

org/apache/axis/components/script/ScriptFactory.class

                    package org.apache.axis.components.script;

                    public 
                    synchronized 
                    class ScriptFactory {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void ScriptFactory();
    
                    public 
                    static Script 
                    getScript();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/components/threadpool/ThreadPool.class

                    package org.apache.axis.components.threadpool;

                    public 
                    synchronized 
                    class ThreadPool {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public 
                    static 
                    final int 
                    DEFAULT_MAX_THREADS = 100;
    
                    protected java.util.Map 
                    threads;
    
                    protected long 
                    threadcount;
    
                    public boolean 
                    _shutdown;
    
                    private int 
                    maxPoolSize;
    
                    public void ThreadPool();
    
                    public void ThreadPool(int);
    
                    public void 
                    cleanup() 
                    throws InterruptedException;
    
                    public boolean 
                    isShutdown();
    
                    public boolean 
                    isShuttingDown();
    
                    public long 
                    getWorkerCount();
    
                    public void 
                    addWorker(Runnable);
    
                    public void 
                    interruptAll();
    
                    public void 
                    shutdown();
    
                    public void 
                    safeShutdown();
    
                    public 
                    synchronized void 
                    awaitShutdown() 
                    throws InterruptedException;
    
                    public 
                    synchronized boolean 
                    awaitShutdown(long) 
                    throws InterruptedException;
    
                    public void 
                    workerDone(Runnable, boolean);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/components/uuid/FastUUIDGen.class

                    package org.apache.axis.components.uuid;

                    public 
                    synchronized 
                    class FastUUIDGen 
                    implements UUIDGen {
    
                    private 
                    static java.util.Random 
                    secureRandom;
    
                    private 
                    static String 
                    nodeStr;
    
                    private 
                    static int 
                    clockSequence;
    
                    private long 
                    lastTime;
    
                    public void FastUUIDGen();
    
                    private 
                    static String 
                    getNodeHexValue();
    
                    private 
                    static int 
                    getClockSequence();
    
                    public String 
                    nextUUID();
    
                    private 
                    static long 
                    getBitsValue(long, int, int);
    
                    private 
                    static 
                    final String 
                    leftZeroPadString(String, int);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/components/uuid/SimpleUUIDGen.class

                    package org.apache.axis.components.uuid;

                    public 
                    synchronized 
                    class SimpleUUIDGen 
                    implements UUIDGen {
    
                    private 
                    static 
                    final java.math.BigInteger 
                    countStart;
    
                    private 
                    static 
                    final int 
                    clock_sequence;
    
                    private 
                    static 
                    final byte 
                    ZERO = 48;
    
                    private 
                    static 
                    final byte 
                    ONE = 49;
    
                    private 
                    static java.util.Random 
                    secureRandom;
    
                    public void SimpleUUIDGen();
    
                    private 
                    static 
                    final String 
                    leftZeroPadString(String, int);
    
                    public String 
                    nextUUID();
    
                    private 
                    static byte[] 
                    reverseArray(byte[]);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/components/uuid/UUIDGen.class

                    package org.apache.axis.components.uuid;

                    public 
                    abstract 
                    interface UUIDGen {
    
                    public 
                    abstract String 
                    nextUUID();
}

                

org/apache/axis/components/uuid/UUIDGenFactory.class

                    package org.apache.axis.components.uuid;

                    public 
                    abstract 
                    synchronized 
                    class UUIDGenFactory {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void UUIDGenFactory();
    
                    public 
                    static UUIDGen 
                    getUUIDGen();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/configuration/BasicClientConfig.class

                    package org.apache.axis.configuration;

                    public 
                    synchronized 
                    class BasicClientConfig 
                    extends SimpleProvider {
    
                    public void BasicClientConfig();
}

                

org/apache/axis/configuration/BasicServerConfig.class

                    package org.apache.axis.configuration;

                    public 
                    synchronized 
                    class BasicServerConfig 
                    extends SimpleProvider {
    
                    public void BasicServerConfig();
}

                

org/apache/axis/configuration/DefaultEngineConfigurationFactory.class

                    package org.apache.axis.configuration;

                    public 
                    synchronized 
                    class DefaultEngineConfigurationFactory 
                    implements org.apache.axis.EngineConfigurationFactory {
    
                    protected 
                    final org.apache.axis.EngineConfigurationFactory 
                    factory;
    
                    protected void DefaultEngineConfigurationFactory(org.apache.axis.EngineConfigurationFactory);
    
                    public void DefaultEngineConfigurationFactory();
    
                    public org.apache.axis.EngineConfiguration 
                    getClientEngineConfig();
    
                    public org.apache.axis.EngineConfiguration 
                    getServerEngineConfig();
}

                

org/apache/axis/configuration/DirProvider$1.class

                    package org.apache.axis.configuration;

                    synchronized 
                    class DirProvider$1 {
}

                

org/apache/axis/configuration/DirProvider$DirFilter.class

                    package org.apache.axis.configuration;

                    synchronized 
                    class DirProvider$DirFilter 
                    implements java.io.FileFilter {
    
                    private void DirProvider$DirFilter();
    
                    public boolean 
                    accept(java.io.File);
}

                

org/apache/axis/configuration/DirProvider.class

                    package org.apache.axis.configuration;

                    public 
                    synchronized 
                    class DirProvider 
                    implements org.apache.axis.WSDDEngineConfiguration {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private org.apache.axis.deployment.wsdd.WSDDDeployment 
                    deployment;
    
                    private String 
                    configFile;
    
                    private java.io.File 
                    dir;
    
                    private 
                    static 
                    final String 
                    SERVER_CONFIG_FILE = server-config.wsdd;
    
                    public void DirProvider(String) 
                    throws org.apache.axis.ConfigurationException;
    
                    public void DirProvider(String, String) 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.deployment.wsdd.WSDDDeployment 
                    getDeployment();
    
                    public void 
                    configureEngine(org.apache.axis.AxisEngine) 
                    throws org.apache.axis.ConfigurationException;
    
                    private void 
                    processWSDD(java.io.File) 
                    throws org.apache.axis.ConfigurationException;
    
                    public void 
                    writeEngineConfig(org.apache.axis.AxisEngine) 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.Handler 
                    getHandler(javax.xml.namespace.QName) 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.handlers.soap.SOAPService 
                    getService(javax.xml.namespace.QName) 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.handlers.soap.SOAPService 
                    getServiceByNamespaceURI(String) 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.Handler 
                    getTransport(javax.xml.namespace.QName) 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.encoding.TypeMappingRegistry 
                    getTypeMappingRegistry() 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.Handler 
                    getGlobalRequest() 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.Handler 
                    getGlobalResponse() 
                    throws org.apache.axis.ConfigurationException;
    
                    public java.util.Hashtable 
                    getGlobalOptions() 
                    throws org.apache.axis.ConfigurationException;
    
                    public java.util.Iterator 
                    getDeployedServices() 
                    throws org.apache.axis.ConfigurationException;
    
                    public java.util.List 
                    getRoles();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/configuration/EngineConfigurationFactoryDefault.class

                    package org.apache.axis.configuration;

                    public 
                    synchronized 
                    class EngineConfigurationFactoryDefault 
                    implements org.apache.axis.EngineConfigurationFactory {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public 
                    static 
                    final String 
                    OPTION_CLIENT_CONFIG_FILE = axis.ClientConfigFile;
    
                    public 
                    static 
                    final String 
                    OPTION_SERVER_CONFIG_FILE = axis.ServerConfigFile;
    
                    protected 
                    static 
                    final String 
                    CLIENT_CONFIG_FILE = client-config.wsdd;
    
                    protected 
                    static 
                    final String 
                    SERVER_CONFIG_FILE = server-config.wsdd;
    
                    protected String 
                    clientConfigFile;
    
                    protected String 
                    serverConfigFile;
    
                    public 
                    static org.apache.axis.EngineConfigurationFactory 
                    newFactory(Object);
    
                    protected void EngineConfigurationFactoryDefault();
    
                    public org.apache.axis.EngineConfiguration 
                    getClientEngineConfig();
    
                    public org.apache.axis.EngineConfiguration 
                    getServerEngineConfig();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/configuration/EngineConfigurationFactoryFinder$1.class

                    package org.apache.axis.configuration;

                    synchronized 
                    class EngineConfigurationFactoryFinder$1 
                    implements java.security.PrivilegedAction {
    void EngineConfigurationFactoryFinder$1(Object[]);
    
                    public Object 
                    run();
}

                

org/apache/axis/configuration/EngineConfigurationFactoryFinder.class

                    package org.apache.axis.configuration;

                    public 
                    synchronized 
                    class EngineConfigurationFactoryFinder {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private 
                    static 
                    final Class 
                    mySpi;
    
                    private 
                    static 
                    final Class[] 
                    newFactoryParamTypes;
    
                    private 
                    static 
                    final String 
                    requiredMethod = public static EngineConfigurationFactory newFactory(Object);
    
                    private void EngineConfigurationFactoryFinder();
    
                    public 
                    static org.apache.axis.EngineConfigurationFactory 
                    newFactory(Object);
    
                    public 
                    static org.apache.axis.EngineConfigurationFactory 
                    newFactory();
    
                    private 
                    static org.apache.axis.EngineConfigurationFactory 
                    newFactory(Class, Class[], Object[]);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/configuration/EngineConfigurationFactoryServlet.class

                    package org.apache.axis.configuration;

                    public 
                    synchronized 
                    class EngineConfigurationFactoryServlet 
                    extends EngineConfigurationFactoryDefault {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private javax.servlet.ServletConfig 
                    cfg;
    
                    public 
                    static org.apache.axis.EngineConfigurationFactory 
                    newFactory(Object);
    
                    protected void EngineConfigurationFactoryServlet(javax.servlet.ServletConfig);
    
                    public org.apache.axis.EngineConfiguration 
                    getServerEngineConfig();
    
                    private 
                    static org.apache.axis.EngineConfiguration 
                    getServerEngineConfig(javax.servlet.ServletConfig);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/configuration/FileProvider.class

                    package org.apache.axis.configuration;

                    public 
                    synchronized 
                    class FileProvider 
                    implements org.apache.axis.WSDDEngineConfiguration {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private org.apache.axis.deployment.wsdd.WSDDDeployment 
                    deployment;
    
                    private String 
                    filename;
    
                    private java.io.File 
                    configFile;
    
                    private java.io.InputStream 
                    myInputStream;
    
                    private boolean 
                    readOnly;
    
                    private boolean 
                    searchClasspath;
    
                    public void FileProvider(String);
    
                    public void FileProvider(String, String) 
                    throws org.apache.axis.ConfigurationException;
    
                    private void 
                    check();
    
                    public void FileProvider(java.io.InputStream);
    
                    public void 
                    setInputStream(java.io.InputStream);
    
                    private java.io.InputStream 
                    getInputStream();
    
                    public org.apache.axis.deployment.wsdd.WSDDDeployment 
                    getDeployment();
    
                    public void 
                    setDeployment(org.apache.axis.deployment.wsdd.WSDDDeployment);
    
                    public void 
                    setSearchClasspath(boolean);
    
                    public void 
                    configureEngine(org.apache.axis.AxisEngine) 
                    throws org.apache.axis.ConfigurationException;
    
                    public void 
                    writeEngineConfig(org.apache.axis.AxisEngine) 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.Handler 
                    getHandler(javax.xml.namespace.QName) 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.handlers.soap.SOAPService 
                    getService(javax.xml.namespace.QName) 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.handlers.soap.SOAPService 
                    getServiceByNamespaceURI(String) 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.Handler 
                    getTransport(javax.xml.namespace.QName) 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.encoding.TypeMappingRegistry 
                    getTypeMappingRegistry() 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.Handler 
                    getGlobalRequest() 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.Handler 
                    getGlobalResponse() 
                    throws org.apache.axis.ConfigurationException;
    
                    public java.util.Hashtable 
                    getGlobalOptions() 
                    throws org.apache.axis.ConfigurationException;
    
                    public java.util.Iterator 
                    getDeployedServices() 
                    throws org.apache.axis.ConfigurationException;
    
                    public java.util.List 
                    getRoles();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/configuration/NullProvider.class

                    package org.apache.axis.configuration;

                    public 
                    synchronized 
                    class NullProvider 
                    implements org.apache.axis.EngineConfiguration {
    
                    public void NullProvider();
    
                    public void 
                    configureEngine(org.apache.axis.AxisEngine) 
                    throws org.apache.axis.ConfigurationException;
    
                    public void 
                    writeEngineConfig(org.apache.axis.AxisEngine) 
                    throws org.apache.axis.ConfigurationException;
    
                    public java.util.Hashtable 
                    getGlobalOptions() 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.Handler 
                    getGlobalResponse() 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.Handler 
                    getGlobalRequest() 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.encoding.TypeMappingRegistry 
                    getTypeMappingRegistry() 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.encoding.TypeMapping 
                    getTypeMapping(String) 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.Handler 
                    getTransport(javax.xml.namespace.QName) 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.handlers.soap.SOAPService 
                    getService(javax.xml.namespace.QName) 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.handlers.soap.SOAPService 
                    getServiceByNamespaceURI(String) 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.Handler 
                    getHandler(javax.xml.namespace.QName) 
                    throws org.apache.axis.ConfigurationException;
    
                    public java.util.Iterator 
                    getDeployedServices() 
                    throws org.apache.axis.ConfigurationException;
    
                    public java.util.List 
                    getRoles();
}

                

org/apache/axis/configuration/ServletEngineConfigurationFactory.class

                    package org.apache.axis.configuration;

                    public 
                    synchronized 
                    class ServletEngineConfigurationFactory 
                    extends DefaultEngineConfigurationFactory {
    
                    public void ServletEngineConfigurationFactory(javax.servlet.ServletContext);
}

                

org/apache/axis/configuration/SimpleProvider.class

                    package org.apache.axis.configuration;

                    public 
                    synchronized 
                    class SimpleProvider 
                    implements org.apache.axis.EngineConfiguration {
    java.util.HashMap 
                    handlers;
    java.util.HashMap 
                    transports;
    java.util.HashMap 
                    services;
    java.util.Hashtable 
                    globalOptions;
    org.apache.axis.Handler 
                    globalRequest;
    org.apache.axis.Handler 
                    globalResponse;
    java.util.List 
                    roles;
    org.apache.axis.encoding.TypeMappingRegistry 
                    tmr;
    org.apache.axis.EngineConfiguration 
                    defaultConfiguration;
    
                    private org.apache.axis.AxisEngine 
                    engine;
    
                    public void SimpleProvider();
    
                    public void SimpleProvider(org.apache.axis.EngineConfiguration);
    
                    public void SimpleProvider(org.apache.axis.encoding.TypeMappingRegistry);
    
                    public void 
                    configureEngine(org.apache.axis.AxisEngine) 
                    throws org.apache.axis.ConfigurationException;
    
                    public void 
                    writeEngineConfig(org.apache.axis.AxisEngine) 
                    throws org.apache.axis.ConfigurationException;
    
                    public java.util.Hashtable 
                    getGlobalOptions() 
                    throws org.apache.axis.ConfigurationException;
    
                    public void 
                    setGlobalOptions(java.util.Hashtable);
    
                    public org.apache.axis.Handler 
                    getGlobalRequest() 
                    throws org.apache.axis.ConfigurationException;
    
                    public void 
                    setGlobalRequest(org.apache.axis.Handler);
    
                    public org.apache.axis.Handler 
                    getGlobalResponse() 
                    throws org.apache.axis.ConfigurationException;
    
                    public void 
                    setGlobalResponse(org.apache.axis.Handler);
    
                    public org.apache.axis.encoding.TypeMappingRegistry 
                    getTypeMappingRegistry() 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.encoding.TypeMapping 
                    getTypeMapping(String) 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.Handler 
                    getTransport(javax.xml.namespace.QName) 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.handlers.soap.SOAPService 
                    getService(javax.xml.namespace.QName) 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.handlers.soap.SOAPService 
                    getServiceByNamespaceURI(String) 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.Handler 
                    getHandler(javax.xml.namespace.QName) 
                    throws org.apache.axis.ConfigurationException;
    
                    public void 
                    deployService(javax.xml.namespace.QName, org.apache.axis.handlers.soap.SOAPService);
    
                    public void 
                    deployService(String, org.apache.axis.handlers.soap.SOAPService);
    
                    public void 
                    deployTransport(javax.xml.namespace.QName, org.apache.axis.Handler);
    
                    public void 
                    deployTransport(String, org.apache.axis.Handler);
    
                    public java.util.Iterator 
                    getDeployedServices() 
                    throws org.apache.axis.ConfigurationException;
    
                    public void 
                    setRoles(java.util.List);
    
                    public void 
                    addRole(String);
    
                    public void 
                    removeRole(String);
    
                    public java.util.List 
                    getRoles();
}

                

org/apache/axis/configuration/XMLStringProvider.class

                    package org.apache.axis.configuration;

                    public 
                    synchronized 
                    class XMLStringProvider 
                    extends FileProvider {
    String 
                    xmlConfiguration;
    
                    public void XMLStringProvider(String);
    
                    public void 
                    writeEngineConfig(org.apache.axis.AxisEngine) 
                    throws org.apache.axis.ConfigurationException;
    
                    public void 
                    configureEngine(org.apache.axis.AxisEngine) 
                    throws org.apache.axis.ConfigurationException;
}

                

org/apache/axis/constants/Enum$Type.class

                    package org.apache.axis.constants;

                    public 
                    abstract 
                    synchronized 
                    class Enum$Type 
                    implements java.io.Serializable {
    
                    private 
                    final String 
                    name;
    
                    private 
                    final Enum[] 
                    enums;
    
                    private Enum 
                    dephault;
    
                    protected void Enum$Type(String, Enum[]);
    
                    public void 
                    setDefault(Enum);
    
                    public Enum 
                    getDefault();
    
                    public 
                    final String 
                    getName();
    
                    public 
                    final boolean 
                    isValid(String);
    
                    public 
                    final int 
                    size();
    
                    public 
                    final String[] 
                    getEnumNames();
    
                    public 
                    final Enum 
                    getEnum(int);
    
                    public 
                    final Enum 
                    getEnum(String);
    
                    public 
                    final Enum 
                    getEnum(String, Enum);
    
                    private Object 
                    readResolve() 
                    throws java.io.ObjectStreamException;
}

                

org/apache/axis/constants/Enum.class

                    package org.apache.axis.constants;

                    public 
                    abstract 
                    synchronized 
                    class Enum 
                    implements java.io.Serializable {
    
                    private 
                    static 
                    final java.util.Hashtable 
                    types;
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private 
                    final Enum$Type 
                    type;
    
                    public 
                    final int 
                    value;
    
                    public 
                    final String 
                    name;
    
                    protected void Enum(Enum$Type, int, String);
    
                    public 
                    final int 
                    getValue();
    
                    public 
                    final String 
                    getName();
    
                    public 
                    final Enum$Type 
                    getType();
    
                    public String 
                    toString();
    
                    public 
                    final boolean 
                    equals(Object);
    
                    public int 
                    hashCode();
    
                    public 
                    final boolean 
                    equals(Enum);
    
                    private 
                    final boolean 
                    _equals(Enum);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/constants/Scope$1.class

                    package org.apache.axis.constants;

                    synchronized 
                    class Scope$1 {
}

                

org/apache/axis/constants/Scope$Type.class

                    package org.apache.axis.constants;

                    public 
                    synchronized 
                    class Scope$Type 
                    extends Enum$Type {
    
                    private void Scope$Type();
    
                    public 
                    final Scope 
                    getScope(int);
    
                    public 
                    final Scope 
                    getScope(String);
    
                    public 
                    final Scope 
                    getScope(String, Scope);
}

                

org/apache/axis/constants/Scope.class

                    package org.apache.axis.constants;

                    public 
                    synchronized 
                    class Scope 
                    extends Enum {
    
                    private 
                    static 
                    final Scope$Type 
                    type;
    
                    public 
                    static 
                    final String 
                    REQUEST_STR = Request;
    
                    public 
                    static 
                    final String 
                    APPLICATION_STR = Application;
    
                    public 
                    static 
                    final String 
                    SESSION_STR = Session;
    
                    public 
                    static 
                    final String 
                    FACTORY_STR = Factory;
    
                    public 
                    static 
                    final Scope 
                    REQUEST;
    
                    public 
                    static 
                    final Scope 
                    APPLICATION;
    
                    public 
                    static 
                    final Scope 
                    SESSION;
    
                    public 
                    static 
                    final Scope 
                    FACTORY;
    
                    public 
                    static 
                    final Scope 
                    DEFAULT;
    
                    public 
                    static Scope 
                    getDefault();
    
                    public 
                    static 
                    final Scope 
                    getScope(int);
    
                    public 
                    static 
                    final Scope 
                    getScope(String);
    
                    public 
                    static 
                    final Scope 
                    getScope(String, Scope);
    
                    public 
                    static 
                    final boolean 
                    isValid(String);
    
                    public 
                    static 
                    final int 
                    size();
    
                    public 
                    static 
                    final String[] 
                    getScopes();
    
                    private Object 
                    readResolve() 
                    throws java.io.ObjectStreamException;
    
                    private void Scope(int, String);
    
                    protected void Scope();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/constants/Style$1.class

                    package org.apache.axis.constants;

                    synchronized 
                    class Style$1 {
}

                

org/apache/axis/constants/Style$Type.class

                    package org.apache.axis.constants;

                    public 
                    synchronized 
                    class Style$Type 
                    extends Enum$Type {
    
                    private void Style$Type();
    
                    public 
                    final Style 
                    getStyle(int);
    
                    public 
                    final Style 
                    getStyle(String);
    
                    public 
                    final Style 
                    getStyle(String, Style);
}

                

org/apache/axis/constants/Style.class

                    package org.apache.axis.constants;

                    public 
                    synchronized 
                    class Style 
                    extends Enum {
    
                    private 
                    static 
                    final Style$Type 
                    type;
    
                    public 
                    static 
                    final String 
                    RPC_STR = rpc;
    
                    public 
                    static 
                    final String 
                    DOCUMENT_STR = document;
    
                    public 
                    static 
                    final String 
                    WRAPPED_STR = wrapped;
    
                    public 
                    static 
                    final String 
                    MESSAGE_STR = message;
    
                    public 
                    static 
                    final Style 
                    RPC;
    
                    public 
                    static 
                    final Style 
                    DOCUMENT;
    
                    public 
                    static 
                    final Style 
                    WRAPPED;
    
                    public 
                    static 
                    final Style 
                    MESSAGE;
    
                    public 
                    static 
                    final Style 
                    DEFAULT;
    
                    private javax.xml.namespace.QName 
                    provider;
    
                    public 
                    static Style 
                    getDefault();
    
                    public 
                    final javax.xml.namespace.QName 
                    getProvider();
    
                    public 
                    static 
                    final Style 
                    getStyle(int);
    
                    public 
                    static 
                    final Style 
                    getStyle(String);
    
                    public 
                    static 
                    final Style 
                    getStyle(String, Style);
    
                    public 
                    static 
                    final boolean 
                    isValid(String);
    
                    public 
                    static 
                    final int 
                    size();
    
                    public 
                    static 
                    final String[] 
                    getStyles();
    
                    private Object 
                    readResolve() 
                    throws java.io.ObjectStreamException;
    
                    private void Style(int, String, javax.xml.namespace.QName);
    
                    protected void Style();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/constants/Use$1.class

                    package org.apache.axis.constants;

                    synchronized 
                    class Use$1 {
}

                

org/apache/axis/constants/Use$Type.class

                    package org.apache.axis.constants;

                    public 
                    synchronized 
                    class Use$Type 
                    extends Enum$Type {
    
                    private void Use$Type();
    
                    public 
                    final Use 
                    getUse(int);
    
                    public 
                    final Use 
                    getUse(String);
    
                    public 
                    final Use 
                    getUse(String, Use);
}

                

org/apache/axis/constants/Use.class

                    package org.apache.axis.constants;

                    public 
                    synchronized 
                    class Use 
                    extends Enum {
    
                    private 
                    static 
                    final Use$Type 
                    type;
    
                    public 
                    static 
                    final String 
                    ENCODED_STR = encoded;
    
                    public 
                    static 
                    final String 
                    LITERAL_STR = literal;
    
                    public 
                    static 
                    final Use 
                    ENCODED;
    
                    public 
                    static 
                    final Use 
                    LITERAL;
    
                    public 
                    static 
                    final Use 
                    DEFAULT;
    
                    private String 
                    encoding;
    
                    public 
                    static Use 
                    getDefault();
    
                    public 
                    final String 
                    getEncoding();
    
                    public 
                    static 
                    final Use 
                    getUse(int);
    
                    public 
                    static 
                    final Use 
                    getUse(String);
    
                    public 
                    static 
                    final Use 
                    getUse(String, Use);
    
                    public 
                    static 
                    final boolean 
                    isValid(String);
    
                    public 
                    static 
                    final int 
                    size();
    
                    public 
                    static 
                    final String[] 
                    getUses();
    
                    private Object 
                    readResolve() 
                    throws java.io.ObjectStreamException;
    
                    private void Use(int, String, String);
    
                    protected void Use();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/deployment/wsdd/WSDDArrayMapping.class

                    package org.apache.axis.deployment.wsdd;

                    public 
                    synchronized 
                    class WSDDArrayMapping 
                    extends WSDDTypeMapping {
    
                    private javax.xml.namespace.QName 
                    innerType;
    
                    public void WSDDArrayMapping();
    
                    public void WSDDArrayMapping(org.w3c.dom.Element) 
                    throws WSDDException;
    
                    protected javax.xml.namespace.QName 
                    getElementName();
    
                    public javax.xml.namespace.QName 
                    getInnerType();
    
                    public void 
                    writeToContext(org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
}

                

org/apache/axis/deployment/wsdd/WSDDBeanMapping.class

                    package org.apache.axis.deployment.wsdd;

                    public 
                    synchronized 
                    class WSDDBeanMapping 
                    extends WSDDTypeMapping {
    
                    public void WSDDBeanMapping();
    
                    public void WSDDBeanMapping(org.w3c.dom.Element) 
                    throws WSDDException;
    
                    protected javax.xml.namespace.QName 
                    getElementName();
    
                    public void 
                    writeToContext(org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
}

                

org/apache/axis/deployment/wsdd/WSDDChain.class

                    package org.apache.axis.deployment.wsdd;

                    public 
                    synchronized 
                    class WSDDChain 
                    extends WSDDHandler {
    
                    private java.util.Vector 
                    handlers;
    
                    public void WSDDChain();
    
                    public void WSDDChain(org.w3c.dom.Element) 
                    throws WSDDException;
    
                    protected javax.xml.namespace.QName 
                    getElementName();
    
                    public void 
                    addHandler(WSDDHandler);
    
                    public java.util.Vector 
                    getHandlers();
    
                    public void 
                    removeHandler(WSDDHandler);
    
                    public org.apache.axis.Handler 
                    makeNewInstance(org.apache.axis.EngineConfiguration) 
                    throws org.apache.axis.ConfigurationException;
    
                    public void 
                    writeToContext(org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    public void 
                    deployToRegistry(WSDDDeployment);
}

                

org/apache/axis/deployment/wsdd/WSDDConstants.class

                    package org.apache.axis.deployment.wsdd;

                    public 
                    synchronized 
                    class WSDDConstants {
    
                    public 
                    static 
                    final String 
                    BEAN_SERIALIZER_FACTORY = org.apache.axis.encoding.ser.BeanSerializerFactory;
    
                    public 
                    static 
                    final String 
                    BEAN_DESERIALIZER_FACTORY = org.apache.axis.encoding.ser.BeanDeserializerFactory;
    
                    public 
                    static 
                    final String 
                    ARRAY_SERIALIZER_FACTORY = org.apache.axis.encoding.ser.ArraySerializerFactory;
    
                    public 
                    static 
                    final String 
                    ARRAY_DESERIALIZER_FACTORY = org.apache.axis.encoding.ser.ArrayDeserializerFactory;
    
                    public 
                    static 
                    final String 
                    URI_WSDD = http://xml.apache.org/axis/wsdd/;
    
                    public 
                    static 
                    final String 
                    URI_WSDD_JAVA = http://xml.apache.org/axis/wsdd/providers/java;
    
                    public 
                    static 
                    final String 
                    URI_WSDD_HANDLER = http://xml.apache.org/axis/wsdd/providers/handler;
    
                    public 
                    static 
                    final String 
                    URI_WSDD_WSDD_COM = http://xml.apache.org/axis/wsdd/providers/com;
    
                    public 
                    static 
                    final String 
                    URI_WSDD_WSDD_BSF = http://xml.apache.org/axis/wsdd/providers/bsf;
    
                    public 
                    static 
                    final String 
                    NS_PREFIX_WSDD = ;
    
                    public 
                    static 
                    final String 
                    NS_PREFIX_WSDD_JAVA = java;
    
                    public 
                    static 
                    final String 
                    PROVIDER_RPC = RPC;
    
                    public 
                    static 
                    final String 
                    PROVIDER_MSG = MSG;
    
                    public 
                    static 
                    final String 
                    PROVIDER_HANDLER = Handler;
    
                    public 
                    static 
                    final String 
                    PROVIDER_EJB = EJB;
    
                    public 
                    static 
                    final String 
                    PROVIDER_COM = COM;
    
                    public 
                    static 
                    final String 
                    PROVIDER_BSF = BSF;
    
                    public 
                    static 
                    final String 
                    PROVIDER_CORBA = CORBA;
    
                    public 
                    static 
                    final String 
                    PROVIDER_RMI = RMI;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_JAVARPC_PROVIDER;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_JAVAMSG_PROVIDER;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_HANDLER_PROVIDER;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_EJB_PROVIDER;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_COM_PROVIDER;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_BSF_PROVIDER;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_CORBA_PROVIDER;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_RMI_PROVIDER;
    
                    public 
                    static 
                    final String 
                    ELEM_WSDD_PARAM = parameter;
    
                    public 
                    static 
                    final String 
                    ELEM_WSDD_DOC = documentation;
    
                    public 
                    static 
                    final String 
                    ELEM_WSDD_DEPLOY = deployment;
    
                    public 
                    static 
                    final String 
                    ELEM_WSDD_UNDEPLOY = undeployment;
    
                    public 
                    static 
                    final String 
                    ELEM_WSDD_REQFLOW = requestFlow;
    
                    public 
                    static 
                    final String 
                    ELEM_WSDD_RESPFLOW = responseFlow;
    
                    public 
                    static 
                    final String 
                    ELEM_WSDD_FAULTFLOW = faultFlow;
    
                    public 
                    static 
                    final String 
                    ELEM_WSDD_HANDLER = handler;
    
                    public 
                    static 
                    final String 
                    ELEM_WSDD_CHAIN = chain;
    
                    public 
                    static 
                    final String 
                    ELEM_WSDD_SERVICE = service;
    
                    public 
                    static 
                    final String 
                    ELEM_WSDD_TRANSPORT = transport;
    
                    public 
                    static 
                    final String 
                    ELEM_WSDD_GLOBAL = globalConfiguration;
    
                    public 
                    static 
                    final String 
                    ELEM_WSDD_TYPEMAPPING = typeMapping;
    
                    public 
                    static 
                    final String 
                    ELEM_WSDD_BEANMAPPING = beanMapping;
    
                    public 
                    static 
                    final String 
                    ELEM_WSDD_ARRAYMAPPING = arrayMapping;
    
                    public 
                    static 
                    final String 
                    ELEM_WSDD_OPERATION = operation;
    
                    public 
                    static 
                    final String 
                    ELEM_WSDD_ELEMENTMAPPING = elementMapping;
    
                    public 
                    static 
                    final String 
                    ELEM_WSDD_WSDLFILE = wsdlFile;
    
                    public 
                    static 
                    final String 
                    ELEM_WSDD_NAMESPACE = namespace;
    
                    public 
                    static 
                    final String 
                    ELEM_WSDD_ENDPOINTURL = endpointURL;
    
                    public 
                    static 
                    final String 
                    ELEM_WSDD_JAXRPC_HANDLERINFO = handlerInfo;
    
                    public 
                    static 
                    final String 
                    ELEM_WSDD_JAXRPC_CHAIN = handlerInfoChain;
    
                    public 
                    static 
                    final String 
                    ELEM_WSDD_JAXRPC_ROLE = role;
    
                    public 
                    static 
                    final String 
                    ELEM_WSDD_JAXRPC_HEADER = header;
    
                    public 
                    static 
                    final String 
                    ELEM_WSDD_FAULT = fault;
    
                    public 
                    static 
                    final String 
                    ELEM_WSDD_ROLE = role;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_PARAM;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_DOC;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_DEPLOY;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_UNDEPLOY;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_REQFLOW;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_RESPFLOW;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_FAULTFLOW;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_HANDLER;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_CHAIN;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_SERVICE;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_TRANSPORT;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_GLOBAL;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_TYPEMAPPING;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_BEANMAPPING;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_ARRAYMAPPING;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_OPERATION;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_ELEMENTMAPPING;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_WSDLFILE;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_NAMESPACE;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_ENDPOINTURL;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_JAXRPC_HANDLERINFO;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_JAXRPC_HANDLERINFOCHAIN;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_JAXRPC_HEADER;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_JAXRPC_ROLE;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_FAULT;
    
                    public 
                    static 
                    final String 
                    ATTR_LANG_SPEC_TYPE = languageSpecificType;
    
                    public 
                    static 
                    final String 
                    ATTR_QNAME = qname;
    
                    public 
                    static 
                    final String 
                    ATTR_NAME = name;
    
                    public 
                    static 
                    final String 
                    ATTR_TYPE = type;
    
                    public 
                    static 
                    final String 
                    ATTR_VALUE = value;
    
                    public 
                    static 
                    final String 
                    ATTR_LOCKED = locked;
    
                    public 
                    static 
                    final String 
                    ATTR_RETQNAME = returnQName;
    
                    public 
                    static 
                    final String 
                    ATTR_RETTYPE = returnType;
    
                    public 
                    static 
                    final String 
                    ATTR_RETITEMQNAME = returnItemQName;
    
                    public 
                    static 
                    final String 
                    ATTR_RETITEMTYPE = returnItemType;
    
                    public 
                    static 
                    final String 
                    ATTR_ITEMQNAME = itemQName;
    
                    public 
                    static 
                    final String 
                    ATTR_ITEMTYPE = itemType;
    
                    public 
                    static 
                    final String 
                    ATTR_MODE = mode;
    
                    public 
                    static 
                    final String 
                    ATTR_INHEADER = inHeader;
    
                    public 
                    static 
                    final String 
                    ATTR_OUTHEADER = outHeader;
    
                    public 
                    static 
                    final String 
                    ATTR_RETHEADER = returnHeader;
    
                    public 
                    static 
                    final String 
                    ATTR_STYLE = style;
    
                    public 
                    static 
                    final String 
                    ATTR_USE = use;
    
                    public 
                    static 
                    final String 
                    ATTR_STREAMING = streaming;
    
                    public 
                    static 
                    final String 
                    ATTR_ATTACHMENT_FORMAT = attachment;
    
                    public 
                    static 
                    final String 
                    ATTR_PROVIDER = provider;
    
                    public 
                    static 
                    final String 
                    ATTR_PIVOT = pivot;
    
                    public 
                    static 
                    final String 
                    ATTR_SERIALIZER = serializer;
    
                    public 
                    static 
                    final String 
                    ATTR_DESERIALIZER = deserializer;
    
                    public 
                    static 
                    final String 
                    ATTR_ENCSTYLE = encodingStyle;
    
                    public 
                    static 
                    final String 
                    ATTR_SOAPACTORNAME = soapActorName;
    
                    public 
                    static 
                    final String 
                    ATTR_CLASSNAME = classname;
    
                    public 
                    static 
                    final String 
                    ATTR_CLASS = class;
    
                    public 
                    static 
                    final String 
                    ATTR_SOAPACTION = soapAction;
    
                    public 
                    static 
                    final String 
                    ATTR_SOAP12ACTION = action;
    
                    public 
                    static 
                    final String 
                    ATTR_MEP = mep;
    
                    public 
                    static 
                    final String 
                    ATTR_INNER_TYPE = innerType;
    
                    public 
                    static 
                    final String 
                    ATTR_INNER_NAME = innerName;
    
                    public void WSDDConstants();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/deployment/wsdd/WSDDDeployableItem.class

                    package org.apache.axis.deployment.wsdd;

                    public 
                    abstract 
                    synchronized 
                    class WSDDDeployableItem 
                    extends WSDDElement {
    
                    public 
                    static 
                    final int 
                    SCOPE_PER_ACCESS = 0;
    
                    public 
                    static 
                    final int 
                    SCOPE_PER_REQUEST = 1;
    
                    public 
                    static 
                    final int 
                    SCOPE_SINGLETON = 2;
    
                    public 
                    static String[] 
                    scopeStrings;
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    protected org.apache.axis.utils.LockableHashtable 
                    parameters;
    
                    protected javax.xml.namespace.QName 
                    qname;
    
                    protected javax.xml.namespace.QName 
                    type;
    
                    protected int 
                    scope;
    
                    protected org.apache.axis.Handler 
                    singletonInstance;
    
                    public void WSDDDeployableItem();
    
                    public void WSDDDeployableItem(org.w3c.dom.Element) 
                    throws WSDDException;
    
                    public void 
                    setName(String);
    
                    public void 
                    setQName(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getQName();
    
                    public javax.xml.namespace.QName 
                    getType();
    
                    public void 
                    setType(javax.xml.namespace.QName);
    
                    public void 
                    setParameter(String, String);
    
                    public String 
                    getParameter(String);
    
                    public org.apache.axis.utils.LockableHashtable 
                    getParametersTable();
    
                    public void 
                    setOptionsHashtable(java.util.Hashtable);
    
                    public void 
                    writeParamsToContext(org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    public void 
                    removeParameter(String);
    
                    public 
                    final org.apache.axis.Handler 
                    getInstance(org.apache.axis.EngineConfiguration) 
                    throws org.apache.axis.ConfigurationException;
    
                    private org.apache.axis.Handler 
                    getNewInstance(org.apache.axis.EngineConfiguration) 
                    throws org.apache.axis.ConfigurationException;
    
                    protected org.apache.axis.Handler 
                    makeNewInstance(org.apache.axis.EngineConfiguration) 
                    throws org.apache.axis.ConfigurationException;
    Object 
                    createInstance(Class) 
                    throws InstantiationException, IllegalAccessException;
    
                    public Class 
                    getJavaClass() 
                    throws ClassNotFoundException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/deployment/wsdd/WSDDDeployment.class

                    package org.apache.axis.deployment.wsdd;

                    public 
                    synchronized 
                    class WSDDDeployment 
                    extends WSDDElement 
                    implements WSDDTypeMappingContainer, org.apache.axis.WSDDEngineConfiguration {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private java.util.HashMap 
                    handlers;
    
                    private java.util.HashMap 
                    services;
    
                    private java.util.HashMap 
                    transports;
    
                    private java.util.HashMap 
                    typeMappings;
    
                    private WSDDGlobalConfiguration 
                    globalConfig;
    
                    private java.util.HashMap 
                    namespaceToServices;
    
                    private org.apache.axis.AxisEngine 
                    engine;
    org.apache.axis.encoding.TypeMappingRegistry 
                    tmr;
    
                    private boolean 
                    tmrDeployed;
    
                    protected void 
                    addHandler(WSDDHandler);
    
                    protected void 
                    addService(WSDDService);
    
                    protected void 
                    addTransport(WSDDTransport);
    
                    public void 
                    deployHandler(WSDDHandler);
    
                    public void 
                    deployTransport(WSDDTransport);
    
                    public void 
                    deployService(WSDDService);
    
                    public void 
                    undeployHandler(javax.xml.namespace.QName);
    
                    public void 
                    undeployService(javax.xml.namespace.QName);
    
                    public void 
                    undeployTransport(javax.xml.namespace.QName);
    
                    public void 
                    deployTypeMapping(WSDDTypeMapping) 
                    throws WSDDException;
    
                    public void WSDDDeployment();
    
                    public void WSDDDeployment(org.w3c.dom.Element) 
                    throws WSDDException;
    
                    protected javax.xml.namespace.QName 
                    getElementName();
    
                    public void 
                    deployToRegistry(WSDDDeployment) 
                    throws org.apache.axis.ConfigurationException;
    
                    private void 
                    deployMapping(WSDDTypeMapping) 
                    throws WSDDException;
    
                    public void 
                    writeToContext(org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    public WSDDGlobalConfiguration 
                    getGlobalConfiguration();
    
                    public void 
                    setGlobalConfiguration(WSDDGlobalConfiguration);
    
                    public WSDDTypeMapping[] 
                    getTypeMappings();
    
                    public WSDDService[] 
                    getServices();
    
                    public WSDDService 
                    getWSDDService(javax.xml.namespace.QName);
    
                    public org.apache.axis.Handler 
                    getHandler(javax.xml.namespace.QName) 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.Handler 
                    getTransport(javax.xml.namespace.QName) 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.handlers.soap.SOAPService 
                    getService(javax.xml.namespace.QName) 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.handlers.soap.SOAPService 
                    getServiceByNamespaceURI(String) 
                    throws org.apache.axis.ConfigurationException;
    
                    public void 
                    configureEngine(org.apache.axis.AxisEngine) 
                    throws org.apache.axis.ConfigurationException;
    
                    public void 
                    writeEngineConfig(org.apache.axis.AxisEngine) 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.encoding.TypeMapping 
                    getTypeMapping(String) 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.encoding.TypeMappingRegistry 
                    getTypeMappingRegistry() 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.Handler 
                    getGlobalRequest() 
                    throws org.apache.axis.ConfigurationException;
    
                    public org.apache.axis.Handler 
                    getGlobalResponse() 
                    throws org.apache.axis.ConfigurationException;
    
                    public java.util.Hashtable 
                    getGlobalOptions() 
                    throws org.apache.axis.ConfigurationException;
    
                    public java.util.List 
                    getRoles();
    
                    public java.util.Iterator 
                    getDeployedServices() 
                    throws org.apache.axis.ConfigurationException;
    
                    public void 
                    registerNamespaceForService(String, WSDDService);
    
                    public void 
                    removeNamespaceMapping(String);
    
                    public org.apache.axis.AxisEngine 
                    getEngine();
    
                    public WSDDDeployment 
                    getDeployment();
    
                    public WSDDHandler[] 
                    getHandlers();
    
                    public WSDDHandler 
                    getWSDDHandler(javax.xml.namespace.QName);
    
                    public WSDDTransport[] 
                    getTransports();
    
                    public WSDDTransport 
                    getWSDDTransport(javax.xml.namespace.QName);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/deployment/wsdd/WSDDDocument.class

                    package org.apache.axis.deployment.wsdd;

                    public 
                    synchronized 
                    class WSDDDocument 
                    extends WSDDConstants {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private org.w3c.dom.Document 
                    doc;
    
                    private WSDDDeployment 
                    deployment;
    
                    private WSDDUndeployment 
                    undeployment;
    
                    public void WSDDDocument();
    
                    public void WSDDDocument(org.w3c.dom.Document) 
                    throws WSDDException;
    
                    public void WSDDDocument(org.w3c.dom.Element) 
                    throws WSDDException;
    
                    public WSDDDeployment 
                    getDeployment();
    
                    public org.w3c.dom.Document 
                    getDOMDocument() 
                    throws org.apache.axis.ConfigurationException;
    
                    public void 
                    writeToContext(org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    public void 
                    setDocument(org.w3c.dom.Document) 
                    throws WSDDException;
    
                    public void 
                    deploy(WSDDDeployment) 
                    throws org.apache.axis.ConfigurationException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/deployment/wsdd/WSDDDocumentation.class

                    package org.apache.axis.deployment.wsdd;

                    public 
                    synchronized 
                    class WSDDDocumentation 
                    extends WSDDElement {
    
                    private String 
                    value;
    
                    protected javax.xml.namespace.QName 
                    getElementName();
    
                    public void WSDDDocumentation(String);
    
                    public void WSDDDocumentation(org.w3c.dom.Element) 
                    throws WSDDException;
    
                    public String 
                    getValue();
    
                    public void 
                    setValue(String);
    
                    public void 
                    writeToContext(org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
}

                

org/apache/axis/deployment/wsdd/WSDDElement.class

                    package org.apache.axis.deployment.wsdd;

                    public 
                    abstract 
                    synchronized 
                    class WSDDElement 
                    extends WSDDConstants 
                    implements java.io.Serializable {
    
                    private String 
                    name;
    
                    public void WSDDElement();
    
                    public void WSDDElement(org.w3c.dom.Element) 
                    throws WSDDException;
    
                    protected 
                    abstract javax.xml.namespace.QName 
                    getElementName();
    
                    private void 
                    validateCandidateElement(org.w3c.dom.Element) 
                    throws WSDDException;
    
                    public org.w3c.dom.Element 
                    getChildElement(org.w3c.dom.Element, String);
    
                    public org.w3c.dom.Element[] 
                    getChildElements(org.w3c.dom.Element, String);
    
                    public 
                    abstract void 
                    writeToContext(org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
}

                

org/apache/axis/deployment/wsdd/WSDDException.class

                    package org.apache.axis.deployment.wsdd;

                    public 
                    synchronized 
                    class WSDDException 
                    extends org.apache.axis.ConfigurationException {
    
                    public void WSDDException(String);
    
                    public void WSDDException(Exception);
}

                

org/apache/axis/deployment/wsdd/WSDDFault.class

                    package org.apache.axis.deployment.wsdd;

                    public 
                    synchronized 
                    class WSDDFault 
                    extends WSDDElement {
    org.apache.axis.description.FaultDesc 
                    desc;
    
                    public void WSDDFault(org.apache.axis.description.FaultDesc);
    
                    public void WSDDFault(org.w3c.dom.Element) 
                    throws WSDDException;
    
                    protected javax.xml.namespace.QName 
                    getElementName();
    
                    public void 
                    writeToContext(org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    public org.apache.axis.description.FaultDesc 
                    getFaultDesc();
    
                    public void 
                    setFaultDesc(org.apache.axis.description.FaultDesc);
}

                

org/apache/axis/deployment/wsdd/WSDDFaultFlow.class

                    package org.apache.axis.deployment.wsdd;

                    public 
                    synchronized 
                    class WSDDFaultFlow 
                    extends WSDDChain {
    
                    public void WSDDFaultFlow();
    
                    public void WSDDFaultFlow(org.w3c.dom.Element) 
                    throws WSDDException;
    
                    protected javax.xml.namespace.QName 
                    getElementName();
}

                

org/apache/axis/deployment/wsdd/WSDDGlobalConfiguration.class

                    package org.apache.axis.deployment.wsdd;

                    public 
                    synchronized 
                    class WSDDGlobalConfiguration 
                    extends WSDDDeployableItem {
    
                    private WSDDRequestFlow 
                    requestFlow;
    
                    private WSDDResponseFlow 
                    responseFlow;
    
                    private java.util.ArrayList 
                    roles;
    
                    public void WSDDGlobalConfiguration();
    
                    public void WSDDGlobalConfiguration(org.w3c.dom.Element) 
                    throws WSDDException;
    
                    protected javax.xml.namespace.QName 
                    getElementName();
    
                    public WSDDRequestFlow 
                    getRequestFlow();
    
                    public void 
                    setRequestFlow(WSDDRequestFlow);
    
                    public WSDDResponseFlow 
                    getResponseFlow();
    
                    public void 
                    setResponseFlow(WSDDResponseFlow);
    
                    public WSDDFaultFlow[] 
                    getFaultFlows();
    
                    public WSDDFaultFlow 
                    getFaultFlow(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getType();
    
                    public void 
                    setType(String) 
                    throws WSDDException;
    
                    public org.apache.axis.Handler 
                    makeNewInstance(org.apache.axis.EngineConfiguration);
    
                    public void 
                    writeToContext(org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    public void 
                    deployToRegistry(WSDDDeployment) 
                    throws org.apache.axis.ConfigurationException;
    
                    public java.util.List 
                    getRoles();
}

                

org/apache/axis/deployment/wsdd/WSDDHandler.class

                    package org.apache.axis.deployment.wsdd;

                    public 
                    synchronized 
                    class WSDDHandler 
                    extends WSDDDeployableItem {
    
                    public void WSDDHandler();
    
                    public void WSDDHandler(org.w3c.dom.Element) 
                    throws WSDDException;
    
                    protected javax.xml.namespace.QName 
                    getElementName();
    
                    public void 
                    writeToContext(org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    public void 
                    deployToRegistry(WSDDDeployment);
}

                

org/apache/axis/deployment/wsdd/WSDDJAXRPCHandlerInfo.class

                    package org.apache.axis.deployment.wsdd;

                    public 
                    synchronized 
                    class WSDDJAXRPCHandlerInfo 
                    extends WSDDElement {
    
                    private String 
                    _classname;
    
                    private java.util.Map 
                    _map;
    
                    private javax.xml.namespace.QName[] 
                    _headers;
    
                    public void WSDDJAXRPCHandlerInfo();
    
                    public void WSDDJAXRPCHandlerInfo(org.w3c.dom.Element) 
                    throws WSDDException;
    
                    protected javax.xml.namespace.QName 
                    getElementName();
    
                    public String 
                    getHandlerClassName();
    
                    public void 
                    setHandlerClassName(String);
    
                    public java.util.Map 
                    getHandlerMap();
    
                    public void 
                    setHandlerMap(java.util.Map);
    
                    public javax.xml.namespace.QName[] 
                    getHeaders();
    
                    public void 
                    setHeaders(javax.xml.namespace.QName[]);
    
                    public void 
                    writeToContext(org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
}

                

org/apache/axis/deployment/wsdd/WSDDJAXRPCHandlerInfoChain.class

                    package org.apache.axis.deployment.wsdd;

                    public 
                    synchronized 
                    class WSDDJAXRPCHandlerInfoChain 
                    extends WSDDHandler {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private java.util.ArrayList 
                    _hiList;
    
                    private org.apache.axis.handlers.HandlerInfoChainFactory 
                    _hiChainFactory;
    
                    private String[] 
                    _roles;
    
                    public void WSDDJAXRPCHandlerInfoChain();
    
                    public void WSDDJAXRPCHandlerInfoChain(org.w3c.dom.Element) 
                    throws WSDDException;
    
                    public org.apache.axis.handlers.HandlerInfoChainFactory 
                    getHandlerChainFactory();
    
                    public void 
                    setHandlerChainFactory(org.apache.axis.handlers.HandlerInfoChainFactory);
    
                    protected javax.xml.namespace.QName 
                    getElementName();
    
                    public void 
                    writeToContext(org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    public java.util.ArrayList 
                    getHandlerInfoList();
    
                    public void 
                    setHandlerInfoList(java.util.ArrayList);
    
                    public String[] 
                    getRoles();
    
                    public void 
                    setRoles(String[]);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/deployment/wsdd/WSDDNonFatalException.class

                    package org.apache.axis.deployment.wsdd;

                    public 
                    synchronized 
                    class WSDDNonFatalException 
                    extends WSDDException {
    
                    public void WSDDNonFatalException(String);
    
                    public void WSDDNonFatalException(Exception);
}

                

org/apache/axis/deployment/wsdd/WSDDOperation.class

                    package org.apache.axis.deployment.wsdd;

                    public 
                    synchronized 
                    class WSDDOperation 
                    extends WSDDElement {
    org.apache.axis.description.OperationDesc 
                    desc;
    
                    public void WSDDOperation(org.apache.axis.description.OperationDesc);
    
                    public void WSDDOperation(org.w3c.dom.Element, org.apache.axis.description.ServiceDesc) 
                    throws WSDDException;
    
                    public void 
                    writeToContext(org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    protected javax.xml.namespace.QName 
                    getElementName();
    
                    public org.apache.axis.description.OperationDesc 
                    getOperationDesc();
}

                

org/apache/axis/deployment/wsdd/WSDDParameter.class

                    package org.apache.axis.deployment.wsdd;

                    public 
                    synchronized 
                    class WSDDParameter 
                    extends WSDDElement {
    org.apache.axis.description.OperationDesc 
                    parent;
    org.apache.axis.description.ParameterDesc 
                    parameter;
    
                    public void WSDDParameter(org.w3c.dom.Element, org.apache.axis.description.OperationDesc) 
                    throws WSDDException;
    
                    public void WSDDParameter();
    
                    public void WSDDParameter(org.apache.axis.description.ParameterDesc);
    
                    public void 
                    writeToContext(org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    public org.apache.axis.description.ParameterDesc 
                    getParameter();
    
                    public void 
                    setParameter(org.apache.axis.description.ParameterDesc);
    
                    protected javax.xml.namespace.QName 
                    getElementName();
}

                

org/apache/axis/deployment/wsdd/WSDDProvider.class

                    package org.apache.axis.deployment.wsdd;

                    public 
                    abstract 
                    synchronized 
                    class WSDDProvider {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private 
                    static 
                    final String 
                    PLUGABLE_PROVIDER_FILENAME = org.apache.axis.deployment.wsdd.Provider;
    
                    private 
                    static java.util.Hashtable 
                    providers;
    
                    public void WSDDProvider();
    
                    private 
                    static void 
                    loadPluggableProviders();
    
                    public 
                    static void 
                    registerProvider(javax.xml.namespace.QName, WSDDProvider);
    
                    public WSDDOperation[] 
                    getOperations();
    
                    public WSDDOperation 
                    getOperation(String);
    
                    public 
                    static org.apache.axis.Handler 
                    getInstance(javax.xml.namespace.QName, WSDDService, org.apache.axis.EngineConfiguration) 
                    throws Exception;
    
                    public 
                    abstract org.apache.axis.Handler 
                    newProviderInstance(WSDDService, org.apache.axis.EngineConfiguration) 
                    throws Exception;
    
                    public 
                    abstract String 
                    getName();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/deployment/wsdd/WSDDRequestFlow.class

                    package org.apache.axis.deployment.wsdd;

                    public 
                    synchronized 
                    class WSDDRequestFlow 
                    extends WSDDChain {
    
                    public void WSDDRequestFlow();
    
                    public void WSDDRequestFlow(org.w3c.dom.Element) 
                    throws WSDDException;
    
                    protected javax.xml.namespace.QName 
                    getElementName();
}

                

org/apache/axis/deployment/wsdd/WSDDResponseFlow.class

                    package org.apache.axis.deployment.wsdd;

                    public 
                    synchronized 
                    class WSDDResponseFlow 
                    extends WSDDChain {
    
                    public void WSDDResponseFlow();
    
                    public void WSDDResponseFlow(org.w3c.dom.Element) 
                    throws WSDDException;
    
                    protected javax.xml.namespace.QName 
                    getElementName();
}

                

org/apache/axis/deployment/wsdd/WSDDService.class

                    package org.apache.axis.deployment.wsdd;

                    public 
                    synchronized 
                    class WSDDService 
                    extends WSDDTargetedChain 
                    implements WSDDTypeMappingContainer {
    
                    private org.apache.axis.encoding.TypeMappingRegistry 
                    tmr;
    
                    private java.util.Vector 
                    faultFlows;
    
                    private java.util.Vector 
                    typeMappings;
    
                    private java.util.Vector 
                    operations;
    
                    private java.util.Vector 
                    namespaces;
    
                    private java.util.List 
                    roles;
    
                    private String 
                    descriptionURL;
    
                    private org.apache.axis.constants.Style 
                    style;
    
                    private org.apache.axis.constants.Use 
                    use;
    
                    private 
                    transient org.apache.axis.handlers.soap.SOAPService 
                    cachedService;
    
                    private javax.xml.namespace.QName 
                    providerQName;
    
                    private WSDDJAXRPCHandlerInfoChain 
                    _wsddHIchain;
    org.apache.axis.description.JavaServiceDesc 
                    desc;
    
                    private boolean 
                    streaming;
    
                    private int 
                    sendType;
    
                    public void WSDDService();
    
                    public void WSDDService(org.w3c.dom.Element) 
                    throws WSDDException;
    
                    protected void 
                    initTMR() 
                    throws WSDDException;
    
                    private void 
                    createTMR();
    
                    public void 
                    validateDescriptors() 
                    throws WSDDException;
    
                    public void 
                    addTypeMapping(WSDDTypeMapping);
    
                    public void 
                    addOperation(WSDDOperation);
    
                    protected javax.xml.namespace.QName 
                    getElementName();
    
                    public String 
                    getServiceDescriptionURL();
    
                    public void 
                    setServiceDescriptionURL(String);
    
                    public javax.xml.namespace.QName 
                    getProviderQName();
    
                    public void 
                    setProviderQName(javax.xml.namespace.QName);
    
                    public org.apache.axis.description.ServiceDesc 
                    getServiceDesc();
    
                    public org.apache.axis.constants.Style 
                    getStyle();
    
                    public void 
                    setStyle(org.apache.axis.constants.Style);
    
                    public org.apache.axis.constants.Use 
                    getUse();
    
                    public void 
                    setUse(org.apache.axis.constants.Use);
    
                    public WSDDFaultFlow[] 
                    getFaultFlows();
    
                    public java.util.Vector 
                    getNamespaces();
    
                    public WSDDFaultFlow 
                    getFaultFlow(javax.xml.namespace.QName);
    
                    public org.apache.axis.Handler 
                    makeNewInstance(org.apache.axis.EngineConfiguration) 
                    throws org.apache.axis.ConfigurationException;
    
                    public void 
                    deployTypeMapping(WSDDTypeMapping) 
                    throws WSDDException;
    
                    public void 
                    writeToContext(org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    public void 
                    setCachedService(org.apache.axis.handlers.soap.SOAPService);
    
                    public java.util.Vector 
                    getTypeMappings();
    
                    public void 
                    setTypeMappings(java.util.Vector);
    
                    public void 
                    deployToRegistry(WSDDDeployment);
    
                    public void 
                    removeNamespaceMappings(WSDDDeployment);
    
                    public org.apache.axis.encoding.TypeMapping 
                    getTypeMapping(String);
    
                    public WSDDJAXRPCHandlerInfoChain 
                    getHandlerInfoChain();
    
                    public void 
                    setHandlerInfoChain(WSDDJAXRPCHandlerInfoChain);
}

                

org/apache/axis/deployment/wsdd/WSDDTargetedChain.class

                    package org.apache.axis.deployment.wsdd;

                    public 
                    abstract 
                    synchronized 
                    class WSDDTargetedChain 
                    extends WSDDDeployableItem {
    
                    private WSDDRequestFlow 
                    requestFlow;
    
                    private WSDDResponseFlow 
                    responseFlow;
    
                    private javax.xml.namespace.QName 
                    pivotQName;
    
                    protected void WSDDTargetedChain();
    
                    protected void WSDDTargetedChain(org.w3c.dom.Element) 
                    throws WSDDException;
    
                    public WSDDRequestFlow 
                    getRequestFlow();
    
                    public void 
                    setRequestFlow(WSDDRequestFlow);
    
                    public WSDDResponseFlow 
                    getResponseFlow();
    
                    public void 
                    setResponseFlow(WSDDResponseFlow);
    
                    public WSDDFaultFlow[] 
                    getFaultFlows();
    
                    public WSDDFaultFlow 
                    getFaultFlow(javax.xml.namespace.QName);
    
                    public void 
                    setType(String) 
                    throws WSDDException;
    
                    public javax.xml.namespace.QName 
                    getPivotQName();
    
                    public void 
                    setPivotQName(javax.xml.namespace.QName);
    
                    public org.apache.axis.Handler 
                    makeNewInstance(org.apache.axis.EngineConfiguration) 
                    throws org.apache.axis.ConfigurationException;
    
                    public 
                    final void 
                    writeFlowsToContext(org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    public void 
                    deployToRegistry(WSDDDeployment);
}

                

org/apache/axis/deployment/wsdd/WSDDTransport.class

                    package org.apache.axis.deployment.wsdd;

                    public 
                    synchronized 
                    class WSDDTransport 
                    extends WSDDTargetedChain {
    
                    public void WSDDTransport();
    
                    public void WSDDTransport(org.w3c.dom.Element) 
                    throws WSDDException;
    
                    protected javax.xml.namespace.QName 
                    getElementName();
    
                    public void 
                    writeToContext(org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    public void 
                    deployToRegistry(WSDDDeployment);
}

                

org/apache/axis/deployment/wsdd/WSDDTypeMapping.class

                    package org.apache.axis.deployment.wsdd;

                    public 
                    synchronized 
                    class WSDDTypeMapping 
                    extends WSDDElement {
    
                    protected javax.xml.namespace.QName 
                    qname;
    
                    protected String 
                    serializer;
    
                    protected String 
                    deserializer;
    
                    protected javax.xml.namespace.QName 
                    typeQName;
    
                    protected String 
                    ref;
    
                    protected String 
                    encodingStyle;
    
                    public void WSDDTypeMapping();
    
                    public void WSDDTypeMapping(org.w3c.dom.Element) 
                    throws WSDDException;
    
                    public void 
                    writeToContext(org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    protected javax.xml.namespace.QName 
                    getElementName();
    
                    public String 
                    getRef();
    
                    public void 
                    setRef(String);
    
                    public String 
                    getEncodingStyle();
    
                    public void 
                    setEncodingStyle(String);
    
                    public javax.xml.namespace.QName 
                    getQName();
    
                    public void 
                    setQName(javax.xml.namespace.QName);
    
                    public Class 
                    getLanguageSpecificType() 
                    throws ClassNotFoundException;
    
                    public void 
                    setLanguageSpecificType(Class);
    
                    public void 
                    setLanguageSpecificType(String);
    
                    public Class 
                    getSerializer() 
                    throws ClassNotFoundException;
    
                    public String 
                    getSerializerName();
    
                    public void 
                    setSerializer(Class);
    
                    public void 
                    setSerializer(String);
    
                    public Class 
                    getDeserializer() 
                    throws ClassNotFoundException;
    
                    public String 
                    getDeserializerName();
    
                    public void 
                    setDeserializer(Class);
    
                    public void 
                    setDeserializer(String);
}

                

org/apache/axis/deployment/wsdd/WSDDTypeMappingContainer.class

                    package org.apache.axis.deployment.wsdd;

                    public 
                    abstract 
                    interface WSDDTypeMappingContainer {
    
                    public 
                    abstract void 
                    deployTypeMapping(WSDDTypeMapping) 
                    throws WSDDException;
}

                

org/apache/axis/deployment/wsdd/WSDDUndeployment.class

                    package org.apache.axis.deployment.wsdd;

                    public 
                    synchronized 
                    class WSDDUndeployment 
                    extends WSDDElement 
                    implements WSDDTypeMappingContainer {
    
                    private java.util.Vector 
                    handlers;
    
                    private java.util.Vector 
                    chains;
    
                    private java.util.Vector 
                    services;
    
                    private java.util.Vector 
                    transports;
    
                    private java.util.Vector 
                    typeMappings;
    
                    public void 
                    addHandler(javax.xml.namespace.QName);
    
                    public void 
                    addChain(javax.xml.namespace.QName);
    
                    public void 
                    addTransport(javax.xml.namespace.QName);
    
                    public void 
                    addService(javax.xml.namespace.QName);
    
                    public void 
                    deployTypeMapping(WSDDTypeMapping) 
                    throws WSDDException;
    
                    public void WSDDUndeployment();
    
                    private javax.xml.namespace.QName 
                    getQName(org.w3c.dom.Element) 
                    throws WSDDException;
    
                    public void WSDDUndeployment(org.w3c.dom.Element) 
                    throws WSDDException;
    
                    protected javax.xml.namespace.QName 
                    getElementName();
    
                    public void 
                    undeployFromRegistry(WSDDDeployment) 
                    throws org.apache.axis.ConfigurationException;
    
                    private void 
                    writeElement(org.apache.axis.encoding.SerializationContext, javax.xml.namespace.QName, javax.xml.namespace.QName) 
                    throws java.io.IOException;
    
                    public void 
                    writeToContext(org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    public WSDDTypeMapping[] 
                    getTypeMappings();
}

                

org/apache/axis/deployment/wsdd/providers/WSDDBsfProvider.class

                    package org.apache.axis.deployment.wsdd.providers;

                    public 
                    synchronized 
                    class WSDDBsfProvider 
                    extends org.apache.axis.deployment.wsdd.WSDDProvider {
    
                    public void WSDDBsfProvider();
    
                    public String 
                    getName();
    
                    public org.apache.axis.Handler 
                    newProviderInstance(org.apache.axis.deployment.wsdd.WSDDService, org.apache.axis.EngineConfiguration) 
                    throws Exception;
    
                    public void 
                    writeToContext(org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
}

                

org/apache/axis/deployment/wsdd/providers/WSDDComProvider.class

                    package org.apache.axis.deployment.wsdd.providers;

                    public 
                    synchronized 
                    class WSDDComProvider 
                    extends org.apache.axis.deployment.wsdd.WSDDProvider {
    
                    public 
                    static 
                    final String 
                    OPTION_PROGID = ProgID;
    
                    public 
                    static 
                    final String 
                    OPTION_THREADING_MODEL = threadingModel;
    
                    public void WSDDComProvider();
    
                    public String 
                    getName();
    
                    public org.apache.axis.Handler 
                    newProviderInstance(org.apache.axis.deployment.wsdd.WSDDService, org.apache.axis.EngineConfiguration) 
                    throws Exception;
}

                

org/apache/axis/deployment/wsdd/providers/WSDDHandlerProvider.class

                    package org.apache.axis.deployment.wsdd.providers;

                    public 
                    synchronized 
                    class WSDDHandlerProvider 
                    extends org.apache.axis.deployment.wsdd.WSDDProvider {
    
                    public void WSDDHandlerProvider();
    
                    public String 
                    getName();
    
                    public org.apache.axis.Handler 
                    newProviderInstance(org.apache.axis.deployment.wsdd.WSDDService, org.apache.axis.EngineConfiguration) 
                    throws Exception;
}

                

org/apache/axis/deployment/wsdd/providers/WSDDJavaCORBAProvider.class

                    package org.apache.axis.deployment.wsdd.providers;

                    public 
                    synchronized 
                    class WSDDJavaCORBAProvider 
                    extends org.apache.axis.deployment.wsdd.WSDDProvider {
    
                    public void WSDDJavaCORBAProvider();
    
                    public String 
                    getName();
    
                    public org.apache.axis.Handler 
                    newProviderInstance(org.apache.axis.deployment.wsdd.WSDDService, org.apache.axis.EngineConfiguration) 
                    throws Exception;
}

                

org/apache/axis/deployment/wsdd/providers/WSDDJavaEJBProvider.class

                    package org.apache.axis.deployment.wsdd.providers;

                    public 
                    synchronized 
                    class WSDDJavaEJBProvider 
                    extends org.apache.axis.deployment.wsdd.WSDDProvider {
    
                    public void WSDDJavaEJBProvider();
    
                    public String 
                    getName();
    
                    public org.apache.axis.Handler 
                    newProviderInstance(org.apache.axis.deployment.wsdd.WSDDService, org.apache.axis.EngineConfiguration) 
                    throws Exception;
}

                

org/apache/axis/deployment/wsdd/providers/WSDDJavaMsgProvider.class

                    package org.apache.axis.deployment.wsdd.providers;

                    public 
                    synchronized 
                    class WSDDJavaMsgProvider 
                    extends org.apache.axis.deployment.wsdd.WSDDProvider {
    
                    public void WSDDJavaMsgProvider();
    
                    public String 
                    getName();
    
                    public org.apache.axis.Handler 
                    newProviderInstance(org.apache.axis.deployment.wsdd.WSDDService, org.apache.axis.EngineConfiguration) 
                    throws Exception;
}

                

org/apache/axis/deployment/wsdd/providers/WSDDJavaRMIProvider.class

                    package org.apache.axis.deployment.wsdd.providers;

                    public 
                    synchronized 
                    class WSDDJavaRMIProvider 
                    extends org.apache.axis.deployment.wsdd.WSDDProvider {
    
                    public void WSDDJavaRMIProvider();
    
                    public String 
                    getName();
    
                    public org.apache.axis.Handler 
                    newProviderInstance(org.apache.axis.deployment.wsdd.WSDDService, org.apache.axis.EngineConfiguration) 
                    throws Exception;
}

                

org/apache/axis/deployment/wsdd/providers/WSDDJavaRPCProvider.class

                    package org.apache.axis.deployment.wsdd.providers;

                    public 
                    synchronized 
                    class WSDDJavaRPCProvider 
                    extends org.apache.axis.deployment.wsdd.WSDDProvider {
    
                    public void WSDDJavaRPCProvider();
    
                    public String 
                    getName();
    
                    public org.apache.axis.Handler 
                    newProviderInstance(org.apache.axis.deployment.wsdd.WSDDService, org.apache.axis.EngineConfiguration) 
                    throws Exception;
}

                

org/apache/axis/description/AttributeDesc.class

                    package org.apache.axis.description;

                    public 
                    synchronized 
                    class AttributeDesc 
                    extends FieldDesc 
                    implements java.io.Serializable {
    
                    public void AttributeDesc();
    
                    public void 
                    setAttributeName(String);
}

                

org/apache/axis/description/ElementDesc.class

                    package org.apache.axis.description;

                    public 
                    synchronized 
                    class ElementDesc 
                    extends FieldDesc 
                    implements java.io.Serializable {
    
                    private int 
                    minOccurs;
    
                    private int 
                    maxOccurs;
    
                    private boolean 
                    nillable;
    
                    private boolean 
                    unbounded;
    
                    private javax.xml.namespace.QName 
                    arrayType;
    
                    private javax.xml.namespace.QName 
                    itemQName;
    
                    public void ElementDesc();
    
                    public boolean 
                    isMinOccursZero();
    
                    public int 
                    getMinOccurs();
    
                    public void 
                    setMinOccurs(int);
    
                    public int 
                    getMaxOccurs();
    
                    public void 
                    setMaxOccurs(int);
    
                    public void 
                    setMaxOccursUnbounded(boolean);
    
                    public boolean 
                    isMaxOccursUnbounded();
    
                    public boolean 
                    isNillable();
    
                    public void 
                    setNillable(boolean);
    
                    public javax.xml.namespace.QName 
                    getArrayType();
    
                    public void 
                    setArrayType(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getItemQName();
    
                    public void 
                    setItemQName(javax.xml.namespace.QName);
}

                

org/apache/axis/description/FaultDesc.class

                    package org.apache.axis.description;

                    public 
                    synchronized 
                    class FaultDesc 
                    implements java.io.Serializable {
    
                    private String 
                    name;
    
                    private javax.xml.namespace.QName 
                    qname;
    
                    private java.util.ArrayList 
                    parameters;
    
                    private String 
                    className;
    
                    private javax.xml.namespace.QName 
                    xmlType;
    
                    private boolean 
                    complex;
    
                    public void FaultDesc();
    
                    public void FaultDesc(javax.xml.namespace.QName, String, javax.xml.namespace.QName, boolean);
    
                    public javax.xml.namespace.QName 
                    getQName();
    
                    public void 
                    setQName(javax.xml.namespace.QName);
    
                    public String 
                    getName();
    
                    public void 
                    setName(String);
    
                    public java.util.ArrayList 
                    getParameters();
    
                    public void 
                    setParameters(java.util.ArrayList);
    
                    public String 
                    getClassName();
    
                    public void 
                    setClassName(String);
    
                    public boolean 
                    isComplex();
    
                    public void 
                    setComplex(boolean);
    
                    public javax.xml.namespace.QName 
                    getXmlType();
    
                    public void 
                    setXmlType(javax.xml.namespace.QName);
    
                    public String 
                    toString();
    
                    public String 
                    toString(String);
}

                

org/apache/axis/description/FieldDesc.class

                    package org.apache.axis.description;

                    public 
                    synchronized 
                    class FieldDesc 
                    implements java.io.Serializable {
    
                    private String 
                    fieldName;
    
                    private javax.xml.namespace.QName 
                    xmlName;
    
                    private javax.xml.namespace.QName 
                    xmlType;
    
                    private Class 
                    javaType;
    
                    private boolean 
                    _isElement;
    
                    private boolean 
                    minOccursIs0;
    
                    protected void FieldDesc(boolean);
    
                    public String 
                    getFieldName();
    
                    public void 
                    setFieldName(String);
    
                    public javax.xml.namespace.QName 
                    getXmlName();
    
                    public void 
                    setXmlName(javax.xml.namespace.QName);
    
                    public Class 
                    getJavaType();
    
                    public void 
                    setJavaType(Class);
    
                    public javax.xml.namespace.QName 
                    getXmlType();
    
                    public void 
                    setXmlType(javax.xml.namespace.QName);
    
                    public boolean 
                    isElement();
    
                    public boolean 
                    isIndexed();
    
                    public boolean 
                    isMinOccursZero();
    
                    public void 
                    setMinOccursIs0(boolean);
}

                

org/apache/axis/description/JavaServiceDesc$1.class

                    package org.apache.axis.description;

                    synchronized 
                    class JavaServiceDesc$1 
                    implements java.util.Comparator {
    void JavaServiceDesc$1(JavaServiceDesc);
    
                    public int 
                    compare(Object, Object);
}

                

org/apache/axis/description/JavaServiceDesc.class

                    package org.apache.axis.description;

                    public 
                    synchronized 
                    class JavaServiceDesc 
                    implements ServiceDesc {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private String 
                    name;
    
                    private String 
                    documentation;
    
                    private org.apache.axis.constants.Style 
                    style;
    
                    private org.apache.axis.constants.Use 
                    use;
    
                    private boolean 
                    useSet;
    
                    private java.util.ArrayList 
                    operations;
    
                    private java.util.List 
                    namespaceMappings;
    
                    private String 
                    wsdlFileName;
    
                    private String 
                    endpointURL;
    
                    private java.util.HashMap 
                    properties;
    
                    private java.util.HashMap 
                    name2OperationsMap;
    
                    private java.util.HashMap 
                    qname2OperationsMap;
    
                    private 
                    transient java.util.HashMap 
                    method2OperationMap;
    
                    private java.util.List 
                    allowedMethods;
    
                    private java.util.List 
                    disallowedMethods;
    
                    private Class 
                    implClass;
    
                    private boolean 
                    isSkeletonClass;
    
                    private 
                    transient reflect.Method 
                    skelMethod;
    
                    private java.util.ArrayList 
                    stopClasses;
    
                    private 
                    transient java.util.HashMap 
                    method2ParamsMap;
    
                    private OperationDesc 
                    messageServiceDefaultOp;
    
                    private java.util.ArrayList 
                    completedNames;
    
                    private org.apache.axis.encoding.TypeMapping 
                    tm;
    
                    private org.apache.axis.encoding.TypeMappingRegistry 
                    tmr;
    
                    private boolean 
                    haveAllSkeletonMethods;
    
                    private boolean 
                    introspectionComplete;
    
                    public void JavaServiceDesc();
    
                    public org.apache.axis.constants.Style 
                    getStyle();
    
                    public void 
                    setStyle(org.apache.axis.constants.Style);
    
                    public org.apache.axis.constants.Use 
                    getUse();
    
                    public void 
                    setUse(org.apache.axis.constants.Use);
    
                    public boolean 
                    isWrapped();
    
                    public String 
                    getWSDLFile();
    
                    public void 
                    setWSDLFile(String);
    
                    public java.util.List 
                    getAllowedMethods();
    
                    public void 
                    setAllowedMethods(java.util.List);
    
                    public Class 
                    getImplClass();
    
                    public void 
                    setImplClass(Class);
    
                    private void 
                    loadSkeletonOperations();
    
                    public org.apache.axis.encoding.TypeMapping 
                    getTypeMapping();
    
                    public void 
                    setTypeMapping(org.apache.axis.encoding.TypeMapping);
    
                    public String 
                    getName();
    
                    public void 
                    setName(String);
    
                    public String 
                    getDocumentation();
    
                    public void 
                    setDocumentation(String);
    
                    public java.util.ArrayList 
                    getStopClasses();
    
                    public void 
                    setStopClasses(java.util.ArrayList);
    
                    public java.util.List 
                    getDisallowedMethods();
    
                    public void 
                    setDisallowedMethods(java.util.List);
    
                    public void 
                    removeOperationDesc(OperationDesc);
    
                    public void 
                    addOperationDesc(OperationDesc);
    
                    public java.util.ArrayList 
                    getOperations();
    
                    public OperationDesc[] 
                    getOperationsByName(String);
    
                    public OperationDesc 
                    getOperationByName(String);
    
                    public OperationDesc 
                    getOperationByElementQName(javax.xml.namespace.QName);
    
                    public OperationDesc[] 
                    getOperationsByQName(javax.xml.namespace.QName);
    
                    private 
                    synchronized void 
                    initQNameMap();
    
                    private void 
                    syncOperationToClass(OperationDesc, Class);
    
                    private reflect.Method[] 
                    getMethods(Class);
    
                    private int 
                    checkMessageMethod(reflect.Method);
    
                    public void 
                    loadServiceDescByIntrospection();
    
                    public void 
                    loadServiceDescByIntrospection(Class);
    
                    private boolean 
                    isServiceLifeCycleMethod(Class, reflect.Method);
    
                    private void 
                    loadServiceDescByIntrospectionRecursive(Class);
    
                    public void 
                    loadServiceDescByIntrospection(Class, org.apache.axis.encoding.TypeMapping);
    
                    private void 
                    getSyncedOperationsForName(Class, String);
    
                    private String 
                    getUniqueOperationName(String);
    
                    private void 
                    createOperationsForName(Class, String);
    
                    private void 
                    createOperationForMethod(reflect.Method);
    
                    private javax.xml.namespace.QName 
                    getTypeQName(Class);
    
                    private void 
                    createFaultMetadata(reflect.Method, OperationDesc);
    
                    private String[] 
                    getParamNames(reflect.Method);
    
                    public void 
                    setNamespaceMappings(java.util.List);
    
                    public String 
                    getDefaultNamespace();
    
                    public void 
                    setDefaultNamespace(String);
    
                    public void 
                    setProperty(String, Object);
    
                    public Object 
                    getProperty(String);
    
                    public String 
                    getEndpointURL();
    
                    public void 
                    setEndpointURL(String);
    
                    public org.apache.axis.encoding.TypeMappingRegistry 
                    getTypeMappingRegistry();
    
                    public void 
                    setTypeMappingRegistry(org.apache.axis.encoding.TypeMappingRegistry);
    
                    public boolean 
                    isInitialized();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/description/OperationDesc.class

                    package org.apache.axis.description;

                    public 
                    synchronized 
                    class OperationDesc 
                    implements java.io.Serializable {
    
                    public 
                    static 
                    final int 
                    MSG_METHOD_BODYARRAY = 1;
    
                    public 
                    static 
                    final int 
                    MSG_METHOD_SOAPENVELOPE = 2;
    
                    public 
                    static 
                    final int 
                    MSG_METHOD_ELEMENTARRAY = 3;
    
                    public 
                    static 
                    final int 
                    MSG_METHOD_DOCUMENT = 4;
    
                    public 
                    static 
                    final int 
                    MSG_METHOD_NONCONFORMING = -4;
    
                    public 
                    static java.util.Map 
                    mepStrings;
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private ServiceDesc 
                    parent;
    
                    private java.util.ArrayList 
                    parameters;
    
                    private String 
                    name;
    
                    private javax.xml.namespace.QName 
                    elementQName;
    
                    private 
                    transient reflect.Method 
                    method;
    
                    private org.apache.axis.constants.Style 
                    style;
    
                    private org.apache.axis.constants.Use 
                    use;
    
                    private int 
                    numInParams;
    
                    private int 
                    numOutParams;
    
                    private String 
                    soapAction;
    
                    private java.util.ArrayList 
                    faults;
    
                    private ParameterDesc 
                    returnDesc;
    
                    private int 
                    messageOperationStyle;
    
                    private String 
                    documentation;
    
                    private javax.wsdl.OperationType 
                    mep;
    
                    public void OperationDesc();
    
                    public void OperationDesc(String, ParameterDesc[], javax.xml.namespace.QName);
    
                    public String 
                    getName();
    
                    public void 
                    setName(String);
    
                    public String 
                    getDocumentation();
    
                    public void 
                    setDocumentation(String);
    
                    public javax.xml.namespace.QName 
                    getReturnQName();
    
                    public void 
                    setReturnQName(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getReturnType();
    
                    public void 
                    setReturnType(javax.xml.namespace.QName);
    
                    public Class 
                    getReturnClass();
    
                    public void 
                    setReturnClass(Class);
    
                    public javax.xml.namespace.QName 
                    getElementQName();
    
                    public void 
                    setElementQName(javax.xml.namespace.QName);
    
                    public ServiceDesc 
                    getParent();
    
                    public void 
                    setParent(ServiceDesc);
    
                    public String 
                    getSoapAction();
    
                    public void 
                    setSoapAction(String);
    
                    public void 
                    setStyle(org.apache.axis.constants.Style);
    
                    public org.apache.axis.constants.Style 
                    getStyle();
    
                    public void 
                    setUse(org.apache.axis.constants.Use);
    
                    public org.apache.axis.constants.Use 
                    getUse();
    
                    public void 
                    addParameter(ParameterDesc);
    
                    public void 
                    addParameter(javax.xml.namespace.QName, javax.xml.namespace.QName, Class, byte, boolean, boolean);
    
                    public ParameterDesc 
                    getParameter(int);
    
                    public java.util.ArrayList 
                    getParameters();
    
                    public void 
                    setParameters(java.util.ArrayList);
    
                    public int 
                    getNumInParams();
    
                    public int 
                    getNumOutParams();
    
                    public int 
                    getNumParams();
    
                    public reflect.Method 
                    getMethod();
    
                    public void 
                    setMethod(reflect.Method);
    
                    public boolean 
                    isReturnHeader();
    
                    public void 
                    setReturnHeader(boolean);
    
                    public ParameterDesc 
                    getParamByQName(javax.xml.namespace.QName);
    
                    public ParameterDesc 
                    getInputParamByQName(javax.xml.namespace.QName);
    
                    public ParameterDesc 
                    getOutputParamByQName(javax.xml.namespace.QName);
    
                    public java.util.ArrayList 
                    getAllInParams();
    
                    public java.util.ArrayList 
                    getAllOutParams();
    
                    public java.util.ArrayList 
                    getOutParams();
    
                    public void 
                    addFault(FaultDesc);
    
                    public java.util.ArrayList 
                    getFaults();
    
                    public FaultDesc 
                    getFaultByClass(Class);
    
                    public FaultDesc 
                    getFaultByClass(Class, boolean);
    
                    public FaultDesc 
                    getFaultByQName(javax.xml.namespace.QName);
    
                    public FaultDesc 
                    getFaultByXmlType(javax.xml.namespace.QName);
    
                    public ParameterDesc 
                    getReturnParamDesc();
    
                    public String 
                    toString();
    
                    public String 
                    toString(String);
    
                    public int 
                    getMessageOperationStyle();
    
                    public void 
                    setMessageOperationStyle(int);
    
                    public javax.wsdl.OperationType 
                    getMep();
    
                    public void 
                    setMep(javax.wsdl.OperationType);
    
                    public void 
                    setMep(String);
    
                    private void 
                    writeObject(java.io.ObjectOutputStream) 
                    throws java.io.IOException;
    
                    private void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/description/ParameterDesc.class

                    package org.apache.axis.description;

                    public 
                    synchronized 
                    class ParameterDesc 
                    implements java.io.Serializable {
    
                    public 
                    static 
                    final byte 
                    IN = 1;
    
                    public 
                    static 
                    final byte 
                    OUT = 2;
    
                    public 
                    static 
                    final byte 
                    INOUT = 3;
    
                    private 
                    transient javax.xml.namespace.QName 
                    name;
    
                    public org.apache.axis.wsdl.symbolTable.TypeEntry 
                    typeEntry;
    
                    private byte 
                    mode;
    
                    private javax.xml.namespace.QName 
                    typeQName;
    
                    private Class 
                    javaType;
    
                    private int 
                    order;
    
                    private boolean 
                    isReturn;
    
                    private String 
                    mimeType;
    
                    private javax.xml.namespace.QName 
                    itemQName;
    
                    private javax.xml.namespace.QName 
                    itemType;
    
                    private boolean 
                    inHeader;
    
                    private boolean 
                    outHeader;
    
                    private String 
                    documentation;
    
                    private boolean 
                    omittable;
    
                    private boolean 
                    nillable;
    
                    public void ParameterDesc();
    
                    public void ParameterDesc(ParameterDesc);
    
                    public void ParameterDesc(javax.xml.namespace.QName, byte, javax.xml.namespace.QName);
    
                    public void ParameterDesc(javax.xml.namespace.QName, byte, javax.xml.namespace.QName, Class, boolean, boolean);
    
                    public void ParameterDesc(javax.xml.namespace.QName, byte, javax.xml.namespace.QName, Class);
    
                    public String 
                    toString();
    
                    public String 
                    toString(String);
    
                    public 
                    static byte 
                    modeFromString(String);
    
                    public 
                    static String 
                    getModeAsString(byte);
    
                    public javax.xml.namespace.QName 
                    getQName();
    
                    public String 
                    getName();
    
                    public void 
                    setName(String);
    
                    public void 
                    setQName(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getTypeQName();
    
                    public void 
                    setTypeQName(javax.xml.namespace.QName);
    
                    public Class 
                    getJavaType();
    
                    public void 
                    setJavaType(Class);
    
                    public byte 
                    getMode();
    
                    public void 
                    setMode(byte);
    
                    public int 
                    getOrder();
    
                    public void 
                    setOrder(int);
    
                    public void 
                    setInHeader(boolean);
    
                    public boolean 
                    isInHeader();
    
                    public void 
                    setOutHeader(boolean);
    
                    public boolean 
                    isOutHeader();
    
                    public boolean 
                    getIsReturn();
    
                    public void 
                    setIsReturn(boolean);
    
                    public String 
                    getDocumentation();
    
                    public void 
                    setDocumentation(String);
    
                    private void 
                    writeObject(java.io.ObjectOutputStream) 
                    throws java.io.IOException;
    
                    private void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    public javax.xml.namespace.QName 
                    getItemQName();
    
                    public void 
                    setItemQName(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getItemType();
    
                    public void 
                    setItemType(javax.xml.namespace.QName);
    
                    public boolean 
                    isOmittable();
    
                    public void 
                    setOmittable(boolean);
    
                    public boolean 
                    isNillable();
    
                    public void 
                    setNillable(boolean);
}

                

org/apache/axis/description/ServiceDesc.class

                    package org.apache.axis.description;

                    public 
                    abstract 
                    interface ServiceDesc 
                    extends java.io.Serializable {
    
                    public 
                    abstract org.apache.axis.constants.Style 
                    getStyle();
    
                    public 
                    abstract void 
                    setStyle(org.apache.axis.constants.Style);
    
                    public 
                    abstract org.apache.axis.constants.Use 
                    getUse();
    
                    public 
                    abstract void 
                    setUse(org.apache.axis.constants.Use);
    
                    public 
                    abstract String 
                    getWSDLFile();
    
                    public 
                    abstract void 
                    setWSDLFile(String);
    
                    public 
                    abstract java.util.List 
                    getAllowedMethods();
    
                    public 
                    abstract void 
                    setAllowedMethods(java.util.List);
    
                    public 
                    abstract org.apache.axis.encoding.TypeMapping 
                    getTypeMapping();
    
                    public 
                    abstract void 
                    setTypeMapping(org.apache.axis.encoding.TypeMapping);
    
                    public 
                    abstract String 
                    getName();
    
                    public 
                    abstract void 
                    setName(String);
    
                    public 
                    abstract String 
                    getDocumentation();
    
                    public 
                    abstract void 
                    setDocumentation(String);
    
                    public 
                    abstract void 
                    removeOperationDesc(OperationDesc);
    
                    public 
                    abstract void 
                    addOperationDesc(OperationDesc);
    
                    public 
                    abstract java.util.ArrayList 
                    getOperations();
    
                    public 
                    abstract OperationDesc[] 
                    getOperationsByName(String);
    
                    public 
                    abstract OperationDesc 
                    getOperationByName(String);
    
                    public 
                    abstract OperationDesc 
                    getOperationByElementQName(javax.xml.namespace.QName);
    
                    public 
                    abstract OperationDesc[] 
                    getOperationsByQName(javax.xml.namespace.QName);
    
                    public 
                    abstract void 
                    setNamespaceMappings(java.util.List);
    
                    public 
                    abstract String 
                    getDefaultNamespace();
    
                    public 
                    abstract void 
                    setDefaultNamespace(String);
    
                    public 
                    abstract void 
                    setProperty(String, Object);
    
                    public 
                    abstract Object 
                    getProperty(String);
    
                    public 
                    abstract String 
                    getEndpointURL();
    
                    public 
                    abstract void 
                    setEndpointURL(String);
    
                    public 
                    abstract org.apache.axis.encoding.TypeMappingRegistry 
                    getTypeMappingRegistry();
    
                    public 
                    abstract void 
                    setTypeMappingRegistry(org.apache.axis.encoding.TypeMappingRegistry);
    
                    public 
                    abstract boolean 
                    isInitialized();
    
                    public 
                    abstract boolean 
                    isWrapped();
    
                    public 
                    abstract java.util.List 
                    getDisallowedMethods();
    
                    public 
                    abstract void 
                    setDisallowedMethods(java.util.List);
}

                

org/apache/axis/description/TypeDesc.class

                    package org.apache.axis.description;

                    public 
                    synchronized 
                    class TypeDesc 
                    implements java.io.Serializable {
    
                    public 
                    static 
                    final Class[] 
                    noClasses;
    
                    public 
                    static 
                    final Object[] 
                    noObjects;
    
                    private 
                    static java.util.Map 
                    classMap;
    
                    private boolean 
                    lookedForAny;
    
                    private boolean 
                    canSearchParents;
    
                    private boolean 
                    hasSearchedParents;
    
                    private TypeDesc 
                    parentDesc;
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private ref.WeakReference 
                    javaClassRef;
    
                    private javax.xml.namespace.QName 
                    xmlType;
    
                    private FieldDesc[] 
                    fields;
    
                    private java.util.HashMap 
                    fieldNameMap;
    
                    private java.util.HashMap 
                    fieldElementMap;
    
                    private boolean 
                    _hasAttributes;
    
                    private org.apache.axis.utils.BeanPropertyDescriptor[] 
                    propertyDescriptors;
    
                    private java.util.Map 
                    propertyMap;
    
                    private org.apache.axis.utils.BeanPropertyDescriptor 
                    anyDesc;
    
                    public void TypeDesc(Class);
    
                    public void TypeDesc(Class, boolean);
    
                    public 
                    static void 
                    registerTypeDescForClass(Class, TypeDesc);
    
                    public 
                    static TypeDesc 
                    getTypeDescForClass(Class);
    
                    public org.apache.axis.utils.BeanPropertyDescriptor 
                    getAnyDesc();
    
                    public FieldDesc[] 
                    getFields();
    
                    public FieldDesc[] 
                    getFields(boolean);
    
                    public void 
                    setFields(FieldDesc[]);
    
                    public void 
                    addFieldDesc(FieldDesc);
    
                    public javax.xml.namespace.QName 
                    getElementNameForField(String);
    
                    public javax.xml.namespace.QName 
                    getAttributeNameForField(String);
    
                    public String 
                    getFieldNameForElement(javax.xml.namespace.QName, boolean);
    
                    public String 
                    getFieldNameForAttribute(javax.xml.namespace.QName);
    
                    public FieldDesc 
                    getFieldByName(String);
    
                    public boolean 
                    hasAttributes();
    
                    public javax.xml.namespace.QName 
                    getXmlType();
    
                    public void 
                    setXmlType(javax.xml.namespace.QName);
    
                    public org.apache.axis.utils.BeanPropertyDescriptor[] 
                    getPropertyDescriptors();
    
                    private 
                    synchronized void 
                    makePropertyDescriptors();
    
                    public org.apache.axis.utils.BeanPropertyDescriptor 
                    getAnyContentDescriptor();
    
                    public java.util.Map 
                    getPropertyDescriptorMap();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/AnyContentType.class

                    package org.apache.axis.encoding;

                    public 
                    abstract 
                    interface AnyContentType {
    
                    public 
                    abstract org.apache.axis.message.MessageElement[] 
                    get_any();
    
                    public 
                    abstract void 
                    set_any(org.apache.axis.message.MessageElement[]);
}

                

org/apache/axis/encoding/AttributeSerializationContextImpl.class

                    package org.apache.axis.encoding;

                    public 
                    synchronized 
                    class AttributeSerializationContextImpl 
                    extends SerializationContext {
    SerializationContext 
                    parent;
    
                    public void AttributeSerializationContextImpl(java.io.Writer, SerializationContext);
    
                    public void 
                    startElement(javax.xml.namespace.QName, org.xml.sax.Attributes) 
                    throws java.io.IOException;
    
                    public void 
                    endElement() 
                    throws java.io.IOException;
    
                    public String 
                    qName2String(javax.xml.namespace.QName);
}

                

org/apache/axis/encoding/Base64.class

                    package org.apache.axis.encoding;

                    public 
                    synchronized 
                    class Base64 {
    
                    private 
                    static 
                    final char[] 
                    S_BASE64CHAR;
    
                    private 
                    static 
                    final char 
                    S_BASE64PAD = 61;
    
                    private 
                    static 
                    final byte[] 
                    S_DECODETABLE;
    
                    public void Base64();
    
                    private 
                    static int 
                    decode0(char[], byte[], int);
    
                    public 
                    static byte[] 
                    decode(char[], int, int);
    
                    public 
                    static byte[] 
                    decode(String);
    
                    public 
                    static void 
                    decode(char[], int, int, java.io.OutputStream) 
                    throws java.io.IOException;
    
                    public 
                    static void 
                    decode(String, java.io.OutputStream) 
                    throws java.io.IOException;
    
                    public 
                    static String 
                    encode(byte[]);
    
                    public 
                    static String 
                    encode(byte[], int, int);
    
                    public 
                    static void 
                    encode(byte[], int, int, java.io.OutputStream) 
                    throws java.io.IOException;
    
                    public 
                    static void 
                    encode(byte[], int, int, java.io.Writer) 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/Callback.class

                    package org.apache.axis.encoding;

                    public 
                    abstract 
                    interface Callback {
    
                    public 
                    abstract void 
                    setValue(Object, Object) 
                    throws org.xml.sax.SAXException;
}

                

org/apache/axis/encoding/CallbackTarget.class

                    package org.apache.axis.encoding;

                    public 
                    synchronized 
                    class CallbackTarget 
                    implements Target {
    
                    public Callback 
                    target;
    
                    public Object 
                    hint;
    
                    public void CallbackTarget(Callback, Object);
    
                    public void 
                    set(Object) 
                    throws org.xml.sax.SAXException;
}

                

org/apache/axis/encoding/ConstructorTarget.class

                    package org.apache.axis.encoding;

                    public 
                    synchronized 
                    class ConstructorTarget 
                    implements Target {
    
                    private reflect.Constructor 
                    constructor;
    
                    private Deserializer 
                    deSerializer;
    
                    private java.util.List 
                    values;
    
                    public void ConstructorTarget(reflect.Constructor, Deserializer);
    
                    public void 
                    set(Object) 
                    throws org.xml.sax.SAXException;
}

                

org/apache/axis/encoding/DefaultJAXRPC11TypeMappingImpl.class

                    package org.apache.axis.encoding;

                    public 
                    synchronized 
                    class DefaultJAXRPC11TypeMappingImpl 
                    extends DefaultTypeMappingImpl {
    
                    private 
                    static DefaultJAXRPC11TypeMappingImpl 
                    tm;
    
                    public 
                    static 
                    synchronized TypeMappingImpl 
                    getSingleton();
    
                    protected void DefaultJAXRPC11TypeMappingImpl();
    
                    private void 
                    registerXSDTypes();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/DefaultSOAP12TypeMappingImpl.class

                    package org.apache.axis.encoding;

                    public 
                    synchronized 
                    class DefaultSOAP12TypeMappingImpl 
                    extends DefaultSOAPEncodingTypeMappingImpl {
    
                    public void DefaultSOAP12TypeMappingImpl();
}

                

org/apache/axis/encoding/DefaultSOAPEncodingTypeMappingImpl.class

                    package org.apache.axis.encoding;

                    public 
                    synchronized 
                    class DefaultSOAPEncodingTypeMappingImpl 
                    extends DefaultTypeMappingImpl {
    
                    private 
                    static DefaultSOAPEncodingTypeMappingImpl 
                    tm;
    
                    public 
                    static 
                    synchronized TypeMappingImpl 
                    getSingleton();
    
                    public 
                    static TypeMappingDelegate 
                    createWithDelegate();
    
                    protected void DefaultSOAPEncodingTypeMappingImpl();
    
                    private void 
                    registerSOAPTypes();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/DefaultTypeMappingImpl.class

                    package org.apache.axis.encoding;

                    public 
                    synchronized 
                    class DefaultTypeMappingImpl 
                    extends TypeMappingImpl {
    
                    private 
                    static DefaultTypeMappingImpl 
                    tm;
    
                    private boolean 
                    inInitMappings;
    
                    public 
                    static 
                    synchronized TypeMappingDelegate 
                    getSingletonDelegate();
    
                    protected void DefaultTypeMappingImpl();
    
                    protected void DefaultTypeMappingImpl(boolean);
    
                    protected void 
                    initMappings();
    
                    protected void 
                    myRegisterSimple(javax.xml.namespace.QName, Class);
    
                    protected void 
                    myRegister(javax.xml.namespace.QName, Class, SerializerFactory, javax.xml.rpc.encoding.DeserializerFactory);
    
                    public void 
                    register(Class, javax.xml.namespace.QName, javax.xml.rpc.encoding.SerializerFactory, javax.xml.rpc.encoding.DeserializerFactory) 
                    throws javax.xml.rpc.JAXRPCException;
    
                    public void 
                    removeSerializer(Class, javax.xml.namespace.QName) 
                    throws javax.xml.rpc.JAXRPCException;
    
                    public void 
                    removeDeserializer(Class, javax.xml.namespace.QName) 
                    throws javax.xml.rpc.JAXRPCException;
    
                    public void 
                    setSupportedEncodings(String[]);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/DeserializationContext$1.class

                    package org.apache.axis.encoding;

                    synchronized 
                    class DeserializationContext$1 {
}

                

org/apache/axis/encoding/DeserializationContext$LocalIDResolver.class

                    package org.apache.axis.encoding;

                    synchronized 
                    class DeserializationContext$LocalIDResolver 
                    implements org.apache.axis.message.IDResolver {
    java.util.HashMap 
                    idMap;
    
                    private void DeserializationContext$LocalIDResolver();
    
                    public void 
                    addReferencedObject(String, Object);
    
                    public Object 
                    getReferencedObject(String);
}

                

org/apache/axis/encoding/DeserializationContext$NullLexicalHandler.class

                    package org.apache.axis.encoding;

                    synchronized 
                    class DeserializationContext$NullLexicalHandler 
                    implements org.xml.sax.ext.LexicalHandler {
    
                    private void DeserializationContext$NullLexicalHandler();
    
                    public void 
                    startDTD(String, String, String) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    endDTD() 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    startEntity(String) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    endEntity(String) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    startCDATA() 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    endCDATA() 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    comment(char[], int, int) 
                    throws org.xml.sax.SAXException;
}

                

org/apache/axis/encoding/DeserializationContext.class

                    package org.apache.axis.encoding;

                    public 
                    synchronized 
                    class DeserializationContext 
                    extends org.xml.sax.helpers.DefaultHandler 
                    implements javax.xml.rpc.encoding.DeserializationContext, org.xml.sax.ext.LexicalHandler {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private 
                    final boolean 
                    debugEnabled;
    
                    static 
                    final org.apache.axis.schema.SchemaVersion[] 
                    schemaVersions;
    
                    private org.apache.axis.utils.NSStack 
                    namespaces;
    
                    private org.xml.sax.Locator 
                    locator;
    
                    private Class 
                    destClass;
    
                    private org.apache.axis.message.SOAPHandler 
                    topHandler;
    
                    private java.util.ArrayList 
                    pushedDownHandlers;
    
                    private org.apache.axis.message.SAX2EventRecorder 
                    recorder;
    
                    private org.apache.axis.message.SOAPEnvelope 
                    envelope;
    
                    private java.util.HashMap 
                    idMap;
    
                    private DeserializationContext$LocalIDResolver 
                    localIDs;
    
                    private java.util.HashMap 
                    fixups;
    
                    static 
                    final org.apache.axis.message.SOAPHandler 
                    nullHandler;
    
                    protected org.apache.axis.MessageContext 
                    msgContext;
    
                    private boolean 
                    doneParsing;
    
                    protected org.xml.sax.InputSource 
                    inputSource;
    
                    private org.apache.axis.message.MessageElement 
                    curElement;
    
                    protected int 
                    startOfMappingsPos;
    
                    private 
                    static 
                    final Class[] 
                    DESERIALIZER_CLASSES;
    
                    private 
                    static 
                    final String 
                    DESERIALIZER_METHOD = getDeserializer;
    
                    protected boolean 
                    haveSeenSchemaNS;
    
                    private org.apache.axis.soap.SOAPConstants 
                    soapConstants;
    boolean 
                    processingRef;
    
                    private 
                    static 
                    final DeserializationContext$NullLexicalHandler 
                    nullLexicalHandler;
    
                    public void 
                    deserializing(boolean);
    
                    public void DeserializationContext(org.apache.axis.MessageContext, org.apache.axis.message.SOAPHandler);
    
                    public void DeserializationContext(org.xml.sax.InputSource, org.apache.axis.MessageContext, String);
    
                    public org.apache.axis.soap.SOAPConstants 
                    getSOAPConstants();
    
                    public void DeserializationContext(org.xml.sax.InputSource, org.apache.axis.MessageContext, String, org.apache.axis.message.SOAPEnvelope);
    
                    public void 
                    parse() 
                    throws org.xml.sax.SAXException;
    
                    public org.apache.axis.message.MessageElement 
                    getCurElement();
    
                    public void 
                    setCurElement(org.apache.axis.message.MessageElement);
    
                    public org.apache.axis.MessageContext 
                    getMessageContext();
    
                    public String 
                    getEncodingStyle();
    
                    public org.apache.axis.message.SOAPEnvelope 
                    getEnvelope();
    
                    public org.apache.axis.message.SAX2EventRecorder 
                    getRecorder();
    
                    public void 
                    setRecorder(org.apache.axis.message.SAX2EventRecorder);
    
                    public java.util.ArrayList 
                    getCurrentNSMappings();
    
                    public String 
                    getNamespaceURI(String);
    
                    public javax.xml.namespace.QName 
                    getQNameFromString(String);
    
                    public javax.xml.namespace.QName 
                    getTypeFromXSITypeAttr(String, String, org.xml.sax.Attributes);
    
                    public javax.xml.namespace.QName 
                    getTypeFromAttributes(String, String, org.xml.sax.Attributes);
    
                    public boolean 
                    isNil(org.xml.sax.Attributes);
    
                    public 
                    final Deserializer 
                    getDeserializer(Class, javax.xml.namespace.QName);
    
                    public Deserializer 
                    getDeserializerForClass(Class);
    
                    public void 
                    setDestinationClass(Class);
    
                    public Class 
                    getDestinationClass();
    
                    public 
                    final Deserializer 
                    getDeserializerForType(javax.xml.namespace.QName);
    
                    public TypeMapping 
                    getTypeMapping();
    
                    public TypeMappingRegistry 
                    getTypeMappingRegistry();
    
                    public org.apache.axis.message.MessageElement 
                    getElementByID(String);
    
                    public Object 
                    getObjectByRef(String);
    
                    public void 
                    addObjectById(String, Object);
    
                    public void 
                    registerFixup(String, Deserializer);
    
                    public void 
                    registerElementByID(String, org.apache.axis.message.MessageElement);
    
                    public void 
                    registerResolverForID(String, org.apache.axis.message.IDResolver);
    
                    public boolean 
                    hasElementsByID();
    
                    public int 
                    getCurrentRecordPos();
    
                    public int 
                    getStartOfMappingsPos();
    
                    public void 
                    pushNewElement(org.apache.axis.message.MessageElement);
    
                    public void 
                    pushElementHandler(org.apache.axis.message.SOAPHandler);
    
                    public void 
                    replaceElementHandler(org.apache.axis.message.SOAPHandler);
    
                    public org.apache.axis.message.SOAPHandler 
                    popElementHandler();
    
                    public void 
                    setProcessingRef(boolean);
    
                    public boolean 
                    isProcessingRef();
    
                    public void 
                    startDocument() 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    endDocument() 
                    throws org.xml.sax.SAXException;
    
                    public boolean 
                    isDoneParsing();
    
                    public void 
                    startPrefixMapping(String, String) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    endPrefixMapping(String) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    setDocumentLocator(org.xml.sax.Locator);
    
                    public org.xml.sax.Locator 
                    getDocumentLocator();
    
                    public void 
                    characters(char[], int, int) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    ignorableWhitespace(char[], int, int) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    processingInstruction(String, String) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    skippedEntity(String) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    startElement(String, String, String, org.xml.sax.Attributes) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    endElement(String, String, String) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    startDTD(String, String, String) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    endDTD() 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    startEntity(String) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    endEntity(String) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    startCDATA() 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    endCDATA() 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    comment(char[], int, int) 
                    throws org.xml.sax.SAXException;
    
                    public org.xml.sax.InputSource 
                    resolveEntity(String, String);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/Deserializer.class

                    package org.apache.axis.encoding;

                    public 
                    abstract 
                    interface Deserializer 
                    extends javax.xml.rpc.encoding.Deserializer, Callback {
    
                    public 
                    abstract Object 
                    getValue();
    
                    public 
                    abstract void 
                    setValue(Object);
    
                    public 
                    abstract Object 
                    getValue(Object);
    
                    public 
                    abstract void 
                    setChildValue(Object, Object) 
                    throws org.xml.sax.SAXException;
    
                    public 
                    abstract void 
                    setDefaultType(javax.xml.namespace.QName);
    
                    public 
                    abstract javax.xml.namespace.QName 
                    getDefaultType();
    
                    public 
                    abstract void 
                    registerValueTarget(Target);
    
                    public 
                    abstract java.util.Vector 
                    getValueTargets();
    
                    public 
                    abstract void 
                    removeValueTargets();
    
                    public 
                    abstract void 
                    moveValueTargets(Deserializer);
    
                    public 
                    abstract boolean 
                    componentsReady();
    
                    public 
                    abstract void 
                    valueComplete() 
                    throws org.xml.sax.SAXException;
    
                    public 
                    abstract void 
                    startElement(String, String, String, org.xml.sax.Attributes, DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public 
                    abstract void 
                    onStartElement(String, String, String, org.xml.sax.Attributes, DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public 
                    abstract org.apache.axis.message.SOAPHandler 
                    onStartChild(String, String, String, org.xml.sax.Attributes, DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public 
                    abstract void 
                    endElement(String, String, DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public 
                    abstract void 
                    onEndElement(String, String, DeserializationContext) 
                    throws org.xml.sax.SAXException;
}

                

org/apache/axis/encoding/DeserializerFactory.class

                    package org.apache.axis.encoding;

                    public 
                    abstract 
                    interface DeserializerFactory 
                    extends javax.xml.rpc.encoding.DeserializerFactory {
}

                

org/apache/axis/encoding/DeserializerImpl.class

                    package org.apache.axis.encoding;

                    public 
                    synchronized 
                    class DeserializerImpl 
                    extends org.apache.axis.message.SOAPHandler 
                    implements javax.xml.rpc.encoding.Deserializer, Deserializer, Callback {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    protected Object 
                    value;
    
                    private 
                    final boolean 
                    debugEnabled;
    
                    protected boolean 
                    isEnded;
    
                    protected java.util.Vector 
                    targets;
    
                    protected javax.xml.namespace.QName 
                    defaultType;
    
                    protected boolean 
                    componentsReadyFlag;
    
                    private java.util.HashSet 
                    activeDeserializers;
    
                    protected boolean 
                    isHref;
    
                    protected boolean 
                    isNil;
    
                    protected String 
                    id;
    
                    public void DeserializerImpl();
    
                    public String 
                    getMechanismType();
    
                    public Object 
                    getValue();
    
                    public void 
                    setValue(Object);
    
                    public Object 
                    getValue(Object);
    
                    public void 
                    setChildValue(Object, Object) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    setValue(Object, Object) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    setDefaultType(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getDefaultType();
    
                    public void 
                    registerValueTarget(Target);
    
                    public java.util.Vector 
                    getValueTargets();
    
                    public void 
                    removeValueTargets();
    
                    public void 
                    moveValueTargets(Deserializer);
    
                    public boolean 
                    componentsReady();
    
                    public void 
                    valueComplete() 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    addChildDeserializer(Deserializer);
    
                    public void 
                    startElement(String, String, String, org.xml.sax.Attributes, DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    onStartElement(String, String, String, org.xml.sax.Attributes, DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public org.apache.axis.message.SOAPHandler 
                    onStartChild(String, String, String, org.xml.sax.Attributes, DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public 
                    final void 
                    endElement(String, String, DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    onEndElement(String, String, DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/DeserializerTarget.class

                    package org.apache.axis.encoding;

                    public 
                    synchronized 
                    class DeserializerTarget 
                    implements Target {
    
                    public Deserializer 
                    target;
    
                    public Object 
                    hint;
    
                    public void DeserializerTarget(Deserializer, Object);
    
                    public void 
                    set(Object) 
                    throws org.xml.sax.SAXException;
}

                

org/apache/axis/encoding/FieldTarget.class

                    package org.apache.axis.encoding;

                    public 
                    synchronized 
                    class FieldTarget 
                    implements Target {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private Object 
                    targetObject;
    
                    private reflect.Field 
                    targetField;
    
                    public void FieldTarget(Object, reflect.Field);
    
                    public void FieldTarget(Object, String) 
                    throws NoSuchFieldException;
    
                    public void 
                    set(Object) 
                    throws org.xml.sax.SAXException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/MethodTarget.class

                    package org.apache.axis.encoding;

                    public 
                    synchronized 
                    class MethodTarget 
                    implements Target {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private Object 
                    targetObject;
    
                    private reflect.Method 
                    targetMethod;
    
                    private 
                    static 
                    final Class[] 
                    objArg;
    
                    public void MethodTarget(Object, reflect.Method);
    
                    public void MethodTarget(Object, String) 
                    throws NoSuchMethodException;
    
                    public void 
                    set(Object) 
                    throws org.xml.sax.SAXException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/MixedContentType.class

                    package org.apache.axis.encoding;

                    public 
                    abstract 
                    interface MixedContentType {
    
                    public 
                    abstract org.apache.axis.message.MessageElement[] 
                    get_any();
    
                    public 
                    abstract void 
                    set_any(org.apache.axis.message.MessageElement[]);
}

                

org/apache/axis/encoding/SerializationContext$MultiRefItem.class

                    package org.apache.axis.encoding;

                    synchronized 
                    class SerializationContext$MultiRefItem {
    String 
                    id;
    javax.xml.namespace.QName 
                    xmlType;
    Boolean 
                    sendType;
    Object 
                    value;
    void SerializationContext$MultiRefItem(SerializationContext, String, javax.xml.namespace.QName, Boolean, Object);
}

                

org/apache/axis/encoding/SerializationContext.class

                    package org.apache.axis.encoding;

                    public 
                    synchronized 
                    class SerializationContext 
                    implements javax.xml.rpc.encoding.SerializationContext {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private 
                    final boolean 
                    debugEnabled;
    
                    private org.apache.axis.utils.NSStack 
                    nsStack;
    
                    private boolean 
                    writingStartTag;
    
                    private boolean 
                    onlyXML;
    
                    private int 
                    indent;
    
                    private java.util.Stack 
                    elementStack;
    
                    private java.io.Writer 
                    writer;
    
                    private int 
                    lastPrefixIndex;
    
                    private org.apache.axis.MessageContext 
                    msgContext;
    
                    private javax.xml.namespace.QName 
                    currentXMLType;
    
                    private javax.xml.namespace.QName 
                    itemQName;
    
                    private javax.xml.namespace.QName 
                    itemType;
    
                    private org.apache.axis.soap.SOAPConstants 
                    soapConstants;
    
                    private 
                    static javax.xml.namespace.QName 
                    multirefQName;
    
                    private 
                    static Class[] 
                    SERIALIZER_CLASSES;
    
                    private 
                    static 
                    final String 
                    SERIALIZER_METHOD = getSerializer;
    
                    private boolean 
                    doMultiRefs;
    
                    private boolean 
                    disablePrettyXML;
    
                    private boolean 
                    enableNamespacePrefixOptimization;
    
                    private boolean 
                    pretty;
    
                    private boolean 
                    sendXMLDecl;
    
                    private boolean 
                    sendXSIType;
    
                    private Boolean 
                    sendNull;
    
                    private java.util.HashMap 
                    multiRefValues;
    
                    private int 
                    multiRefIndex;
    
                    private boolean 
                    noNamespaceMappings;
    
                    private javax.xml.namespace.QName 
                    writeXMLType;
    
                    private org.apache.axis.components.encoding.XMLEncoder 
                    encoder;
    
                    protected boolean 
                    startOfDocument;
    
                    private String 
                    encoding;
    
                    private java.util.HashSet 
                    secondLevelObjects;
    
                    private Object 
                    forceSer;
    
                    private boolean 
                    outputMultiRefsFlag;
    org.apache.axis.schema.SchemaVersion 
                    schemaVersion;
    java.util.HashMap 
                    preferredPrefixes;
    
                    public void SerializationContext(java.io.Writer);
    
                    private void 
                    initialize();
    
                    public void SerializationContext(java.io.Writer, org.apache.axis.MessageContext);
    
                    public boolean 
                    getPretty();
    
                    public void 
                    setPretty(boolean);
    
                    public boolean 
                    getDoMultiRefs();
    
                    public void 
                    setDoMultiRefs(boolean);
    
                    public void 
                    setSendDecl(boolean);
    
                    public boolean 
                    shouldSendXSIType();
    
                    public TypeMapping 
                    getTypeMapping();
    
                    public TypeMappingRegistry 
                    getTypeMappingRegistry();
    
                    public String 
                    getPrefixForURI(String);
    
                    public String 
                    getPrefixForURI(String, String);
    
                    public String 
                    getPrefixForURI(String, String, boolean);
    
                    public void 
                    registerPrefixForURI(String, String);
    
                    public org.apache.axis.Message 
                    getCurrentMessage();
    
                    public org.apache.axis.MessageContext 
                    getMessageContext();
    
                    public String 
                    getEncodingStyle();
    
                    public boolean 
                    isEncoded();
    
                    public String 
                    qName2String(javax.xml.namespace.QName, boolean);
    
                    public String 
                    qName2String(javax.xml.namespace.QName);
    
                    public String 
                    attributeQName2String(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getQNameForClass(Class);
    
                    public boolean 
                    isPrimitive(Object);
    
                    public void 
                    serialize(javax.xml.namespace.QName, org.xml.sax.Attributes, Object) 
                    throws java.io.IOException;
    
                    public void 
                    serialize(javax.xml.namespace.QName, org.xml.sax.Attributes, Object, javax.xml.namespace.QName) 
                    throws java.io.IOException;
    
                    public void 
                    serialize(javax.xml.namespace.QName, org.xml.sax.Attributes, Object, javax.xml.namespace.QName, Class) 
                    throws java.io.IOException;
    
                    public void 
                    serialize(javax.xml.namespace.QName, org.xml.sax.Attributes, Object, javax.xml.namespace.QName, boolean, Boolean) 
                    throws java.io.IOException;
    
                    public void 
                    serialize(javax.xml.namespace.QName, org.xml.sax.Attributes, Object, javax.xml.namespace.QName, Boolean, Boolean) 
                    throws java.io.IOException;
    
                    public void 
                    serialize(javax.xml.namespace.QName, org.xml.sax.Attributes, Object, javax.xml.namespace.QName, Class, Boolean, Boolean) 
                    throws java.io.IOException;
    
                    private org.apache.axis.utils.IDKey 
                    getIdentityKey(Object);
    
                    public void 
                    outputMultiRefs() 
                    throws java.io.IOException;
    
                    public void 
                    writeXMLDeclaration() 
                    throws java.io.IOException;
    
                    public void 
                    startElement(javax.xml.namespace.QName, org.xml.sax.Attributes) 
                    throws java.io.IOException;
    
                    public void 
                    endElement() 
                    throws java.io.IOException;
    
                    public void 
                    writeChars(char[], int, int) 
                    throws java.io.IOException;
    
                    public void 
                    writeString(String) 
                    throws java.io.IOException;
    
                    public void 
                    writeSafeString(String) 
                    throws java.io.IOException;
    
                    public void 
                    writeDOMElement(org.w3c.dom.Element) 
                    throws java.io.IOException;
    
                    public 
                    final Serializer 
                    getSerializerForJavaType(Class);
    
                    public org.xml.sax.Attributes 
                    setTypeAttribute(org.xml.sax.Attributes, javax.xml.namespace.QName);
    
                    private void 
                    serializeActual(javax.xml.namespace.QName, org.xml.sax.Attributes, Object, javax.xml.namespace.QName, Class, Boolean) 
                    throws java.io.IOException;
    
                    private Class 
                    getActualJavaClass(javax.xml.namespace.QName, Class, Object);
    
                    private Serializer 
                    getSerializerFromClass(Class, javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getCurrentXMLType();
    
                    private SerializerFactory 
                    getSerializerFactoryFromInterface(Class, javax.xml.namespace.QName, TypeMapping);
    
                    private Serializer 
                    getSerializer(Class, javax.xml.namespace.QName, javax.xml.rpc.holders.QNameHolder);
    
                    public String 
                    getValueAsString(Object, javax.xml.namespace.QName, Class) 
                    throws java.io.IOException;
    
                    public void 
                    setWriteXMLType(javax.xml.namespace.QName);
    
                    public org.apache.axis.components.encoding.XMLEncoder 
                    getEncoder();
    
                    public String 
                    getEncoding();
    
                    public void 
                    setEncoding(String);
    
                    public javax.xml.namespace.QName 
                    getItemQName();
    
                    public void 
                    setItemQName(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getItemType();
    
                    public void 
                    setItemType(javax.xml.namespace.QName);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/Serializer.class

                    package org.apache.axis.encoding;

                    public 
                    abstract 
                    interface Serializer 
                    extends javax.xml.rpc.encoding.Serializer {
    
                    public 
                    abstract void 
                    serialize(javax.xml.namespace.QName, org.xml.sax.Attributes, Object, SerializationContext) 
                    throws java.io.IOException;
    
                    public 
                    abstract org.w3c.dom.Element 
                    writeSchema(Class, org.apache.axis.wsdl.fromJava.Types) 
                    throws Exception;
}

                

org/apache/axis/encoding/SerializerFactory.class

                    package org.apache.axis.encoding;

                    public 
                    abstract 
                    interface SerializerFactory 
                    extends javax.xml.rpc.encoding.SerializerFactory {
}

                

org/apache/axis/encoding/SimpleType.class

                    package org.apache.axis.encoding;

                    public 
                    abstract 
                    interface SimpleType {
}

                

org/apache/axis/encoding/SimpleValueSerializer.class

                    package org.apache.axis.encoding;

                    public 
                    abstract 
                    interface SimpleValueSerializer 
                    extends Serializer {
    
                    public 
                    abstract String 
                    getValueAsString(Object, SerializationContext);
}

                

org/apache/axis/encoding/Target.class

                    package org.apache.axis.encoding;

                    public 
                    abstract 
                    interface Target {
    
                    public 
                    abstract void 
                    set(Object) 
                    throws org.xml.sax.SAXException;
}

                

org/apache/axis/encoding/TextSerializationContext.class

                    package org.apache.axis.encoding;

                    public 
                    synchronized 
                    class TextSerializationContext 
                    extends SerializationContext {
    
                    private boolean 
                    ignore;
    
                    private int 
                    depth;
    
                    public void TextSerializationContext(java.io.Writer);
    
                    public void TextSerializationContext(java.io.Writer, org.apache.axis.MessageContext);
    
                    public void 
                    serialize(javax.xml.namespace.QName, org.xml.sax.Attributes, Object, javax.xml.namespace.QName, Boolean, Boolean) 
                    throws java.io.IOException;
    
                    public void 
                    writeDOMElement(org.w3c.dom.Element) 
                    throws java.io.IOException;
    
                    public void 
                    startElement(javax.xml.namespace.QName, org.xml.sax.Attributes) 
                    throws java.io.IOException;
    
                    public void 
                    endElement() 
                    throws java.io.IOException;
    
                    public void 
                    writeChars(char[], int, int) 
                    throws java.io.IOException;
    
                    public void 
                    writeString(String) 
                    throws java.io.IOException;
}

                

org/apache/axis/encoding/TypeMapping.class

                    package org.apache.axis.encoding;

                    public 
                    abstract 
                    interface TypeMapping 
                    extends javax.xml.rpc.encoding.TypeMapping, java.io.Serializable {
    
                    public 
                    abstract javax.xml.rpc.encoding.SerializerFactory 
                    getSerializer(Class) 
                    throws javax.xml.rpc.JAXRPCException;
    
                    public 
                    abstract javax.xml.rpc.encoding.DeserializerFactory 
                    getDeserializer(javax.xml.namespace.QName) 
                    throws javax.xml.rpc.JAXRPCException;
    
                    public 
                    abstract javax.xml.namespace.QName 
                    getTypeQName(Class);
    
                    public 
                    abstract javax.xml.namespace.QName 
                    getTypeQNameExact(Class);
    
                    public 
                    abstract Class 
                    getClassForQName(javax.xml.namespace.QName);
    
                    public 
                    abstract Class 
                    getClassForQName(javax.xml.namespace.QName, Class);
    
                    public 
                    abstract Class[] 
                    getAllClasses();
    
                    public 
                    abstract javax.xml.namespace.QName 
                    getXMLType(Class, javax.xml.namespace.QName, boolean) 
                    throws javax.xml.rpc.JAXRPCException;
}

                

org/apache/axis/encoding/TypeMappingDelegate.class

                    package org.apache.axis.encoding;

                    public 
                    synchronized 
                    class TypeMappingDelegate 
                    implements TypeMapping {
    
                    static 
                    final TypeMappingImpl 
                    placeholder;
    TypeMappingImpl 
                    delegate;
    TypeMappingDelegate 
                    next;
    void TypeMappingDelegate(TypeMappingImpl);
    
                    public String[] 
                    getSupportedEncodings();
    
                    public void 
                    setSupportedEncodings(String[]);
    
                    public void 
                    register(Class, javax.xml.namespace.QName, javax.xml.rpc.encoding.SerializerFactory, javax.xml.rpc.encoding.DeserializerFactory) 
                    throws javax.xml.rpc.JAXRPCException;
    
                    public javax.xml.rpc.encoding.SerializerFactory 
                    getSerializer(Class, javax.xml.namespace.QName) 
                    throws javax.xml.rpc.JAXRPCException;
    
                    public javax.xml.rpc.encoding.SerializerFactory 
                    getSerializer(Class) 
                    throws javax.xml.rpc.JAXRPCException;
    
                    public javax.xml.rpc.encoding.DeserializerFactory 
                    getDeserializer(Class, javax.xml.namespace.QName) 
                    throws javax.xml.rpc.JAXRPCException;
    
                    public javax.xml.rpc.encoding.DeserializerFactory 
                    getDeserializer(Class, javax.xml.namespace.QName, TypeMappingDelegate) 
                    throws javax.xml.rpc.JAXRPCException;
    
                    public javax.xml.rpc.encoding.DeserializerFactory 
                    getDeserializer(javax.xml.namespace.QName) 
                    throws javax.xml.rpc.JAXRPCException;
    
                    public void 
                    removeSerializer(Class, javax.xml.namespace.QName) 
                    throws javax.xml.rpc.JAXRPCException;
    
                    public void 
                    removeDeserializer(Class, javax.xml.namespace.QName) 
                    throws javax.xml.rpc.JAXRPCException;
    
                    public boolean 
                    isRegistered(Class, javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getTypeQName(Class);
    
                    public Class 
                    getClassForQName(javax.xml.namespace.QName);
    
                    public Class 
                    getClassForQName(javax.xml.namespace.QName, Class);
    
                    public javax.xml.namespace.QName 
                    getTypeQNameExact(Class);
    
                    public void 
                    setNext(TypeMappingDelegate);
    
                    public TypeMappingDelegate 
                    getNext();
    
                    public Class[] 
                    getAllClasses();
    
                    public javax.xml.namespace.QName 
                    getXMLType(Class, javax.xml.namespace.QName, boolean) 
                    throws javax.xml.rpc.JAXRPCException;
    
                    public void 
                    setDoAutoTypes(boolean);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/TypeMappingImpl$Pair.class

                    package org.apache.axis.encoding;

                    public 
                    synchronized 
                    class TypeMappingImpl$Pair 
                    implements java.io.Serializable {
    
                    public Class 
                    javaType;
    
                    public javax.xml.namespace.QName 
                    xmlType;
    
                    public void TypeMappingImpl$Pair(Class, javax.xml.namespace.QName);
    
                    public boolean 
                    equals(Object);
    
                    public int 
                    hashCode();
}

                

org/apache/axis/encoding/TypeMappingImpl.class

                    package org.apache.axis.encoding;

                    public 
                    synchronized 
                    class TypeMappingImpl 
                    implements java.io.Serializable {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public 
                    static boolean 
                    dotnet_soapenc_bugfix;
    
                    private java.util.HashMap 
                    qName2Pair;
    
                    private java.util.HashMap 
                    class2Pair;
    
                    private java.util.HashMap 
                    pair2SF;
    
                    private java.util.HashMap 
                    pair2DF;
    
                    private java.util.ArrayList 
                    namespaces;
    
                    protected Boolean 
                    doAutoTypes;
    
                    public void TypeMappingImpl();
    
                    private 
                    static boolean 
                    isArray(Class);
    
                    public String[] 
                    getSupportedEncodings();
    
                    public void 
                    setSupportedEncodings(String[]);
    
                    public boolean 
                    isRegistered(Class, javax.xml.namespace.QName);
    
                    public void 
                    register(Class, javax.xml.namespace.QName, javax.xml.rpc.encoding.SerializerFactory, javax.xml.rpc.encoding.DeserializerFactory) 
                    throws javax.xml.rpc.JAXRPCException;
    
                    protected void 
                    internalRegister(Class, javax.xml.namespace.QName, javax.xml.rpc.encoding.SerializerFactory, javax.xml.rpc.encoding.DeserializerFactory) 
                    throws javax.xml.rpc.JAXRPCException;
    
                    public javax.xml.rpc.encoding.SerializerFactory 
                    getSerializer(Class, javax.xml.namespace.QName) 
                    throws javax.xml.rpc.JAXRPCException;
    
                    public SerializerFactory 
                    finalGetSerializer(Class);
    
                    public javax.xml.namespace.QName 
                    getXMLType(Class, javax.xml.namespace.QName, boolean) 
                    throws javax.xml.rpc.JAXRPCException;
    
                    public javax.xml.rpc.encoding.DeserializerFactory 
                    getDeserializer(Class, javax.xml.namespace.QName, TypeMappingDelegate) 
                    throws javax.xml.rpc.JAXRPCException;
    
                    public DeserializerFactory 
                    finalGetDeserializer(Class, javax.xml.namespace.QName, TypeMappingDelegate);
    
                    public void 
                    removeSerializer(Class, javax.xml.namespace.QName) 
                    throws javax.xml.rpc.JAXRPCException;
    
                    public void 
                    removeDeserializer(Class, javax.xml.namespace.QName) 
                    throws javax.xml.rpc.JAXRPCException;
    
                    public javax.xml.namespace.QName 
                    getTypeQNameRecursive(Class);
    
                    public javax.xml.namespace.QName 
                    getTypeQNameExact(Class, TypeMappingDelegate);
    
                    private boolean 
                    isDotNetSoapEncFixNeeded();
    
                    public javax.xml.namespace.QName 
                    getTypeQName(Class, TypeMappingDelegate);
    
                    public Class 
                    getClassForQName(javax.xml.namespace.QName, Class, TypeMappingDelegate);
    
                    public void 
                    setDoAutoTypes(boolean);
    
                    public boolean 
                    shouldDoAutoTypes();
    
                    public Class[] 
                    getAllClasses(TypeMappingDelegate);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/TypeMappingRegistry.class

                    package org.apache.axis.encoding;

                    public 
                    abstract 
                    interface TypeMappingRegistry 
                    extends javax.xml.rpc.encoding.TypeMappingRegistry, java.io.Serializable {
    
                    public 
                    abstract void 
                    delegate(TypeMappingRegistry);
    
                    public 
                    abstract TypeMapping 
                    getOrMakeTypeMapping(String);
}

                

org/apache/axis/encoding/TypeMappingRegistryImpl.class

                    package org.apache.axis.encoding;

                    public 
                    synchronized 
                    class TypeMappingRegistryImpl 
                    implements TypeMappingRegistry {
    
                    private java.util.HashMap 
                    mapTM;
    
                    private TypeMappingDelegate 
                    defaultDelTM;
    
                    private boolean 
                    isDelegated;
    
                    public void TypeMappingRegistryImpl(TypeMappingImpl);
    
                    public void TypeMappingRegistryImpl();
    
                    public void TypeMappingRegistryImpl(boolean);
    
                    public void 
                    delegate(TypeMappingRegistry);
    
                    public javax.xml.rpc.encoding.TypeMapping 
                    register(String, javax.xml.rpc.encoding.TypeMapping);
    
                    public void 
                    registerDefault(javax.xml.rpc.encoding.TypeMapping);
    
                    public void 
                    doRegisterFromVersion(String);
    
                    private void 
                    registerSOAPENCDefault(TypeMappingDelegate);
    
                    public javax.xml.rpc.encoding.TypeMapping 
                    getTypeMapping(String);
    
                    public TypeMapping 
                    getOrMakeTypeMapping(String);
    
                    public javax.xml.rpc.encoding.TypeMapping 
                    unregisterTypeMapping(String);
    
                    public boolean 
                    removeTypeMapping(javax.xml.rpc.encoding.TypeMapping);
    
                    public javax.xml.rpc.encoding.TypeMapping 
                    createTypeMapping();
    
                    public String[] 
                    getRegisteredEncodingStyleURIs();
    
                    public void 
                    clear();
    
                    public javax.xml.rpc.encoding.TypeMapping 
                    getDefaultTypeMapping();
}

                

org/apache/axis/encoding/XMLType.class

                    package org.apache.axis.encoding;

                    public 
                    synchronized 
                    class XMLType 
                    extends org.apache.axis.Constants {
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    AXIS_VOID;
    
                    public void XMLType();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/ArrayDeserializer$ArrayListExtension.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class ArrayDeserializer$ArrayListExtension 
                    extends java.util.ArrayList 
                    implements org.apache.axis.utils.JavaUtils$ConvertCache {
    
                    private java.util.HashMap 
                    table;
    
                    private Class 
                    arrayClass;
    void ArrayDeserializer$ArrayListExtension(ArrayDeserializer, Class);
    void ArrayDeserializer$ArrayListExtension(ArrayDeserializer, Class, int);
    
                    public void 
                    setConvertedValue(Class, Object);
    
                    public Object 
                    getConvertedValue(Class);
    
                    public Class 
                    getDestClass();
}

                

org/apache/axis/encoding/ser/ArrayDeserializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class ArrayDeserializer 
                    extends org.apache.axis.encoding.DeserializerImpl {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public javax.xml.namespace.QName 
                    arrayType;
    
                    public int 
                    curIndex;
    javax.xml.namespace.QName 
                    defaultItemType;
    int 
                    length;
    Class 
                    arrayClass;
    java.util.ArrayList 
                    mDimLength;
    java.util.ArrayList 
                    mDimFactor;
    org.apache.axis.soap.SOAPConstants 
                    soapConstants;
    
                    public void ArrayDeserializer();
    
                    public void 
                    onStartElement(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public org.apache.axis.message.SOAPHandler 
                    onStartChild(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    onEndChild(String, String, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    characters(char[], int, int) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    setChildValue(Object, Object) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    valueComplete() 
                    throws org.xml.sax.SAXException;
    
                    private int 
                    convertToIndex(String, String) 
                    throws org.xml.sax.SAXException;
    
                    private java.util.ArrayList 
                    toMultiIndex(int);
    
                    private int 
                    toSingleIndex(java.util.ArrayList);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/ArrayDeserializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class ArrayDeserializerFactory 
                    extends BaseDeserializerFactory {
    
                    private javax.xml.namespace.QName 
                    componentXmlType;
    
                    public void ArrayDeserializerFactory();
    
                    public void ArrayDeserializerFactory(javax.xml.namespace.QName);
    
                    public javax.xml.rpc.encoding.Deserializer 
                    getDeserializerAs(String);
    
                    public void 
                    setComponentType(javax.xml.namespace.QName);
}

                

org/apache/axis/encoding/ser/ArraySerializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class ArraySerializer 
                    implements org.apache.axis.encoding.Serializer {
    javax.xml.namespace.QName 
                    xmlType;
    Class 
                    javaType;
    javax.xml.namespace.QName 
                    componentType;
    javax.xml.namespace.QName 
                    componentQName;
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void ArraySerializer(Class, javax.xml.namespace.QName);
    
                    public void ArraySerializer(Class, javax.xml.namespace.QName, javax.xml.namespace.QName);
    
                    public void ArraySerializer(Class, javax.xml.namespace.QName, javax.xml.namespace.QName, javax.xml.namespace.QName);
    
                    public void 
                    serialize(javax.xml.namespace.QName, org.xml.sax.Attributes, Object, org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    public String 
                    getMechanismType();
    
                    private 
                    static boolean 
                    isArray(Class);
    
                    private 
                    static Class 
                    getComponentType(Class);
    
                    public org.w3c.dom.Element 
                    writeSchema(Class, org.apache.axis.wsdl.fromJava.Types) 
                    throws Exception;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/ArraySerializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class ArraySerializerFactory 
                    extends BaseSerializerFactory {
    
                    private javax.xml.namespace.QName 
                    componentType;
    
                    private javax.xml.namespace.QName 
                    componentQName;
    
                    public void ArraySerializerFactory();
    
                    public void ArraySerializerFactory(Class, javax.xml.namespace.QName);
    
                    public void ArraySerializerFactory(javax.xml.namespace.QName);
    
                    public void ArraySerializerFactory(javax.xml.namespace.QName, javax.xml.namespace.QName);
    
                    public void 
                    setComponentQName(javax.xml.namespace.QName);
    
                    public void 
                    setComponentType(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getComponentQName();
    
                    public javax.xml.namespace.QName 
                    getComponentType();
    
                    protected org.apache.axis.encoding.Serializer 
                    getGeneralPurpose(String);
}

                

org/apache/axis/encoding/ser/Base64Deserializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class Base64Deserializer 
                    extends SimpleDeserializer {
    
                    public void Base64Deserializer(Class, javax.xml.namespace.QName);
    
                    public Object 
                    makeValue(String) 
                    throws Exception;
}

                

org/apache/axis/encoding/ser/Base64DeserializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class Base64DeserializerFactory 
                    extends BaseDeserializerFactory {
    
                    public void Base64DeserializerFactory(Class, javax.xml.namespace.QName);
}

                

org/apache/axis/encoding/ser/Base64Serializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class Base64Serializer 
                    implements org.apache.axis.encoding.SimpleValueSerializer {
    
                    public javax.xml.namespace.QName 
                    xmlType;
    
                    public Class 
                    javaType;
    
                    public void Base64Serializer(Class, javax.xml.namespace.QName);
    
                    public void 
                    serialize(javax.xml.namespace.QName, org.xml.sax.Attributes, Object, org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    public String 
                    getValueAsString(Object, org.apache.axis.encoding.SerializationContext);
    
                    public String 
                    getMechanismType();
    
                    public org.w3c.dom.Element 
                    writeSchema(Class, org.apache.axis.wsdl.fromJava.Types) 
                    throws Exception;
}

                

org/apache/axis/encoding/ser/Base64SerializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class Base64SerializerFactory 
                    extends BaseSerializerFactory {
    
                    public void Base64SerializerFactory(Class, javax.xml.namespace.QName);
}

                

org/apache/axis/encoding/ser/BaseDeserializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    abstract 
                    synchronized 
                    class BaseDeserializerFactory 
                    extends BaseFactory 
                    implements org.apache.axis.encoding.DeserializerFactory {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    static 
                    transient java.util.Vector 
                    mechanisms;
    
                    protected Class 
                    deserClass;
    
                    protected javax.xml.namespace.QName 
                    xmlType;
    
                    protected Class 
                    javaType;
    
                    protected 
                    transient reflect.Constructor 
                    deserClassConstructor;
    
                    protected 
                    transient reflect.Method 
                    getDeserializer;
    
                    private 
                    static 
                    final Class[] 
                    CLASS_QNAME_CLASS;
    
                    public void BaseDeserializerFactory(Class);
    
                    public void BaseDeserializerFactory(Class, javax.xml.namespace.QName, Class);
    
                    public javax.xml.rpc.encoding.Deserializer 
                    getDeserializerAs(String) 
                    throws javax.xml.rpc.JAXRPCException;
    
                    protected org.apache.axis.encoding.Deserializer 
                    getGeneralPurpose(String);
    
                    private reflect.Constructor 
                    getConstructor(Class);
    
                    protected org.apache.axis.encoding.Deserializer 
                    getSpecialized(String);
    
                    public java.util.Iterator 
                    getSupportedMechanismTypes();
    
                    public 
                    static org.apache.axis.encoding.DeserializerFactory 
                    createFactory(Class, Class, javax.xml.namespace.QName);
    
                    protected reflect.Constructor 
                    getDeserClassConstructor();
    
                    protected reflect.Method 
                    getGetDeserializer();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/BaseFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    abstract 
                    synchronized 
                    class BaseFactory {
    
                    private 
                    static 
                    final Class[] 
                    STRING_CLASS_QNAME_CLASS;
    
                    public void BaseFactory();
    
                    protected reflect.Method 
                    getMethod(Class, String);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/BaseSerializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    abstract 
                    synchronized 
                    class BaseSerializerFactory 
                    extends BaseFactory 
                    implements org.apache.axis.encoding.SerializerFactory {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    static 
                    transient java.util.Vector 
                    mechanisms;
    
                    protected Class 
                    serClass;
    
                    protected javax.xml.namespace.QName 
                    xmlType;
    
                    protected Class 
                    javaType;
    
                    protected 
                    transient org.apache.axis.encoding.Serializer 
                    ser;
    
                    protected 
                    transient reflect.Constructor 
                    serClassConstructor;
    
                    protected 
                    transient reflect.Method 
                    getSerializer;
    
                    private 
                    static 
                    final Class[] 
                    CLASS_QNAME_CLASS;
    
                    public void BaseSerializerFactory(Class);
    
                    public void BaseSerializerFactory(Class, javax.xml.namespace.QName, Class);
    
                    public javax.xml.rpc.encoding.Serializer 
                    getSerializerAs(String) 
                    throws javax.xml.rpc.JAXRPCException;
    
                    protected org.apache.axis.encoding.Serializer 
                    getSerializerAsInternal(String) 
                    throws javax.xml.rpc.JAXRPCException;
    
                    protected org.apache.axis.encoding.Serializer 
                    getGeneralPurpose(String);
    
                    private reflect.Constructor 
                    getConstructor(Class);
    
                    protected org.apache.axis.encoding.Serializer 
                    getSpecialized(String);
    
                    public java.util.Iterator 
                    getSupportedMechanismTypes();
    
                    public javax.xml.namespace.QName 
                    getXMLType();
    
                    public Class 
                    getJavaType();
    
                    public 
                    static org.apache.axis.encoding.SerializerFactory 
                    createFactory(Class, Class, javax.xml.namespace.QName);
    
                    protected reflect.Method 
                    getGetSerializer();
    
                    protected reflect.Constructor 
                    getSerClassConstructor();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/BeanDeserializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class BeanDeserializer 
                    extends org.apache.axis.encoding.DeserializerImpl 
                    implements java.io.Serializable {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private 
                    final java.io.CharArrayWriter 
                    val;
    javax.xml.namespace.QName 
                    xmlType;
    Class 
                    javaType;
    
                    protected java.util.Map 
                    propertyMap;
    
                    protected javax.xml.namespace.QName 
                    prevQName;
    
                    protected reflect.Constructor 
                    constructorToUse;
    
                    protected org.apache.axis.encoding.Target 
                    constructorTarget;
    
                    protected org.apache.axis.description.TypeDesc 
                    typeDesc;
    
                    protected int 
                    collectionIndex;
    
                    protected SimpleDeserializer 
                    cacheStringDSer;
    
                    protected javax.xml.namespace.QName 
                    cacheXMLType;
    
                    public void BeanDeserializer(Class, javax.xml.namespace.QName);
    
                    public void BeanDeserializer(Class, javax.xml.namespace.QName, org.apache.axis.description.TypeDesc);
    
                    public void BeanDeserializer(Class, javax.xml.namespace.QName, org.apache.axis.description.TypeDesc, java.util.Map);
    
                    public void 
                    startElement(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public org.apache.axis.message.SOAPHandler 
                    onStartChild(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public org.apache.axis.utils.BeanPropertyDescriptor 
                    getAnyPropertyDesc();
    
                    public void 
                    onStartElement(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    protected org.apache.axis.encoding.Deserializer 
                    getDeserializer(javax.xml.namespace.QName, Class, String, org.apache.axis.encoding.DeserializationContext);
    
                    public void 
                    characters(char[], int, int) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    onEndElement(String, String, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    protected void 
                    handleMixedContent() 
                    throws org.xml.sax.SAXException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/BeanDeserializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class BeanDeserializerFactory 
                    extends BaseDeserializerFactory {
    
                    protected 
                    transient org.apache.axis.description.TypeDesc 
                    typeDesc;
    
                    protected 
                    transient java.util.Map 
                    propertyMap;
    
                    public void BeanDeserializerFactory(Class, javax.xml.namespace.QName);
    
                    public 
                    static java.util.Map 
                    getProperties(Class, org.apache.axis.description.TypeDesc);
    
                    protected org.apache.axis.encoding.Deserializer 
                    getGeneralPurpose(String);
    
                    private void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
}

                

org/apache/axis/encoding/ser/BeanPropertyTarget.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class BeanPropertyTarget 
                    implements org.apache.axis.encoding.Target {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private Object 
                    object;
    
                    private org.apache.axis.utils.BeanPropertyDescriptor 
                    pd;
    
                    private int 
                    index;
    
                    public void BeanPropertyTarget(Object, org.apache.axis.utils.BeanPropertyDescriptor);
    
                    public void BeanPropertyTarget(Object, org.apache.axis.utils.BeanPropertyDescriptor, int);
    
                    public void 
                    set(Object) 
                    throws org.xml.sax.SAXException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/BeanSerializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class BeanSerializer 
                    implements org.apache.axis.encoding.Serializer, java.io.Serializable {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private 
                    static 
                    final javax.xml.namespace.QName 
                    MUST_UNDERSTAND_QNAME;
    
                    private 
                    static 
                    final Object[] 
                    ZERO_ARGS;
    javax.xml.namespace.QName 
                    xmlType;
    Class 
                    javaType;
    
                    protected org.apache.axis.utils.BeanPropertyDescriptor[] 
                    propertyDescriptor;
    
                    protected org.apache.axis.description.TypeDesc 
                    typeDesc;
    
                    public void BeanSerializer(Class, javax.xml.namespace.QName);
    
                    public void BeanSerializer(Class, javax.xml.namespace.QName, org.apache.axis.description.TypeDesc);
    
                    public void BeanSerializer(Class, javax.xml.namespace.QName, org.apache.axis.description.TypeDesc, org.apache.axis.utils.BeanPropertyDescriptor[]);
    
                    public void 
                    serialize(javax.xml.namespace.QName, org.xml.sax.Attributes, Object, org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    public String 
                    getMechanismType();
    
                    public org.w3c.dom.Element 
                    writeSchema(Class, org.apache.axis.wsdl.fromJava.Types) 
                    throws Exception;
    
                    protected void 
                    writeField(org.apache.axis.wsdl.fromJava.Types, String, javax.xml.namespace.QName, Class, boolean, boolean, org.w3c.dom.Element, boolean, javax.xml.namespace.QName) 
                    throws Exception;
    
                    protected void 
                    writeAttribute(org.apache.axis.wsdl.fromJava.Types, String, Class, javax.xml.namespace.QName, org.w3c.dom.Element) 
                    throws Exception;
    
                    protected org.xml.sax.Attributes 
                    getObjectAttributes(Object, org.xml.sax.Attributes, org.apache.axis.encoding.SerializationContext);
    
                    private void 
                    setAttributeProperty(Object, javax.xml.namespace.QName, javax.xml.namespace.QName, Class, org.xml.sax.helpers.AttributesImpl, org.apache.axis.encoding.SerializationContext) 
                    throws Exception;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/BeanSerializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class BeanSerializerFactory 
                    extends BaseSerializerFactory {
    
                    protected 
                    transient org.apache.axis.description.TypeDesc 
                    typeDesc;
    
                    protected 
                    transient org.apache.axis.utils.BeanPropertyDescriptor[] 
                    propertyDescriptor;
    
                    public void BeanSerializerFactory(Class, javax.xml.namespace.QName);
    
                    private void 
                    init(Class);
    
                    public javax.xml.rpc.encoding.Serializer 
                    getSerializerAs(String) 
                    throws javax.xml.rpc.JAXRPCException;
    
                    protected org.apache.axis.encoding.Serializer 
                    getGeneralPurpose(String);
    
                    private void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
}

                

org/apache/axis/encoding/ser/CalendarDeserializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class CalendarDeserializer 
                    extends SimpleDeserializer {
    
                    private 
                    static java.text.SimpleDateFormat 
                    zulu;
    
                    public void CalendarDeserializer(Class, javax.xml.namespace.QName);
    
                    public Object 
                    makeValue(String);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/CalendarDeserializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class CalendarDeserializerFactory 
                    extends BaseDeserializerFactory {
    
                    public void CalendarDeserializerFactory(Class, javax.xml.namespace.QName);
}

                

org/apache/axis/encoding/ser/CalendarSerializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class CalendarSerializer 
                    implements org.apache.axis.encoding.SimpleValueSerializer {
    
                    private 
                    static java.text.SimpleDateFormat 
                    zulu;
    
                    public void CalendarSerializer();
    
                    public void 
                    serialize(javax.xml.namespace.QName, org.xml.sax.Attributes, Object, org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    public String 
                    getValueAsString(Object, org.apache.axis.encoding.SerializationContext);
    
                    public String 
                    getMechanismType();
    
                    public org.w3c.dom.Element 
                    writeSchema(Class, org.apache.axis.wsdl.fromJava.Types) 
                    throws Exception;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/CalendarSerializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class CalendarSerializerFactory 
                    extends BaseSerializerFactory {
    
                    public void CalendarSerializerFactory(Class, javax.xml.namespace.QName);
}

                

org/apache/axis/encoding/ser/DateDeserializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class DateDeserializer 
                    extends SimpleDeserializer {
    
                    private 
                    static java.text.SimpleDateFormat 
                    zulu;
    
                    private 
                    static java.util.Calendar 
                    calendar;
    
                    public void DateDeserializer(Class, javax.xml.namespace.QName);
    
                    public Object 
                    makeValue(String);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/DateDeserializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class DateDeserializerFactory 
                    extends BaseDeserializerFactory {
    
                    public void DateDeserializerFactory(Class, javax.xml.namespace.QName);
}

                

org/apache/axis/encoding/ser/DateSerializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class DateSerializer 
                    implements org.apache.axis.encoding.SimpleValueSerializer {
    
                    private 
                    static java.text.SimpleDateFormat 
                    zulu;
    
                    private 
                    static java.util.Calendar 
                    calendar;
    
                    public void DateSerializer();
    
                    public void 
                    serialize(javax.xml.namespace.QName, org.xml.sax.Attributes, Object, org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    public String 
                    getValueAsString(Object, org.apache.axis.encoding.SerializationContext);
    
                    public String 
                    getMechanismType();
    
                    public org.w3c.dom.Element 
                    writeSchema(Class, org.apache.axis.wsdl.fromJava.Types) 
                    throws Exception;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/DateSerializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class DateSerializerFactory 
                    extends BaseSerializerFactory {
    
                    public void DateSerializerFactory(Class, javax.xml.namespace.QName);
}

                

org/apache/axis/encoding/ser/DocumentDeserializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class DocumentDeserializer 
                    extends org.apache.axis.encoding.DeserializerImpl {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public 
                    static 
                    final String 
                    DESERIALIZE_CURRENT_ELEMENT = DeserializeCurrentElement;
    
                    public void DocumentDeserializer();
    
                    public 
                    final void 
                    onEndElement(String, String, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/DocumentDeserializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class DocumentDeserializerFactory 
                    extends BaseDeserializerFactory {
    
                    public void DocumentDeserializerFactory();
}

                

org/apache/axis/encoding/ser/DocumentSerializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class DocumentSerializer 
                    implements org.apache.axis.encoding.Serializer {
    
                    public void DocumentSerializer();
    
                    public void 
                    serialize(javax.xml.namespace.QName, org.xml.sax.Attributes, Object, org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    public String 
                    getMechanismType();
    
                    public org.w3c.dom.Element 
                    writeSchema(Class, org.apache.axis.wsdl.fromJava.Types) 
                    throws Exception;
}

                

org/apache/axis/encoding/ser/DocumentSerializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class DocumentSerializerFactory 
                    extends BaseSerializerFactory {
    
                    public void DocumentSerializerFactory();
}

                

org/apache/axis/encoding/ser/ElementDeserializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class ElementDeserializer 
                    extends org.apache.axis.encoding.DeserializerImpl {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public 
                    static 
                    final String 
                    DESERIALIZE_CURRENT_ELEMENT = DeserializeCurrentElement;
    
                    public void ElementDeserializer();
    
                    public 
                    final void 
                    onEndElement(String, String, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/ElementDeserializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class ElementDeserializerFactory 
                    extends BaseDeserializerFactory {
    
                    public void ElementDeserializerFactory();
}

                

org/apache/axis/encoding/ser/ElementSerializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class ElementSerializer 
                    implements org.apache.axis.encoding.Serializer {
    
                    public void ElementSerializer();
    
                    public void 
                    serialize(javax.xml.namespace.QName, org.xml.sax.Attributes, Object, org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    public String 
                    getMechanismType();
    
                    public org.w3c.dom.Element 
                    writeSchema(Class, org.apache.axis.wsdl.fromJava.Types) 
                    throws Exception;
}

                

org/apache/axis/encoding/ser/ElementSerializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class ElementSerializerFactory 
                    extends BaseSerializerFactory {
    
                    public void ElementSerializerFactory();
}

                

org/apache/axis/encoding/ser/EnumDeserializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class EnumDeserializer 
                    extends SimpleDeserializer {
    
                    private reflect.Method 
                    fromStringMethod;
    
                    private 
                    static 
                    final Class[] 
                    STRING_CLASS;
    
                    public void EnumDeserializer(Class, javax.xml.namespace.QName);
    
                    public Object 
                    makeValue(String) 
                    throws Exception;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/EnumDeserializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class EnumDeserializerFactory 
                    extends BaseDeserializerFactory {
    
                    public void EnumDeserializerFactory(Class, javax.xml.namespace.QName);
}

                

org/apache/axis/encoding/ser/EnumSerializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class EnumSerializer 
                    extends SimpleSerializer {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private reflect.Method 
                    toStringMethod;
    
                    public void EnumSerializer(Class, javax.xml.namespace.QName);
    
                    public void 
                    serialize(javax.xml.namespace.QName, org.xml.sax.Attributes, Object, org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    public String 
                    getValueAsString(Object, org.apache.axis.encoding.SerializationContext);
    
                    public org.w3c.dom.Element 
                    writeSchema(Class, org.apache.axis.wsdl.fromJava.Types) 
                    throws Exception;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/EnumSerializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class EnumSerializerFactory 
                    extends BaseSerializerFactory {
    
                    public void EnumSerializerFactory(Class, javax.xml.namespace.QName);
}

                

org/apache/axis/encoding/ser/HexDeserializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class HexDeserializer 
                    extends SimpleDeserializer {
    
                    public void HexDeserializer(Class, javax.xml.namespace.QName);
    
                    public Object 
                    makeValue(String) 
                    throws Exception;
}

                

org/apache/axis/encoding/ser/HexDeserializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class HexDeserializerFactory 
                    extends BaseDeserializerFactory {
    
                    public void HexDeserializerFactory(Class, javax.xml.namespace.QName);
}

                

org/apache/axis/encoding/ser/HexSerializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class HexSerializer 
                    implements org.apache.axis.encoding.SimpleValueSerializer {
    
                    public javax.xml.namespace.QName 
                    xmlType;
    
                    public Class 
                    javaType;
    
                    public void HexSerializer(Class, javax.xml.namespace.QName);
    
                    public void 
                    serialize(javax.xml.namespace.QName, org.xml.sax.Attributes, Object, org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    public String 
                    getValueAsString(Object, org.apache.axis.encoding.SerializationContext);
    
                    public String 
                    getMechanismType();
    
                    public org.w3c.dom.Element 
                    writeSchema(Class, org.apache.axis.wsdl.fromJava.Types) 
                    throws Exception;
}

                

org/apache/axis/encoding/ser/HexSerializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class HexSerializerFactory 
                    extends BaseSerializerFactory {
    
                    public void HexSerializerFactory(Class, javax.xml.namespace.QName);
}

                

org/apache/axis/encoding/ser/ImageDataHandlerDeserializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class ImageDataHandlerDeserializer 
                    extends JAFDataHandlerDeserializer {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void ImageDataHandlerDeserializer();
    
                    public void 
                    startElement(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/ImageDataHandlerSerializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class ImageDataHandlerSerializer 
                    extends JAFDataHandlerSerializer {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void ImageDataHandlerSerializer();
    
                    public void 
                    serialize(javax.xml.namespace.QName, org.xml.sax.Attributes, Object, org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/JAFDataHandlerDeserializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class JAFDataHandlerDeserializer 
                    extends org.apache.axis.encoding.DeserializerImpl {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void JAFDataHandlerDeserializer();
    
                    public void 
                    startElement(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    private void 
                    populateDataHandler(org.apache.axis.encoding.DeserializationContext, String, String, org.xml.sax.Attributes);
    
                    public org.apache.axis.message.SOAPHandler 
                    onStartChild(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/JAFDataHandlerDeserializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class JAFDataHandlerDeserializerFactory 
                    extends BaseDeserializerFactory {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void JAFDataHandlerDeserializerFactory(Class, javax.xml.namespace.QName);
    
                    public void JAFDataHandlerDeserializerFactory();
    
                    private 
                    static Class 
                    getDeserializerClass(Class, javax.xml.namespace.QName);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/JAFDataHandlerSerializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class JAFDataHandlerSerializer 
                    implements org.apache.axis.encoding.Serializer {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void JAFDataHandlerSerializer();
    
                    public void 
                    serialize(javax.xml.namespace.QName, org.xml.sax.Attributes, Object, org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    public String 
                    getMechanismType();
    
                    public org.w3c.dom.Element 
                    writeSchema(Class, org.apache.axis.wsdl.fromJava.Types) 
                    throws Exception;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/JAFDataHandlerSerializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class JAFDataHandlerSerializerFactory 
                    extends BaseSerializerFactory {
    
                    public void JAFDataHandlerSerializerFactory(Class, javax.xml.namespace.QName);
    
                    public void JAFDataHandlerSerializerFactory();
    
                    private 
                    static Class 
                    getSerializerClass(Class, javax.xml.namespace.QName);
}

                

org/apache/axis/encoding/ser/MapDeserializer$ItemHandler.class

                    package org.apache.axis.encoding.ser;

                    synchronized 
                    class MapDeserializer$ItemHandler 
                    extends org.apache.axis.encoding.DeserializerImpl {
    Object 
                    key;
    Object 
                    myValue;
    int 
                    numSet;
    MapDeserializer 
                    md;
    void MapDeserializer$ItemHandler(MapDeserializer, MapDeserializer);
    
                    public void 
                    setChildValue(Object, Object) 
                    throws org.xml.sax.SAXException;
    
                    public org.apache.axis.message.SOAPHandler 
                    onStartChild(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
}

                

org/apache/axis/encoding/ser/MapDeserializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class MapDeserializer 
                    extends org.apache.axis.encoding.DeserializerImpl {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public 
                    static 
                    final Object 
                    KEYHINT;
    
                    public 
                    static 
                    final Object 
                    VALHINT;
    
                    public 
                    static 
                    final Object 
                    NILHINT;
    
                    public void MapDeserializer();
    
                    public void 
                    onStartElement(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public org.apache.axis.message.SOAPHandler 
                    onStartChild(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    setChildValue(Object, Object) 
                    throws org.xml.sax.SAXException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/MapDeserializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class MapDeserializerFactory 
                    extends BaseDeserializerFactory {
    
                    public void MapDeserializerFactory(Class, javax.xml.namespace.QName);
}

                

org/apache/axis/encoding/ser/MapSerializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class MapSerializer 
                    implements org.apache.axis.encoding.Serializer {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_KEY;
    
                    private 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_ITEM;
    
                    private 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_VALUE;
    
                    private 
                    static 
                    final javax.xml.namespace.QName 
                    QNAME_ITEMTYPE;
    
                    public void MapSerializer();
    
                    public void 
                    serialize(javax.xml.namespace.QName, org.xml.sax.Attributes, Object, org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    public String 
                    getMechanismType();
    
                    public org.w3c.dom.Element 
                    writeSchema(Class, org.apache.axis.wsdl.fromJava.Types) 
                    throws Exception;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/MapSerializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class MapSerializerFactory 
                    extends BaseSerializerFactory {
    
                    public void MapSerializerFactory(Class, javax.xml.namespace.QName);
}

                

org/apache/axis/encoding/ser/MimeMultipartDataHandlerDeserializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class MimeMultipartDataHandlerDeserializer 
                    extends JAFDataHandlerDeserializer {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void MimeMultipartDataHandlerDeserializer();
    
                    public void 
                    startElement(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/MimeMultipartDataHandlerSerializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class MimeMultipartDataHandlerSerializer 
                    extends JAFDataHandlerSerializer {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void MimeMultipartDataHandlerSerializer();
    
                    public void 
                    serialize(javax.xml.namespace.QName, org.xml.sax.Attributes, Object, org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/OctetStreamDataHandlerDeserializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class OctetStreamDataHandlerDeserializer 
                    extends JAFDataHandlerDeserializer {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void OctetStreamDataHandlerDeserializer();
    
                    public void 
                    startElement(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/OctetStreamDataHandlerSerializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class OctetStreamDataHandlerSerializer 
                    extends JAFDataHandlerSerializer {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void OctetStreamDataHandlerSerializer();
    
                    public void 
                    serialize(javax.xml.namespace.QName, org.xml.sax.Attributes, Object, org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/PlainTextDataHandlerDeserializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class PlainTextDataHandlerDeserializer 
                    extends JAFDataHandlerDeserializer {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void PlainTextDataHandlerDeserializer();
    
                    public void 
                    startElement(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/PlainTextDataHandlerSerializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class PlainTextDataHandlerSerializer 
                    extends JAFDataHandlerSerializer {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void PlainTextDataHandlerSerializer();
    
                    public void 
                    serialize(javax.xml.namespace.QName, org.xml.sax.Attributes, Object, org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/QNameDeserializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class QNameDeserializer 
                    extends SimpleDeserializer {
    
                    private org.apache.axis.encoding.DeserializationContext 
                    context;
    
                    public void QNameDeserializer(Class, javax.xml.namespace.QName);
    
                    public Object 
                    makeValue(String);
    
                    public void 
                    onStartElement(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
}

                

org/apache/axis/encoding/ser/QNameDeserializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class QNameDeserializerFactory 
                    extends BaseDeserializerFactory {
    
                    public void QNameDeserializerFactory(Class, javax.xml.namespace.QName);
}

                

org/apache/axis/encoding/ser/QNameSerializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class QNameSerializer 
                    implements org.apache.axis.encoding.SimpleValueSerializer {
    
                    public void QNameSerializer();
    
                    public void 
                    serialize(javax.xml.namespace.QName, org.xml.sax.Attributes, Object, org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    public 
                    static String 
                    qName2String(javax.xml.namespace.QName, org.apache.axis.encoding.SerializationContext);
    
                    public String 
                    getValueAsString(Object, org.apache.axis.encoding.SerializationContext);
    
                    public String 
                    getMechanismType();
    
                    public org.w3c.dom.Element 
                    writeSchema(Class, org.apache.axis.wsdl.fromJava.Types) 
                    throws Exception;
}

                

org/apache/axis/encoding/ser/QNameSerializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class QNameSerializerFactory 
                    extends BaseSerializerFactory {
    
                    public void QNameSerializerFactory(Class, javax.xml.namespace.QName);
}

                

org/apache/axis/encoding/ser/SimpleDeserializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class SimpleDeserializer 
                    extends org.apache.axis.encoding.DeserializerImpl {
    
                    private 
                    static 
                    final Class[] 
                    STRING_STRING_CLASS;
    
                    public 
                    static 
                    final Class[] 
                    STRING_CLASS;
    
                    private 
                    final java.io.CharArrayWriter 
                    val;
    
                    private reflect.Constructor 
                    constructor;
    
                    private java.util.Map 
                    propertyMap;
    
                    private java.util.HashMap 
                    attributeMap;
    
                    public javax.xml.namespace.QName 
                    xmlType;
    
                    public Class 
                    javaType;
    
                    private org.apache.axis.description.TypeDesc 
                    typeDesc;
    
                    protected org.apache.axis.encoding.DeserializationContext 
                    context;
    
                    protected SimpleDeserializer 
                    cacheStringDSer;
    
                    protected javax.xml.namespace.QName 
                    cacheXMLType;
    
                    public void SimpleDeserializer(Class, javax.xml.namespace.QName);
    
                    public void SimpleDeserializer(Class, javax.xml.namespace.QName, org.apache.axis.description.TypeDesc);
    
                    private void 
                    init();
    
                    public void 
                    reset();
    
                    public void 
                    setConstructor(reflect.Constructor);
    
                    public org.apache.axis.message.SOAPHandler 
                    onStartChild(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    characters(char[], int, int) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    onEndElement(String, String, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public Object 
                    makeValue(String) 
                    throws Exception;
    
                    private Object 
                    makeBasicValue(String) 
                    throws Exception;
    
                    public void 
                    onStartElement(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    private void 
                    setSimpleTypeAttributes() 
                    throws org.xml.sax.SAXException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/SimpleDeserializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class SimpleDeserializerFactory 
                    extends BaseDeserializerFactory {
    
                    private 
                    static 
                    final Class[] 
                    STRING_STRING_CLASS;
    
                    private 
                    static 
                    final Class[] 
                    STRING_CLASS;
    
                    private 
                    transient reflect.Constructor 
                    constructor;
    
                    private boolean 
                    isBasicType;
    
                    public void SimpleDeserializerFactory(Class, javax.xml.namespace.QName);
    
                    private void 
                    initConstructor(Class);
    
                    public javax.xml.rpc.encoding.Deserializer 
                    getDeserializerAs(String) 
                    throws javax.xml.rpc.JAXRPCException;
    
                    private void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/SimpleListDeserializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class SimpleListDeserializer 
                    extends SimpleDeserializer {
    StringBuffer 
                    val;
    
                    private reflect.Constructor 
                    constructor;
    
                    private java.util.Map 
                    propertyMap;
    
                    private java.util.HashMap 
                    attributeMap;
    
                    private org.apache.axis.encoding.DeserializationContext 
                    context;
    
                    public javax.xml.namespace.QName 
                    xmlType;
    
                    public Class 
                    javaType;
    
                    private org.apache.axis.description.TypeDesc 
                    typeDesc;
    
                    protected SimpleListDeserializer 
                    cacheStringDSer;
    
                    protected javax.xml.namespace.QName 
                    cacheXMLType;
    
                    public void SimpleListDeserializer(Class, javax.xml.namespace.QName);
    
                    public void SimpleListDeserializer(Class, javax.xml.namespace.QName, org.apache.axis.description.TypeDesc);
    
                    public void 
                    reset();
    
                    public void 
                    setConstructor(reflect.Constructor);
    
                    public org.apache.axis.message.SOAPHandler 
                    onStartChild(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    characters(char[], int, int) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    onEndElement(String, String, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public Object 
                    makeValue(String) 
                    throws Exception;
    
                    private Object 
                    makeUnitValue(String) 
                    throws Exception;
    
                    public void 
                    onStartElement(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    private void 
                    setSimpleTypeAttributes() 
                    throws org.xml.sax.SAXException;
}

                

org/apache/axis/encoding/ser/SimpleListDeserializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class SimpleListDeserializerFactory 
                    extends BaseDeserializerFactory {
    
                    private 
                    static 
                    final Class[] 
                    STRING_CLASS;
    
                    private 
                    final Class 
                    clazzType;
    
                    private 
                    transient reflect.Constructor 
                    constructor;
    
                    public void SimpleListDeserializerFactory(Class, javax.xml.namespace.QName);
    
                    public javax.xml.rpc.encoding.Deserializer 
                    getDeserializerAs(String) 
                    throws javax.xml.rpc.JAXRPCException;
    
                    private Object 
                    readResolve() 
                    throws java.io.ObjectStreamException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/SimpleListSerializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class SimpleListSerializer 
                    implements org.apache.axis.encoding.SimpleValueSerializer {
    
                    public javax.xml.namespace.QName 
                    xmlType;
    
                    public Class 
                    javaType;
    
                    private org.apache.axis.utils.BeanPropertyDescriptor[] 
                    propertyDescriptor;
    
                    private org.apache.axis.description.TypeDesc 
                    typeDesc;
    
                    public void SimpleListSerializer(Class, javax.xml.namespace.QName);
    
                    public void SimpleListSerializer(Class, javax.xml.namespace.QName, org.apache.axis.description.TypeDesc);
    
                    public void 
                    serialize(javax.xml.namespace.QName, org.xml.sax.Attributes, Object, org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    public String 
                    getValueAsString(Object, org.apache.axis.encoding.SerializationContext);
    
                    private org.xml.sax.Attributes 
                    getObjectAttributes(Object, org.xml.sax.Attributes, org.apache.axis.encoding.SerializationContext);
    
                    public String 
                    getMechanismType();
    
                    public org.w3c.dom.Element 
                    writeSchema(Class, org.apache.axis.wsdl.fromJava.Types) 
                    throws Exception;
}

                

org/apache/axis/encoding/ser/SimpleListSerializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class SimpleListSerializerFactory 
                    extends BaseSerializerFactory {
    
                    public void SimpleListSerializerFactory(Class, javax.xml.namespace.QName);
}

                

org/apache/axis/encoding/ser/SimpleSerializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class SimpleSerializer 
                    implements org.apache.axis.encoding.SimpleValueSerializer {
    
                    public javax.xml.namespace.QName 
                    xmlType;
    
                    public Class 
                    javaType;
    
                    private org.apache.axis.utils.BeanPropertyDescriptor[] 
                    propertyDescriptor;
    
                    private org.apache.axis.description.TypeDesc 
                    typeDesc;
    
                    public 
                    static 
                    final String 
                    VALUE_PROPERTY = _value;
    
                    public void SimpleSerializer(Class, javax.xml.namespace.QName);
    
                    public void SimpleSerializer(Class, javax.xml.namespace.QName, org.apache.axis.description.TypeDesc);
    
                    private void 
                    init();
    
                    public void 
                    serialize(javax.xml.namespace.QName, org.xml.sax.Attributes, Object, org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    public String 
                    getValueAsString(Object, org.apache.axis.encoding.SerializationContext);
    
                    private org.xml.sax.Attributes 
                    getObjectAttributes(Object, org.xml.sax.Attributes, org.apache.axis.encoding.SerializationContext);
    
                    public String 
                    getMechanismType();
    
                    public org.w3c.dom.Element 
                    writeSchema(Class, org.apache.axis.wsdl.fromJava.Types) 
                    throws Exception;
}

                

org/apache/axis/encoding/ser/SimpleSerializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class SimpleSerializerFactory 
                    extends BaseSerializerFactory {
    
                    private boolean 
                    isBasicType;
    
                    public void SimpleSerializerFactory(Class, javax.xml.namespace.QName);
    
                    public javax.xml.rpc.encoding.Serializer 
                    getSerializerAs(String) 
                    throws javax.xml.rpc.JAXRPCException;
}

                

org/apache/axis/encoding/ser/SourceDataHandlerDeserializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class SourceDataHandlerDeserializer 
                    extends JAFDataHandlerDeserializer {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void SourceDataHandlerDeserializer();
    
                    public void 
                    startElement(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/SourceDataHandlerSerializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class SourceDataHandlerSerializer 
                    extends JAFDataHandlerSerializer {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void SourceDataHandlerSerializer();
    
                    public void 
                    serialize(javax.xml.namespace.QName, org.xml.sax.Attributes, Object, org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/TimeDeserializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class TimeDeserializer 
                    extends SimpleDeserializer {
    
                    public void TimeDeserializer(Class, javax.xml.namespace.QName);
    
                    public Object 
                    makeValue(String);
}

                

org/apache/axis/encoding/ser/TimeDeserializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class TimeDeserializerFactory 
                    extends BaseDeserializerFactory {
    
                    public void TimeDeserializerFactory(Class, javax.xml.namespace.QName);
}

                

org/apache/axis/encoding/ser/TimeSerializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class TimeSerializer 
                    implements org.apache.axis.encoding.SimpleValueSerializer {
    
                    private 
                    static java.text.SimpleDateFormat 
                    zulu;
    
                    public void TimeSerializer();
    
                    public void 
                    serialize(javax.xml.namespace.QName, org.xml.sax.Attributes, Object, org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    public String 
                    getValueAsString(Object, org.apache.axis.encoding.SerializationContext);
    
                    public String 
                    getMechanismType();
    
                    public org.w3c.dom.Element 
                    writeSchema(Class, org.apache.axis.wsdl.fromJava.Types) 
                    throws Exception;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/TimeSerializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class TimeSerializerFactory 
                    extends BaseSerializerFactory {
    
                    public void TimeSerializerFactory(Class, javax.xml.namespace.QName);
}

                

org/apache/axis/encoding/ser/VectorDeserializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class VectorDeserializer 
                    extends org.apache.axis.encoding.DeserializerImpl {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public int 
                    curIndex;
    
                    public void VectorDeserializer();
    
                    public void 
                    onStartElement(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public org.apache.axis.message.SOAPHandler 
                    onStartChild(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    setChildValue(Object, Object) 
                    throws org.xml.sax.SAXException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/VectorDeserializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class VectorDeserializerFactory 
                    extends BaseDeserializerFactory {
    
                    public void VectorDeserializerFactory(Class, javax.xml.namespace.QName);
}

                

org/apache/axis/encoding/ser/VectorSerializer.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class VectorSerializer 
                    implements org.apache.axis.encoding.Serializer {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void VectorSerializer();
    
                    public void 
                    serialize(javax.xml.namespace.QName, org.xml.sax.Attributes, Object, org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    public boolean 
                    isRecursive(org.apache.axis.utils.IdentityHashMap, java.util.Vector);
    
                    public String 
                    getMechanismType();
    
                    public org.w3c.dom.Element 
                    writeSchema(Class, org.apache.axis.wsdl.fromJava.Types) 
                    throws Exception;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/VectorSerializerFactory.class

                    package org.apache.axis.encoding.ser;

                    public 
                    synchronized 
                    class VectorSerializerFactory 
                    extends BaseSerializerFactory {
    
                    public void VectorSerializerFactory(Class, javax.xml.namespace.QName);
}

                

org/apache/axis/encoding/ser/castor/AxisContentHandler.class

                    package org.apache.axis.encoding.ser.castor;

                    public 
                    synchronized 
                    class AxisContentHandler 
                    extends org.xml.sax.helpers.DefaultHandler {
    
                    private org.apache.axis.encoding.SerializationContext 
                    context;
    
                    public void AxisContentHandler(org.apache.axis.encoding.SerializationContext);
    
                    public org.apache.axis.encoding.SerializationContext 
                    getContext();
    
                    public void 
                    setContext(org.apache.axis.encoding.SerializationContext);
    
                    public void 
                    startElement(String, String, String, org.xml.sax.Attributes) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    endElement(String, String, String) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    characters(char[], int, int) 
                    throws org.xml.sax.SAXException;
}

                

org/apache/axis/encoding/ser/castor/CastorDeserializer.class

                    package org.apache.axis.encoding.ser.castor;

                    public 
                    synchronized 
                    class CastorDeserializer 
                    extends org.apache.axis.encoding.DeserializerImpl 
                    implements org.apache.axis.encoding.Deserializer {
    
                    public javax.xml.namespace.QName 
                    xmlType;
    
                    public Class 
                    javaType;
    
                    public void CastorDeserializer(Class, javax.xml.namespace.QName);
    
                    public void 
                    onEndElement(String, String, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
}

                

org/apache/axis/encoding/ser/castor/CastorDeserializerFactory.class

                    package org.apache.axis.encoding.ser.castor;

                    public 
                    synchronized 
                    class CastorDeserializerFactory 
                    extends org.apache.axis.encoding.ser.BaseDeserializerFactory {
    
                    public void CastorDeserializerFactory(Class, javax.xml.namespace.QName);
    
                    public 
                    static org.apache.axis.encoding.DeserializerFactory 
                    create(Class, javax.xml.namespace.QName);
}

                

org/apache/axis/encoding/ser/castor/CastorEnumTypeDeserializer.class

                    package org.apache.axis.encoding.ser.castor;

                    public 
                    synchronized 
                    class CastorEnumTypeDeserializer 
                    extends org.apache.axis.encoding.DeserializerImpl 
                    implements org.apache.axis.encoding.Deserializer {
    
                    public javax.xml.namespace.QName 
                    xmlType;
    
                    public Class 
                    javaType;
    
                    public void CastorEnumTypeDeserializer(Class, javax.xml.namespace.QName);
    
                    public void 
                    onEndElement(String, String, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
}

                

org/apache/axis/encoding/ser/castor/CastorEnumTypeDeserializerFactory.class

                    package org.apache.axis.encoding.ser.castor;

                    public 
                    synchronized 
                    class CastorEnumTypeDeserializerFactory 
                    extends org.apache.axis.encoding.ser.BaseDeserializerFactory {
    
                    public void CastorEnumTypeDeserializerFactory(Class, javax.xml.namespace.QName);
    
                    public 
                    static org.apache.axis.encoding.DeserializerFactory 
                    create(Class, javax.xml.namespace.QName);
}

                

org/apache/axis/encoding/ser/castor/CastorEnumTypeSerializer.class

                    package org.apache.axis.encoding.ser.castor;

                    public 
                    synchronized 
                    class CastorEnumTypeSerializer 
                    implements org.apache.axis.encoding.Serializer {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void CastorEnumTypeSerializer();
    
                    public void 
                    serialize(javax.xml.namespace.QName, org.xml.sax.Attributes, Object, org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    public String 
                    getMechanismType();
    
                    public org.w3c.dom.Element 
                    writeSchema(Class, org.apache.axis.wsdl.fromJava.Types) 
                    throws Exception;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/castor/CastorEnumTypeSerializerFactory.class

                    package org.apache.axis.encoding.ser.castor;

                    public 
                    synchronized 
                    class CastorEnumTypeSerializerFactory 
                    extends org.apache.axis.encoding.ser.BaseSerializerFactory {
    
                    public void CastorEnumTypeSerializerFactory(Class, javax.xml.namespace.QName);
    
                    public 
                    static org.apache.axis.encoding.SerializerFactory 
                    create(Class, javax.xml.namespace.QName);
}

                

org/apache/axis/encoding/ser/castor/CastorSerializer.class

                    package org.apache.axis.encoding.ser.castor;

                    public 
                    synchronized 
                    class CastorSerializer 
                    implements org.apache.axis.encoding.Serializer {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void CastorSerializer();
    
                    public void 
                    serialize(javax.xml.namespace.QName, org.xml.sax.Attributes, Object, org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    public String 
                    getMechanismType();
    
                    public org.w3c.dom.Element 
                    writeSchema(Class, org.apache.axis.wsdl.fromJava.Types) 
                    throws Exception;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/encoding/ser/castor/CastorSerializerFactory.class

                    package org.apache.axis.encoding.ser.castor;

                    public 
                    synchronized 
                    class CastorSerializerFactory 
                    extends org.apache.axis.encoding.ser.BaseSerializerFactory {
    
                    public void CastorSerializerFactory(Class, javax.xml.namespace.QName);
    
                    public 
                    static org.apache.axis.encoding.SerializerFactory 
                    create(Class, javax.xml.namespace.QName);
}

                

org/apache/axis/enum/Scope.class

                    package org.apache.axis.enum;

                    public 
                    synchronized 
                    class Scope 
                    extends org.apache.axis.constants.Scope {
    
                    public void Scope();
}

                

org/apache/axis/enum/Style.class

                    package org.apache.axis.enum;

                    public 
                    synchronized 
                    class Style 
                    extends org.apache.axis.constants.Style {
    
                    public void Style();
}

                

org/apache/axis/enum/Use.class

                    package org.apache.axis.enum;

                    public 
                    synchronized 
                    class Use 
                    extends org.apache.axis.constants.Use {
    
                    public void Use();
}

                

org/apache/axis/handlers/BasicHandler.class

                    package org.apache.axis.handlers;

                    public 
                    abstract 
                    synchronized 
                    class BasicHandler 
                    implements org.apache.axis.Handler {
    
                    private 
                    static org.apache.commons.logging.Log 
                    log;
    
                    protected boolean 
                    makeLockable;
    
                    protected java.util.Hashtable 
                    options;
    
                    protected String 
                    name;
    
                    public void BasicHandler();
    
                    protected void 
                    setOptionsLockable(boolean);
    
                    protected void 
                    initHashtable();
    
                    public void 
                    init();
    
                    public void 
                    cleanup();
    
                    public boolean 
                    canHandleBlock(javax.xml.namespace.QName);
    
                    public void 
                    onFault(org.apache.axis.MessageContext);
    
                    public void 
                    setOption(String, Object);
    
                    public boolean 
                    setOptionDefault(String, Object);
    
                    public Object 
                    getOption(String);
    
                    public java.util.Hashtable 
                    getOptions();
    
                    public void 
                    setOptions(java.util.Hashtable);
    
                    public void 
                    setName(String);
    
                    public String 
                    getName();
    
                    public org.w3c.dom.Element 
                    getDeploymentData(org.w3c.dom.Document);
    
                    public void 
                    generateWSDL(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    public java.util.List 
                    getUnderstoodHeaders();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/handlers/DebugHandler.class

                    package org.apache.axis.handlers;

                    public 
                    synchronized 
                    class DebugHandler 
                    extends BasicHandler {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public 
                    static 
                    final String 
                    NS_URI_DEBUG = http://xml.apache.org/axis/debug;
    
                    public void DebugHandler();
    
                    public void 
                    invoke(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    public void 
                    onFault(org.apache.axis.MessageContext);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/handlers/EchoHandler.class

                    package org.apache.axis.handlers;

                    public 
                    synchronized 
                    class EchoHandler 
                    extends BasicHandler {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public String 
                    wsdlStart1;
    
                    public String 
                    wsdlStart;
    String 
                    wsdlEnd;
    
                    public void EchoHandler();
    
                    public void 
                    invoke(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    public void 
                    generateWSDL(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/handlers/ErrorHandler.class

                    package org.apache.axis.handlers;

                    public 
                    synchronized 
                    class ErrorHandler 
                    extends BasicHandler {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void ErrorHandler();
    
                    public void 
                    invoke(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/handlers/HandlerChainImpl.class

                    package org.apache.axis.handlers;

                    public 
                    synchronized 
                    class HandlerChainImpl 
                    extends java.util.ArrayList 
                    implements javax.xml.rpc.handler.HandlerChain {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public 
                    static 
                    final String 
                    JAXRPC_METHOD_INFO = jaxrpc.method.info;
    
                    private String[] 
                    _roles;
    
                    private int 
                    falseIndex;
    
                    protected java.util.List 
                    handlerInfos;
    
                    public String[] 
                    getRoles();
    
                    public void 
                    setRoles(String[]);
    
                    public void 
                    init(java.util.Map);
    
                    public void HandlerChainImpl();
    
                    public void HandlerChainImpl(java.util.List);
    
                    public void 
                    addNewHandler(String, java.util.Map);
    
                    public boolean 
                    handleFault(javax.xml.rpc.handler.MessageContext);
    
                    public java.util.ArrayList 
                    getMessageInfo(javax.xml.soap.SOAPMessage);
    
                    public boolean 
                    handleRequest(javax.xml.rpc.handler.MessageContext);
    
                    public boolean 
                    handleResponse(javax.xml.rpc.handler.MessageContext);
    
                    private void 
                    preInvoke(javax.xml.rpc.handler.soap.SOAPMessageContext);
    
                    private void 
                    postInvoke(javax.xml.rpc.handler.soap.SOAPMessageContext);
    
                    public void 
                    destroy();
    
                    private javax.xml.rpc.handler.Handler 
                    getHandlerInstance(int);
    
                    private javax.xml.rpc.handler.HandlerInfo 
                    getHandlerInfo(int);
    
                    private javax.xml.rpc.handler.Handler 
                    newHandler(javax.xml.rpc.handler.HandlerInfo);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/handlers/HandlerInfoChainFactory.class

                    package org.apache.axis.handlers;

                    public 
                    synchronized 
                    class HandlerInfoChainFactory 
                    implements java.io.Serializable {
    
                    protected java.util.List 
                    handlerInfos;
    
                    protected String[] 
                    _roles;
    
                    public void HandlerInfoChainFactory();
    
                    public void HandlerInfoChainFactory(java.util.List);
    
                    public java.util.List 
                    getHandlerInfos();
    
                    public javax.xml.rpc.handler.HandlerChain 
                    createHandlerChain();
    
                    public String[] 
                    getRoles();
    
                    public void 
                    setRoles(String[]);
    
                    public void 
                    init(java.util.Map);
}

                

org/apache/axis/handlers/JAXRPCHandler.class

                    package org.apache.axis.handlers;

                    public 
                    synchronized 
                    class JAXRPCHandler 
                    extends BasicHandler {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    protected HandlerChainImpl 
                    impl;
    
                    public void JAXRPCHandler();
    
                    public void 
                    init();
    
                    public void 
                    addNewHandler(String, java.util.Map);
    
                    public void 
                    invoke(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    public void 
                    onFault(org.apache.axis.MessageContext);
    
                    public void 
                    cleanup();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/handlers/JWSHandler.class

                    package org.apache.axis.handlers;

                    public 
                    synchronized 
                    class JWSHandler 
                    extends BasicHandler {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public 
                    final String 
                    OPTION_JWS_FILE_EXTENSION;
    
                    public 
                    final String 
                    DEFAULT_JWS_FILE_EXTENSION;
    
                    protected 
                    static java.util.HashMap 
                    soapServices;
    
                    public void JWSHandler();
    
                    public void 
                    invoke(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    protected void 
                    setupService(org.apache.axis.MessageContext) 
                    throws Exception;
    
                    public void 
                    generateWSDL(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/handlers/LogHandler.class

                    package org.apache.axis.handlers;

                    public 
                    synchronized 
                    class LogHandler 
                    extends BasicHandler {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    long 
                    start;
    
                    private boolean 
                    writeToConsole;
    
                    private String 
                    filename;
    
                    public void LogHandler();
    
                    public void 
                    init();
    
                    public void 
                    invoke(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    private void 
                    logMessages(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    private java.io.PrintWriter 
                    getWriter() 
                    throws java.io.IOException;
    
                    public void 
                    onFault(org.apache.axis.MessageContext);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/handlers/LogMessage.class

                    package org.apache.axis.handlers;

                    public 
                    synchronized 
                    class LogMessage 
                    extends BasicHandler {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void LogMessage();
    
                    public void 
                    invoke(org.apache.axis.MessageContext);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/handlers/MD5AttachHandler.class

                    package org.apache.axis.handlers;

                    public 
                    synchronized 
                    class MD5AttachHandler 
                    extends BasicHandler {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void MD5AttachHandler();
    
                    public void 
                    invoke(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/handlers/SOAPMonitorHandler.class

                    package org.apache.axis.handlers;

                    public 
                    synchronized 
                    class SOAPMonitorHandler 
                    extends BasicHandler {
    
                    private 
                    static long 
                    next_message_id;
    
                    public void SOAPMonitorHandler();
    
                    public void 
                    invoke(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    private Long 
                    assignMessageId(org.apache.axis.MessageContext);
    
                    private Long 
                    getMessageId(org.apache.axis.MessageContext);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/handlers/SimpleAuthenticationHandler.class

                    package org.apache.axis.handlers;

                    public 
                    synchronized 
                    class SimpleAuthenticationHandler 
                    extends BasicHandler {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void SimpleAuthenticationHandler();
    
                    public void 
                    invoke(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/handlers/SimpleAuthorizationHandler.class

                    package org.apache.axis.handlers;

                    public 
                    synchronized 
                    class SimpleAuthorizationHandler 
                    extends BasicHandler {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void SimpleAuthorizationHandler();
    
                    public void 
                    invoke(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    public void 
                    onFault(org.apache.axis.MessageContext);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/handlers/SimpleSessionHandler.class

                    package org.apache.axis.handlers;

                    public 
                    synchronized 
                    class SimpleSessionHandler 
                    extends BasicHandler {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public 
                    static 
                    final String 
                    SESSION_ID = SimpleSession.id;
    
                    public 
                    static 
                    final String 
                    SESSION_NS = http://xml.apache.org/axis/session;
    
                    public 
                    static 
                    final String 
                    SESSION_LOCALPART = sessionID;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    sessionHeaderName;
    
                    private java.util.Hashtable 
                    activeSessions;
    
                    private long 
                    reapPeriodicity;
    
                    private long 
                    lastReapTime;
    
                    private int 
                    defaultSessionTimeout;
    
                    public void SimpleSessionHandler();
    
                    public void 
                    invoke(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    public void 
                    doClient(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    public void 
                    doServer(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    private 
                    synchronized Long 
                    getNewSession();
    
                    public void 
                    setReapPeriodicity(long);
    
                    public void 
                    setDefaultSessionTimeout(int);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/handlers/http/HTTPActionHandler.class

                    package org.apache.axis.handlers.http;

                    public 
                    synchronized 
                    class HTTPActionHandler 
                    extends org.apache.axis.handlers.BasicHandler {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void HTTPActionHandler();
    
                    public void 
                    invoke(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/handlers/http/HTTPAuthHandler.class

                    package org.apache.axis.handlers.http;

                    public 
                    synchronized 
                    class HTTPAuthHandler 
                    extends org.apache.axis.handlers.BasicHandler {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void HTTPAuthHandler();
    
                    public void 
                    invoke(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/handlers/http/URLMapper.class

                    package org.apache.axis.handlers.http;

                    public 
                    synchronized 
                    class URLMapper 
                    extends org.apache.axis.handlers.BasicHandler {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void URLMapper();
    
                    public void 
                    invoke(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    public void 
                    generateWSDL(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/handlers/soap/MustUnderstandChecker.class

                    package org.apache.axis.handlers.soap;

                    public 
                    synchronized 
                    class MustUnderstandChecker 
                    extends org.apache.axis.handlers.BasicHandler {
    
                    private 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private SOAPService 
                    service;
    
                    public void MustUnderstandChecker(SOAPService);
    
                    public void 
                    invoke(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/handlers/soap/SOAPService.class

                    package org.apache.axis.handlers.soap;

                    public 
                    synchronized 
                    class SOAPService 
                    extends org.apache.axis.SimpleTargetedChain {
    
                    private 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private java.util.Vector 
                    validTransports;
    
                    private boolean 
                    highFidelityRecording;
    
                    private int 
                    sendType;
    
                    private org.apache.axis.description.ServiceDesc 
                    serviceDescription;
    
                    private org.apache.axis.AxisEngine 
                    engine;
    
                    public java.util.Map 
                    serviceObjects;
    
                    public int 
                    nextObjectID;
    
                    private 
                    static java.util.Hashtable 
                    sessions;
    
                    private boolean 
                    isRunning;
    java.util.ArrayList 
                    actors;
    
                    public void 
                    addSession(org.apache.axis.session.Session);
    
                    public void 
                    clearSessions();
    
                    public java.util.ArrayList 
                    getServiceActors();
    
                    public java.util.ArrayList 
                    getActors();
    
                    public java.util.List 
                    getRoles();
    
                    public void 
                    setRoles(java.util.List);
    
                    public void SOAPService();
    
                    public void SOAPService(org.apache.axis.Handler, org.apache.axis.Handler, org.apache.axis.Handler);
    
                    public org.apache.axis.encoding.TypeMappingRegistry 
                    getTypeMappingRegistry();
    
                    public void SOAPService(org.apache.axis.Handler);
    
                    public void 
                    setEngine(org.apache.axis.AxisEngine);
    
                    public org.apache.axis.AxisEngine 
                    getEngine();
    
                    public boolean 
                    availableFromTransport(String);
    
                    public org.apache.axis.constants.Style 
                    getStyle();
    
                    public void 
                    setStyle(org.apache.axis.constants.Style);
    
                    public org.apache.axis.constants.Use 
                    getUse();
    
                    public void 
                    setUse(org.apache.axis.constants.Use);
    
                    public org.apache.axis.description.ServiceDesc 
                    getServiceDescription();
    
                    public 
                    synchronized org.apache.axis.description.ServiceDesc 
                    getInitializedServiceDesc(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    public void 
                    setServiceDescription(org.apache.axis.description.ServiceDesc);
    
                    public void 
                    setPropertyParent(java.util.Hashtable);
    
                    public void 
                    generateWSDL(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    public void 
                    start();
    
                    public void 
                    stop();
    
                    public boolean 
                    isRunning();
    
                    public void 
                    enableTransport(String);
    
                    public void 
                    disableTransport(String);
    
                    public boolean 
                    needsHighFidelityRecording();
    
                    public void 
                    setHighFidelityRecording(boolean);
    
                    public int 
                    getSendType();
    
                    public void 
                    setSendType(int);
    
                    public void 
                    invoke(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/holders/DataHandlerHolder.class

                    package org.apache.axis.holders;

                    public 
                    final 
                    synchronized 
                    class DataHandlerHolder 
                    implements javax.xml.rpc.holders.Holder {
    
                    public javax.activation.DataHandler 
                    value;
    
                    public void DataHandlerHolder();
    
                    public void DataHandlerHolder(javax.activation.DataHandler);
}

                

org/apache/axis/holders/DateHolder.class

                    package org.apache.axis.holders;

                    public 
                    final 
                    synchronized 
                    class DateHolder 
                    implements javax.xml.rpc.holders.Holder {
    
                    public java.util.Date 
                    value;
    
                    public void DateHolder();
    
                    public void DateHolder(java.util.Date);
}

                

org/apache/axis/holders/DayHolder.class

                    package org.apache.axis.holders;

                    public 
                    final 
                    synchronized 
                    class DayHolder 
                    implements javax.xml.rpc.holders.Holder {
    
                    public org.apache.axis.types.Day 
                    value;
    
                    public void DayHolder();
    
                    public void DayHolder(org.apache.axis.types.Day);
}

                

org/apache/axis/holders/DurationHolder.class

                    package org.apache.axis.holders;

                    public 
                    final 
                    synchronized 
                    class DurationHolder 
                    implements javax.xml.rpc.holders.Holder {
    
                    public org.apache.axis.types.Duration 
                    value;
    
                    public void DurationHolder();
    
                    public void DurationHolder(org.apache.axis.types.Duration);
}

                

org/apache/axis/holders/HexBinaryHolder.class

                    package org.apache.axis.holders;

                    public 
                    final 
                    synchronized 
                    class HexBinaryHolder 
                    implements javax.xml.rpc.holders.Holder {
    
                    public org.apache.axis.types.HexBinary 
                    value;
    
                    public void HexBinaryHolder();
    
                    public void HexBinaryHolder(org.apache.axis.types.HexBinary);
}

                

org/apache/axis/holders/ImageHolder.class

                    package org.apache.axis.holders;

                    public 
                    final 
                    synchronized 
                    class ImageHolder 
                    implements javax.xml.rpc.holders.Holder {
    
                    public java.awt.Image 
                    value;
    
                    public void ImageHolder();
    
                    public void ImageHolder(java.awt.Image);
}

                

org/apache/axis/holders/MimeMultipartHolder.class

                    package org.apache.axis.holders;

                    public 
                    final 
                    synchronized 
                    class MimeMultipartHolder 
                    implements javax.xml.rpc.holders.Holder {
    
                    public javax.mail.internet.MimeMultipart 
                    value;
    
                    public void MimeMultipartHolder();
    
                    public void MimeMultipartHolder(javax.mail.internet.MimeMultipart);
}

                

org/apache/axis/holders/MonthDayHolder.class

                    package org.apache.axis.holders;

                    public 
                    final 
                    synchronized 
                    class MonthDayHolder 
                    implements javax.xml.rpc.holders.Holder {
    
                    public org.apache.axis.types.MonthDay 
                    value;
    
                    public void MonthDayHolder();
    
                    public void MonthDayHolder(org.apache.axis.types.MonthDay);
}

                

org/apache/axis/holders/MonthHolder.class

                    package org.apache.axis.holders;

                    public 
                    final 
                    synchronized 
                    class MonthHolder 
                    implements javax.xml.rpc.holders.Holder {
    
                    public org.apache.axis.types.Month 
                    value;
    
                    public void MonthHolder();
    
                    public void MonthHolder(org.apache.axis.types.Month);
}

                

org/apache/axis/holders/NegativeIntegerHolder.class

                    package org.apache.axis.holders;

                    public 
                    final 
                    synchronized 
                    class NegativeIntegerHolder 
                    implements javax.xml.rpc.holders.Holder {
    
                    public org.apache.axis.types.NegativeInteger 
                    value;
    
                    public void NegativeIntegerHolder();
    
                    public void NegativeIntegerHolder(org.apache.axis.types.NegativeInteger);
}

                

org/apache/axis/holders/NonNegativeIntegerHolder.class

                    package org.apache.axis.holders;

                    public 
                    final 
                    synchronized 
                    class NonNegativeIntegerHolder 
                    implements javax.xml.rpc.holders.Holder {
    
                    public org.apache.axis.types.NonNegativeInteger 
                    value;
    
                    public void NonNegativeIntegerHolder();
    
                    public void NonNegativeIntegerHolder(org.apache.axis.types.NonNegativeInteger);
}

                

org/apache/axis/holders/NonPositiveIntegerHolder.class

                    package org.apache.axis.holders;

                    public 
                    final 
                    synchronized 
                    class NonPositiveIntegerHolder 
                    implements javax.xml.rpc.holders.Holder {
    
                    public org.apache.axis.types.NonPositiveInteger 
                    value;
    
                    public void NonPositiveIntegerHolder();
    
                    public void NonPositiveIntegerHolder(org.apache.axis.types.NonPositiveInteger);
}

                

org/apache/axis/holders/NormalizedStringHolder.class

                    package org.apache.axis.holders;

                    public 
                    final 
                    synchronized 
                    class NormalizedStringHolder 
                    implements javax.xml.rpc.holders.Holder {
    
                    public org.apache.axis.types.NormalizedString 
                    value;
    
                    public void NormalizedStringHolder();
    
                    public void NormalizedStringHolder(org.apache.axis.types.NormalizedString);
}

                

org/apache/axis/holders/OctetStreamHolder.class

                    package org.apache.axis.holders;

                    public 
                    final 
                    synchronized 
                    class OctetStreamHolder 
                    implements javax.xml.rpc.holders.Holder {
    
                    public org.apache.axis.attachments.OctetStream 
                    value;
    
                    public void OctetStreamHolder();
    
                    public void OctetStreamHolder(org.apache.axis.attachments.OctetStream);
}

                

org/apache/axis/holders/PositiveIntegerHolder.class

                    package org.apache.axis.holders;

                    public 
                    final 
                    synchronized 
                    class PositiveIntegerHolder 
                    implements javax.xml.rpc.holders.Holder {
    
                    public org.apache.axis.types.PositiveInteger 
                    value;
    
                    public void PositiveIntegerHolder();
    
                    public void PositiveIntegerHolder(org.apache.axis.types.PositiveInteger);
}

                

org/apache/axis/holders/SchemaHolder.class

                    package org.apache.axis.holders;

                    public 
                    final 
                    synchronized 
                    class SchemaHolder 
                    implements javax.xml.rpc.holders.Holder {
    
                    public org.apache.axis.types.Schema 
                    value;
    
                    public void SchemaHolder();
    
                    public void SchemaHolder(org.apache.axis.types.Schema);
}

                

org/apache/axis/holders/SourceHolder.class

                    package org.apache.axis.holders;

                    public 
                    final 
                    synchronized 
                    class SourceHolder 
                    implements javax.xml.rpc.holders.Holder {
    
                    public javax.xml.transform.Source 
                    value;
    
                    public void SourceHolder();
    
                    public void SourceHolder(javax.xml.transform.Source);
}

                

org/apache/axis/holders/TimeHolder.class

                    package org.apache.axis.holders;

                    public 
                    final 
                    synchronized 
                    class TimeHolder 
                    implements javax.xml.rpc.holders.Holder {
    
                    public org.apache.axis.types.Time 
                    value;
    
                    public void TimeHolder();
    
                    public void TimeHolder(org.apache.axis.types.Time);
}

                

org/apache/axis/holders/TokenHolder.class

                    package org.apache.axis.holders;

                    public 
                    final 
                    synchronized 
                    class TokenHolder 
                    implements javax.xml.rpc.holders.Holder {
    
                    public org.apache.axis.types.Token 
                    value;
    
                    public void TokenHolder();
    
                    public void TokenHolder(org.apache.axis.types.Token);
}

                

org/apache/axis/holders/URIHolder.class

                    package org.apache.axis.holders;

                    public 
                    final 
                    synchronized 
                    class URIHolder 
                    implements javax.xml.rpc.holders.Holder {
    
                    public org.apache.axis.types.URI 
                    value;
    
                    public void URIHolder();
    
                    public void URIHolder(org.apache.axis.types.URI);
}

                

org/apache/axis/holders/UnsignedByteHolder.class

                    package org.apache.axis.holders;

                    public 
                    final 
                    synchronized 
                    class UnsignedByteHolder 
                    implements javax.xml.rpc.holders.Holder {
    
                    public org.apache.axis.types.UnsignedByte 
                    value;
    
                    public void UnsignedByteHolder();
    
                    public void UnsignedByteHolder(org.apache.axis.types.UnsignedByte);
}

                

org/apache/axis/holders/UnsignedIntHolder.class

                    package org.apache.axis.holders;

                    public 
                    final 
                    synchronized 
                    class UnsignedIntHolder 
                    implements javax.xml.rpc.holders.Holder {
    
                    public org.apache.axis.types.UnsignedInt 
                    value;
    
                    public void UnsignedIntHolder();
    
                    public void UnsignedIntHolder(org.apache.axis.types.UnsignedInt);
}

                

org/apache/axis/holders/UnsignedLongHolder.class

                    package org.apache.axis.holders;

                    public 
                    final 
                    synchronized 
                    class UnsignedLongHolder 
                    implements javax.xml.rpc.holders.Holder {
    
                    public org.apache.axis.types.UnsignedLong 
                    value;
    
                    public void UnsignedLongHolder();
    
                    public void UnsignedLongHolder(org.apache.axis.types.UnsignedLong);
}

                

org/apache/axis/holders/UnsignedShortHolder.class

                    package org.apache.axis.holders;

                    public 
                    final 
                    synchronized 
                    class UnsignedShortHolder 
                    implements javax.xml.rpc.holders.Holder {
    
                    public org.apache.axis.types.UnsignedShort 
                    value;
    
                    public void UnsignedShortHolder();
    
                    public void UnsignedShortHolder(org.apache.axis.types.UnsignedShort);
}

                

org/apache/axis/holders/YearHolder.class

                    package org.apache.axis.holders;

                    public 
                    final 
                    synchronized 
                    class YearHolder 
                    implements javax.xml.rpc.holders.Holder {
    
                    public org.apache.axis.types.Year 
                    value;
    
                    public void YearHolder();
    
                    public void YearHolder(org.apache.axis.types.Year);
}

                

org/apache/axis/holders/YearMonthHolder.class

                    package org.apache.axis.holders;

                    public 
                    final 
                    synchronized 
                    class YearMonthHolder 
                    implements javax.xml.rpc.holders.Holder {
    
                    public org.apache.axis.types.YearMonth 
                    value;
    
                    public void YearMonthHolder();
    
                    public void YearMonthHolder(org.apache.axis.types.YearMonth);
}

                

org/apache/axis/i18n/MessageBundle.class

                    package org.apache.axis.i18n;

                    public 
                    synchronized 
                    class MessageBundle {
    
                    private boolean 
                    loaded;
    
                    private ProjectResourceBundle 
                    _resourceBundle;
    
                    private 
                    final String 
                    projectName;
    
                    private 
                    final String 
                    packageName;
    
                    private 
                    final String 
                    resourceName;
    
                    private 
                    final java.util.Locale 
                    locale;
    
                    private 
                    final ClassLoader 
                    classLoader;
    
                    private 
                    final java.util.ResourceBundle 
                    parent;
    
                    public 
                    final ProjectResourceBundle 
                    getResourceBundle();
    
                    public void MessageBundle(String, String, String, java.util.Locale, ClassLoader, java.util.ResourceBundle) 
                    throws java.util.MissingResourceException;
    
                    public String 
                    getMessage(String) 
                    throws java.util.MissingResourceException;
    
                    public String 
                    getMessage(String, String) 
                    throws java.util.MissingResourceException;
    
                    public String 
                    getMessage(String, String, String) 
                    throws java.util.MissingResourceException;
    
                    public String 
                    getMessage(String, String, String, String) 
                    throws java.util.MissingResourceException;
    
                    public String 
                    getMessage(String, String, String, String, String) 
                    throws java.util.MissingResourceException;
    
                    public String 
                    getMessage(String, String, String, String, String, String) 
                    throws java.util.MissingResourceException;
    
                    public String 
                    getMessage(String, String[]) 
                    throws java.util.MissingResourceException;
}

                

org/apache/axis/i18n/Messages.class

                    package org.apache.axis.i18n;

                    public 
                    synchronized 
                    class Messages {
    
                    private 
                    static 
                    final Class 
                    thisClass;
    
                    private 
                    static 
                    final String 
                    projectName;
    
                    private 
                    static 
                    final String 
                    resourceName;
    
                    private 
                    static 
                    final java.util.Locale 
                    locale;
    
                    private 
                    static 
                    final String 
                    packageName;
    
                    private 
                    static 
                    final ClassLoader 
                    classLoader;
    
                    private 
                    static 
                    final java.util.ResourceBundle 
                    parent;
    
                    private 
                    static 
                    final MessageBundle 
                    messageBundle;
    
                    public void Messages();
    
                    public 
                    static String 
                    getMessage(String) 
                    throws java.util.MissingResourceException;
    
                    public 
                    static String 
                    getMessage(String, String) 
                    throws java.util.MissingResourceException;
    
                    public 
                    static String 
                    getMessage(String, String, String) 
                    throws java.util.MissingResourceException;
    
                    public 
                    static String 
                    getMessage(String, String, String, String) 
                    throws java.util.MissingResourceException;
    
                    public 
                    static String 
                    getMessage(String, String, String, String, String) 
                    throws java.util.MissingResourceException;
    
                    public 
                    static String 
                    getMessage(String, String, String, String, String, String) 
                    throws java.util.MissingResourceException;
    
                    public 
                    static String 
                    getMessage(String, String[]) 
                    throws java.util.MissingResourceException;
    
                    public 
                    static java.util.ResourceBundle 
                    getResourceBundle();
    
                    public 
                    static MessageBundle 
                    getMessageBundle();
    
                    private 
                    static 
                    final String 
                    getPackage(String);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/i18n/MessagesConstants.class

                    package org.apache.axis.i18n;

                    public 
                    synchronized 
                    class MessagesConstants {
    
                    public 
                    static 
                    final String 
                    projectName;
    
                    public 
                    static 
                    final String 
                    resourceName;
    
                    public 
                    static 
                    final java.util.Locale 
                    locale;
    
                    public 
                    static 
                    final String 
                    rootPackageName;
    
                    public 
                    static 
                    final java.util.ResourceBundle 
                    rootBundle;
    
                    public void MessagesConstants();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/i18n/ProjectResourceBundle$1.class

                    package org.apache.axis.i18n;

                    synchronized 
                    class ProjectResourceBundle$1 
                    implements java.util.Enumeration {
    
                    private java.util.Iterator 
                    it;
    void ProjectResourceBundle$1(ProjectResourceBundle, java.util.HashSet);
    
                    public boolean 
                    hasMoreElements();
    
                    public Object 
                    nextElement();
}

                

org/apache/axis/i18n/ProjectResourceBundle$Context.class

                    package org.apache.axis.i18n;

                    synchronized 
                    class ProjectResourceBundle$Context {
    
                    private java.util.Locale 
                    _locale;
    
                    private ClassLoader 
                    _loader;
    
                    private String 
                    _projectName;
    
                    private String 
                    _resourceName;
    
                    private java.util.ResourceBundle 
                    _parent;
    
                    private void ProjectResourceBundle$Context();
    void 
                    setLocale(java.util.Locale);
    void 
                    setLoader(ClassLoader);
    void 
                    setProjectName(String);
    void 
                    setResourceName(String);
    void 
                    setParentBundle(java.util.ResourceBundle);
    java.util.Locale 
                    getLocale();
    ClassLoader 
                    getLoader();
    String 
                    getProjectName();
    String 
                    getResourceName();
    java.util.ResourceBundle 
                    getParentBundle();
    String 
                    getCacheKey(String);
    java.util.ResourceBundle 
                    loadBundle(String);
    java.util.ResourceBundle 
                    getParentBundle(String);
    String 
                    validate(String) 
                    throws java.util.MissingResourceException;
}

                

org/apache/axis/i18n/ProjectResourceBundle.class

                    package org.apache.axis.i18n;

                    public 
                    synchronized 
                    class ProjectResourceBundle 
                    extends java.util.ResourceBundle {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private 
                    static 
                    final java.util.Hashtable 
                    bundleCache;
    
                    private 
                    static 
                    final java.util.Locale 
                    defaultLocale;
    
                    private 
                    final java.util.ResourceBundle 
                    resourceBundle;
    
                    private 
                    final String 
                    resourceName;
    
                    protected Object 
                    handleGetObject(String) 
                    throws java.util.MissingResourceException;
    
                    public java.util.Enumeration 
                    getKeys();
    
                    public 
                    static ProjectResourceBundle 
                    getBundle(String, String, String) 
                    throws java.util.MissingResourceException;
    
                    public 
                    static ProjectResourceBundle 
                    getBundle(String, Class, String, java.util.Locale) 
                    throws java.util.MissingResourceException;
    
                    public 
                    static ProjectResourceBundle 
                    getBundle(String, String, String, java.util.Locale, ClassLoader) 
                    throws java.util.MissingResourceException;
    
                    public 
                    static ProjectResourceBundle 
                    getBundle(String, Class, String, java.util.Locale, java.util.ResourceBundle) 
                    throws java.util.MissingResourceException;
    
                    public 
                    static ProjectResourceBundle 
                    getBundle(String, String, String, java.util.Locale, ClassLoader, java.util.ResourceBundle) 
                    throws java.util.MissingResourceException;
    
                    private 
                    static 
                    synchronized ProjectResourceBundle 
                    getBundle(ProjectResourceBundle$Context, String) 
                    throws java.util.MissingResourceException;
    
                    private 
                    static 
                    final String 
                    getPackage(String);
    
                    private void ProjectResourceBundle(String, java.util.ResourceBundle) 
                    throws java.util.MissingResourceException;
    
                    public String 
                    getResourceName();
    
                    public 
                    static void 
                    clearCache();
    
                    public String 
                    toString();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/i18n/RB.class

                    package org.apache.axis.i18n;

                    public 
                    synchronized 
                    class RB {
    
                    static java.util.Hashtable 
                    propertyCache;
    
                    public 
                    static 
                    final String 
                    BASE_NAME = resource;
    
                    public 
                    static 
                    final String 
                    PROPERTY_EXT = .properties;
    
                    protected String 
                    basePropertyFileName;
    
                    protected java.util.Properties 
                    resourceProperties;
    
                    public void RB(String) 
                    throws java.util.MissingResourceException;
    
                    public void RB(Object, String) 
                    throws java.util.MissingResourceException;
    
                    public void RB(Object, String, java.util.Locale) 
                    throws java.util.MissingResourceException;
    
                    public String 
                    getString(String) 
                    throws java.util.MissingResourceException;
    
                    public String 
                    getString(String, Object) 
                    throws java.util.MissingResourceException;
    
                    public String 
                    getString(String, Object, Object) 
                    throws java.util.MissingResourceException;
    
                    public String 
                    getString(String, Object, Object, Object) 
                    throws java.util.MissingResourceException;
    
                    public String 
                    getString(String, Object[]) 
                    throws java.util.MissingResourceException;
    
                    protected void 
                    loadProperties(String, ClassLoader, java.util.Locale, java.util.Locale) 
                    throws java.util.MissingResourceException;
    
                    protected java.util.Properties 
                    loadProperties(String, ClassLoader, java.util.Locale, java.util.Properties);
    
                    protected java.util.Properties 
                    loadProperties(String, ClassLoader);
    
                    protected java.util.Properties 
                    merge(java.util.Properties, java.util.Properties);
    
                    public java.util.Properties 
                    getProperties();
    
                    public 
                    static String 
                    getString(Object, String) 
                    throws java.util.MissingResourceException;
    
                    public 
                    static String 
                    getString(Object, String, Object) 
                    throws java.util.MissingResourceException;
    
                    public 
                    static String 
                    getString(Object, String, Object, Object) 
                    throws java.util.MissingResourceException;
    
                    public 
                    static String 
                    getString(Object, String, Object, Object, Object) 
                    throws java.util.MissingResourceException;
    
                    public 
                    static String 
                    getString(Object, String, Object, Object, Object, Object) 
                    throws java.util.MissingResourceException;
    
                    public 
                    static String 
                    getString(Object, String, Object, Object, Object, Object, Object) 
                    throws java.util.MissingResourceException;
    
                    public 
                    static String 
                    getString(Object, String, Object[]) 
                    throws java.util.MissingResourceException;
    
                    public 
                    static String 
                    getString(Object, java.util.Locale, String) 
                    throws java.util.MissingResourceException;
    
                    public 
                    static String 
                    getString(Object, java.util.Locale, String, Object) 
                    throws java.util.MissingResourceException;
    
                    public 
                    static String 
                    getString(Object, java.util.Locale, String, Object, Object) 
                    throws java.util.MissingResourceException;
    
                    public 
                    static String 
                    getString(Object, java.util.Locale, String, Object, Object, Object) 
                    throws java.util.MissingResourceException;
    
                    public 
                    static String 
                    getString(Object, java.util.Locale, String, Object, Object, Object, Object) 
                    throws java.util.MissingResourceException;
    
                    public 
                    static String 
                    getString(Object, java.util.Locale, String, Object, Object, Object, Object, Object) 
                    throws java.util.MissingResourceException;
    
                    public 
                    static String 
                    getString(Object, java.util.Locale, String, Object[]) 
                    throws java.util.MissingResourceException;
    
                    public 
                    static String 
                    getMessage(Object, String, java.util.Locale, String, Object[]) 
                    throws java.util.MissingResourceException;
    
                    public 
                    static void 
                    clearCache();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/i18n/resource.properties

# Translation instructions. # 1. Each message line is of the form key=value. # Translate the value, DO NOT translate the key. # 2. The messages may contain arguments that will be filled in # by the runtime. These are of the form: {0}, {1}, etc. # These must appear as is in the message, though the order # may be changed to support proper language syntax. # 3. If a single quote character is to appear in the resulting # message, it must appear in this file as two consecutive # single quote characters. # 4. Lines beginning with "#" (like this one) are comment lines # and may contain translation instructions. They need not be # translated unless your translated file, rather than this file, # will serve as a base for other translators. ###################################################################### # In-use keys # ###################################################################### addAfterInvoke00={0}: the chain has already been invoked addBody00=Adding body element to message... addHeader00=Adding header to message... adminServiceDeny=Denying service admin request from {0} adminServiceLoad=Current load = {0} adminServiceStart=Starting service in response to admin request from {0} adminServiceStop=Stopping service in response to admin request from {0} adminServiceSuspend=Starting {0} service in response to admin request from {1} adminServiceResume=Stopping {0} service in response to admin request from {1} auth00=User ''{0}'' authenticated to server auth01=User ''{0}'' authorized to ''{1}'' # NOTE: in axisService00, do not translate "AXIS" axisService00=Hi there, this is an AXIS service! # NOTE: in badArrayType00, do not translate "arrayTypeValue" badArrayType00=Malformed arrayTypeValue ''{0}'' badArraySize00=Malformed arraySizeValue ''{0}'' # NOTE: in badAuth00, do not translate ""Basic"" badAuth00=Bad authentication type (I can only handle "Basic"). badBool00=Invalid boolean # NOTE: in badCall01, do not translate "Call" badCall01=Failure trying to get the Call object badChars00=Unexpected characters badChars01=Bad character or insufficient number of characters in hex string badCompile00=Error while compiling: {0} badDate00=Invalid date badDateTime00=Invalid date/time badElem00=Invalid element in {0} - {1} badHandlerClass00=Class ''{0}'' is not a Handler (can't be used in HandlerProvider)! badHolder00=Holder of wrong type. badInteger00=Explicit array length is not a valid integer ''{0}''. badNameAttr00=No ''name'' attribute was specified in an undeployment element badNameType00=Invalid Name badNCNameType00=Invalid NCName badnegInt00=Invalid negativeInteger badNmtoken00=Invalid Nmtoken badNonNegInt00=Invalid nonNegativeInteger badNonPosInt00=Invalid nonPositiveInteger badOffset00=Malformed offset attribute ''{0}''. badpackage00=Error: --NStoPKG and --package switch can''t be used together # NOTE: in badParmMode00, do not translate "Parameter". badParmMode00=Invalid Parameter mode {0}. badPosition00=Malformed position attribute ''{0}''. badPort00=portName should not be null badposInt00=Invalid positiveInteger # NOTE: in badRequest00, do not translate "GET", "POST" badRequest00=Cannot handle non-GET, non-POST request badScope00=Unrecognized scope: {0}. Ignoring it. badTag00=Bad envelope tag: {0} badTime00=Invalid time badTimezone00=Invalid timezone badTypeNamespace00=Found languageSpecificType namespace ''{0}'', expected ''{1}'' badUnsignedByte00=Invalid unsigned byte badUnsignedShort00=Invalid unsigned short badUnsignedInt00=Invalid unsigned int badUnsignedLong00=Invalid unsigned long bodyElementParent=Warning: SOAPBodyElement.setParentElement should take a SOAPBody parameter instead of a SOAPEnvelope (but need not be called after SOAPBody.addBodyElement) bodyHeaderParent=Warning: SOAPHeaderElement.setParentElement should take a SOAPHeader parameter instead of a SOAPEnvelope (but need not be called after SOAPHeader.addHeaderElement) bodyElems00=There are {0} body elements. bodyIs00=body is {0} bodyPresent=Body already present cantAuth00=User ''{0}'' not authenticated (unknown user) cantAuth01=User ''{0}'' not authenticated cantAuth02=User ''{0}'' not authorized to ''{1}'' # NOTE: in the cantConvertXX messages, do not translate "bytes", "String", "bean", "int" cantConvert00=Cannot convert {0} to bytes cantConvert01=Cannot convert form {0} to String cantConvert02=Could not convert {0} to bean field ''{1}'', type {2} cantConvert03=Could not convert value to int cantConvert04=Could not set Class {0} Field {1} to value {2} - Exception {3} cantDoNullArray00=Cannot serialize null arrays just yet... # NOTE: in cantDoURL00, do not translate "getURL", "URL" cantDoURL00=getURL failed to correctly process URL; protocol not supported cantHandle00={0} encountered a child element, which is NOT expected, in something it was trying to deserialize. # NOTE: in cantInvoke00, do not translate "Call" or "URI" cantInvoke00=Cannot invoke Call with null namespace URI for method {0} # NOTE: in cantSerialize00, do not translate "ArraySerializer" cantSerialize00=Cannot serialize a {0} with the ArraySerializer! # NOTE: in cantSerialize01, do not translate "Elements" and "ElementSerializer" cantSerialize01=Cannot serialize non-Elements with an ElementSerializer! cantSerialize02=Cannot serialize a raw object cantSetURI00=Cannot set location URI: {0} cantTunnel00=Unable to tunnel through {0}:{1}. Proxy returns "{2}" #castor messages which are followed by getLocalizedMessage() of the real exception castorMarshalException00=Unable to marshall between XML and Castor Objects : castorValidationException00=Message doesn''t comply with the associated XML schema : changePwd00=Changing admin password childPresent=MessageElement.setObjectValue called when a child element is present # Note: in classGCed, do not translate "TypeDesc" and "Class" classGCed=TypeDesc referenced a Class object which has been garbage collected compiling00=Compiling: {0} ctor00=Constructor convert00=Trying to convert {0} to {1} copy00=copy {0} {1} couldntCall00=Could not get a call couldntConstructProvider00=Service couldn''t construct provider! # NOTE: in createdHTTP entries, do not translate "HTTP" createdHTTP00=Created an insecure HTTP connection createdHTTP01=Created an insecure HTTP connection using proxy {0}, port {1} # NOTE: in createdSSL00, do not translate "SSL" createdSSL00=Created an SSL connection connectionClosed00=Connection closed. debugLevel00=Setting debug level to: {0} # NOTE: in defaultLogic00, do not translate "AxisServer" defaultLogic00=Calling default logic in AxisServer # NOTE: in deserFact00, do not translate "DeserializerFactory" deserFact00=DeserializerFactory class is {0} disabled00=functionality disabled. dispatching00=Dispatching to a body namespace ''{0}'' doList00=Doing a list done00=Done processing doQuit00=Doing a quit duplicateFile00=Duplicate file name: {0}. \nHint: you may have mapped two namespaces with elements of the same name to the same package name. elapsed00=Elapsed: {0} milliseconds # NOTE: in emitFail00, do not translate "parameterOrder" emitFail00=Emitter failure. All input parts must be listed in the parameterOrder attribute of {0} # NOTE: in emitFail02 and emitFail03, do not translate "port", "service" emitFail02=Emitter failure. Cannot find endpoint address in port {0} in service {1} emitFail03=Emitter failure. Invalid endpoint address in port {0} in service {1}: {2} # NOTE do not translate "binding", "port", "service", or "portType" emitFailNoBinding01=Emitter failure. No binding found for port {0} emitFailNoBindingEntry01=Emitter failure. No binding entry found for {0} emitFailNoPortType01=Emitter failure. No portType entry found for {0} emitFailNoMatchingBindOperation01=Emitter failure. The operation ({0}) from portType ({1}) in the WSDL document has no corresponding binding operation.\nHint: make sure that the binding has the same number of operations as its portType. emitFailtUndefinedBinding01=Emitter failure. There is an undefined binding ({0}) in the WSDL document.\nHint: make sure <port binding=\"..\"> is fully qualified. emitFailtUndefinedBinding02=Emitter failure. There is an undefined binding ({0}) in the WSDL document {1}.\nHint: make sure <port binding=\"..\"> is fully qualified. emitFailtUndefinedMessage01=Emitter failure. There is an undefined message ({0}) in the WSDL document.\nHint: make sure <input message=\"..\"> and <output message=".."> are fully qualified. emitFailtUndefinedPort01=Emitter failure. There is an undefined portType ({0}) in the WSDL document.\nHint: make sure <binding type=\"..\"> is fully qualified. emitFailtUndefinedPort02=Emitter failure. There is an undefined portType ({0}) in the WSDL document {1}.\nHint: make sure <binding type=\"..\"> is fully qualified. emitWarnInvalidURL01=Emitter Warning. Invalid endpoint address in port {0} in service {1}: {2} emitter00=emitter empty00=empty # NOTE: in enableTransport00, do not translate "SOAPService" enableTransport00=SOAPService({0}) enabling transport {1} end00=end endElem00=End element {0} enter00=Enter: {0} #NOTE: in error00, do not translate "AXIS" error00=AXIS error error01=Error: {0} errorInvoking00=Error invoking operation: {0} errorProcess00=Error processing ''{0}'' exit00=Exit: {0} fault00=Fault occurred fileExistError00=Error determining if {0} already exists. Will not generate this file. filename00=File name is: {0} filename01={0}: request file name = ''{1}'' fromFile00=From file: ''{0}'':''{1}'' genFault00=Generating fault class getProxy00=Use to get a proxy class for {0} got00=Got {0} gotForID00=Got {0} for ID {1} (class = {2}) gotPrincipal00=Got principal: {0} gotType00={0} got type {1} gotValue00={0} got value {1} headers00=headers headerPresent=Header already present # NOTE: in httpPassword00, do not translate HTTP httpPassword00=HTTP password: {0} # NOTE: in httpPassword00, do not translate HTTP httpUser00=HTTP user id: {0} inMsg00=In message: {0} internalError00=Internal error internalError01=Internal server error invalidConfigFilePath=Configuration file directory ''{0}'' does not exist or is not a directory or is not readable. invalidWSDD00=Invalid WSDD element ''{0}'' (wanted ''{1}'') invalidXmlCharacter00=The char ''0x{0}'' after ''{1}'' is not a valid XML character. # NOTE: in invokeGet00, do no translate "GET" invokeGet00=invoking via GET isNull00=is {0} null? {1} makeEnvFail00=Could not make envelope match00={0} match: host: {1}, pattern: {2} mustBeIface00=Only interfaces may be used for the proxy class argument mustExtendRemote00=Only interfaces which extend java.rmi.Remote may be used for the proxy class argument needPwd00=Must specify a password! needService00=No target service to authorize for! needUser00=Need to specify a user for authorization! # NOTE: in newElem00, do not translate "MessageElement" newElem00=New MessageElement ({0}) named {1} no00=no {0} noAdminAccess00=Remote administrator access is not allowed! noAdminAccess01=Rejected remote access from host {0} # NOTE: in noContext00, do not translate "MessageElement.getValueAsType()" noContext00=No deserialization context to use in MessageElement.getValueAsType()! # NOTE: in noCustomElems00, do not translate "<body>" noCustomElems00=No custom elements allowed at top level until after the <body> tag noData00=No data noDeploy00=Could not generate deployment list! noDeser00=No deserializer for {0} noDeser01=Deserializing parameter ''{0}'': could not find deserializer for type {1} noDoc00=Could not get DOM document: XML was "{0}" # NOTE: in noEngine00, do not translate "AXIS" noEngine00=Could not find AXIS engine! # NOTE: in engineConfigWrongClass??, do not translate "EngineConfiguration" engineConfigWrongClass00=Expected instance of ''EngineConfiguration'' in environment engineConfigWrongClass01=Expected instance of ''{0}'' to be of type ''EngineConfiguration'' # NOTE: in engineConfigNoClass00, do not translate "EngineConfiguration" engineConfigNoClass00=''EngineConfiguration'' class not found: ''{0}'' engineConfigNoInstance00=''{0}'' class cannot be instantiated engineConfigIllegalAccess00=Illegal access while instantiating class ''{0}'' jndiNotFound00=JNDI InitialContext() returned null, default to non-JNDI behavior (DefaultAxisServerFactory) # NOTE: in servletContextWrongClass00, do not translate "ServletContext" servletContextWrongClass00=Expected instance of ''ServletContext'' in environment noEngineWSDD=Engine configuration is not present or not WSDD! noHandler00=Cannot locate handler: {0} noHandlerClass00=No HandlerProvider ''handlerClass'' option was specified! noHeader00=no {0} header! # NOTE: in noInstructions00, do not translate "SOAP" noInstructions00=Processing instructions are not allowed within SOAP messages noMap00={0}: {1} is not a map noMatchingProvider00=No provider type matches QName ''{0}'' noMethod01=No method! noOperation00=No operation name specified! noOperation01=Cannot find operation: {0} - none defined noOperation02=Cannot find operation: {0} noOption00=No ''{0}'' option was configured for the service ''{1}'' noPart00={0} not found as an input part OR an output part! # NOTE: in noPort00, do not translate "port" noPort00=Cannot find port: {0} # NOTE: in noPortType00, do not translate "portType" noPortType00=Cannot find portType: {0} noPrefix00={0} did not find prefix: {1} noPrincipal00=No principal! noRecorder00=No event recorder inside element # NOTE: in noRequest00, do not translate "MessageContext" noRequest00=No request message in MessageContext? noResponse01=No response message! noRoles00=No roles specified for target service, allowing. noRoles01=No roles specified for target service, disallowing. noSerializer00=No serializer found for class {0} in registry {1} noService00=Cannot find service: {0} noService04=No service object defined for this Call object. #NOTE: in noService04, do not translate "AXIS", "targetService" noService05=The AXIS engine could not find a target service to invoke! targetService is {0} noService06=No service is available at this URL # NOTE: in noSecurity00, do not translate "MessageContext" noSecurity00=No security provider in MessageContext! # NOTE: in noSOAPAction00, do not translate "HTTP", "SOAPAction" noSOAPAction00=No HTTP SOAPAction property in context noTransport00=No client transport named ''{0}'' found! noTransport01=No transport mapping for protocol: {0} noType00=No mapped schema type for {0} # NOTE: in noType01, do not translate "vector" noType01=No type attribute for vector! noTypeAttr00=Must include type attribute for Handler deployment! noTypeQName00=No type QName for mapping! notAuth00=User ''{0}'' not authorized to ''{1}'' notImplemented00={0} is not implemented! noTypeOnGlobalConfig00=GlobalConfiguration does not allow the ''type'' attribute! # NOTE: in noUnderstand00, do not translate "MustUnderstand" noUnderstand00=Did not understand "MustUnderstand" header(s):{0} versionMissmatch00=Version Mismatch # NOTE: in noValue00, do not translate "value", "RPCParam" noValue00=No value field for RPCParam to use?!? {0} # NOTE: in noWSDL00, do not translate "WSDL" noWSDL00=Could not generate WSDL! # NOTE: in noWSDL01, do not translate "SOAP" noWSDL01=There is no SOAP service at this location # NOTE: in noWSDL02, do not translate "WSDL" noWSDL02=There is a service at this location, but Axis did not generate the WSDL for it. Perhaps it is is misconfigured. null00={0} is null # NOTE: in nullCall00, do not translate "AdminClient" or "''call''" nullCall00=AdminClient did not initialize correctly: ''call'' is null! nullHandler00={0}: Null handler; nullNamespaceURI=Null namespace URI specified. nullNonNillableElement=Non nillable element ''{0}'' is null. nullParent00=null parent! nullProvider00=Null provider type passed to WSDDProvider! nullResponse00=Null response message! oddDigits00=Odd number of digits in hex string ok00=OK # NOTE: in the only1Body00, do not translate "Body" only1Body00=Only one Body element allowed! # NOTE: in the only1Header00, do not translate "Header" only1Header00=Only one Header element allowed! optionAll00=generate code for all elements, even unreferenced ones optionHelp00=print this message and exit # NOTE: in optionImport00, do not translate "WSDL" optionImport00=only generate code for the immediate WSDL document # NOTE: in optionFileNStoPkg00, do not translate "NStoPkg.properties" optionFileNStoPkg00=file of NStoPkg mappings (default NStoPkg.properties) # NOTE: in optionNStoPkg00, do not translate "namespace", "package" optionNStoPkg00=mapping of namespace to package optionOutput00=output directory for emitted files optionPackage00=override all namespace to package mappings, use this package name instead optionTimeout00=timeout in seconds (default is 45, specify -1 to disable) options00=Options: # NOTE: in optionScope00, do not translate "Application", "Request", "Session" optionScope00=add scope to deploy.wsdd: "Application", "Request", "Session" optionSkel00=emit server-side bindings for web service # NOTE: in optionTest00, do not translate "junit" optionTest00=emit junit testcase class for web service optionBuildFile00=emit Ant Buildfile for web service optionVerbose00=print informational messages optionAllowInvalidURL=emit file even if WSDL endpoint URL is not a valid URL outMsg00=Out message: {0} params00=Parameters are: {0} # NOTE: in parmMismatch00, do not translate "IN/INOUT", "addParameter()" parmMismatch00=Number of parameters passed in ({0}) doesn''t match the number of IN/INOUT parameters ({1}) from the addParameter() calls # NOTE: in parsing00, do not translate "XML" parsing00=Parsing XML file: {0} password00=Password: {0} perhaps00=Perhaps there will be a form for invoking the service here... popHandler00=Popping handler {0} process00=Processing ''{0}'' processFile00=Processing file {0} # NOTE: in pushHandler00, we are pushing a handler onto a stack pushHandler00=Pushing handler {0} quit00={0} quitting. quitRequest00=Administration service requested to quit, quitting. # NOTE: in reachedServer00, do not translate "SimpleAxisServer" reachedServer00=You have reached the SimpleAxisServer. unableToStartServer00=Unable to bind to port {0}. Did not start SimpleAxisServer. # NOTE: in reachedServlet00, do not translate "AXIS HTTP Servlet", "URL", "SOAP" reachedServlet00=Hi, you have reached the AXIS HTTP Servlet. Normally you would be hitting this URL with a SOAP client rather than a browser. readOnlyConfigFile=Configuration file read-only so engine configuration changes will not be saved. register00=register ''{0}'' - ''{1}'' removeBody00=Removing body element from message... removeHeader00=Removing header from message... removeTrailer00=Removing trailer from message... return01=return code: {0}\n{1} return02={0} returned: {1} saveConfigFail00=Could not write engine config! registerTypeMappingFor01=Please register a typemapping/beanmapping for ''{0}'' unsupportedDefaultEncoding00=Failed to initialize default encoding. Ensure your VM supports at least {0} encoding. # NOTE: in semanticCheck00, do not translate "SOAP" semanticCheck00=Doing SOAP semantic checks... # NOTE: in sendingXML00, do not translate "XML" sendingXML00={0} sending XML: serverDisabled00=This Axis server is not currently accepting requests. # NOTE: in serverFault00, do not translate "HTTP" serverFault00=HTTP server fault serverRun00=Server is running serverStop00=Server is stopped servletEngineWebInfError00=Problem with servlet engine /WEB-INF directory servletEngineWebInfWarn00=Unable to load/create servlet engine config file, attempting internal default (from jar). servletEngineWebInfError02=Problem with servlet engine config file (loading from jar) setProp00=Setting {0} property in {1} # NOTE: in setupTunnel00, do not translate "SSL" setupTunnel00=Set up SSL tunnelling through {0}:{1} setValueInTarget00=Set value {0} in target {1} somethingWrong00=Sorry, something seems to have gone wrong... here are the details: start00=starting up {0} on port {1} start01=starting up {0} on port {1} ({2}) startElem00=Start element {0} stackFrame00=Stack frame marker test00=... test01=.{0}. test02={0}, {1}. test03=.{2}, {0}, {1}. test04=.{0} {1} {2} ... {3} {2} {4} {5}. timeout00=Session id {0} timed out. transport00=Transport is {0} transport01={0}: Transport = ''{1}'' # NOTE: in transportName00, do not translate "AXIS" transportName00=In case you are interested, my AXIS transport name appears to be ''{0}'' tryingLoad00=Trying to load class: {0} # NOTE: in typeFromAttr00, do not translate "Type" typeFromAttr00=Type from attributes is: {0} unauth00=Unauthorized unexpectedEOS00=Unexpected end of stream unknownHost00=Unknown host - could not verify admininistrator access unregistered00=Unregistered type: {0} usage00=Usage: {0} user00=User: {0} usingServer00={0} using server {1} value00=value: {0} warning00=Warning: {0} where00=Where {0} looks like: wsdlError00=Error processing WSDL document: {0} {1} wsdlCreated00=WSDL created by {0} # NOTE: in wsdlGenLine00, do not translate "WSDL" wsdlGenLine00=This file was auto-generated from WSDL # NOTE: in wsdlGenLine01, do not translate "Apache Axis WSDL2Java" wsdlGenLine01=by the Apache Axis {0} WSDL2Java emitter. wsdlMissing00=Missing WSDL document # NOTE: in wsdlService00, do not translate "WSDL service" wsdlService00=Services from {0} WSDL service # NOTE: in xml entries, do not translate "XML" xmlRecd00=XML received: xmlSent00=XML sent: # NOTE: in the deployXX entries, do not translate "<!--" and "-->". These are comment indicators. Adding or removing whitespace to make the comment indicators line up would be nice. Also, do not translate the string "axis", or messages: deploy03, deploy04, deploy07 deploy08. Those messages are included so that the spaces can be lined up by the translator. deploy00=<!-- Use this file to deploy some handlers/chains and services --> deploy01=<!-- Use this file to undeploy some handlers/chains and services --> deploy02=<!-- Two ways to do this: --> deploy03=<!-- java org.apache.axis.client.AdminClient deploy.wsdd --> deploy04=<!-- java org.apache.axis.client.AdminClient undeploy.wsdd --> deploy05=<!-- after the axis server is running --> deploy06=<!-- or --> deploy07=<!-- java org.apache.axis.utils.Admin client|server deploy.wsdd --> deploy08=<!-- java org.apache.axis.utils.Admin client|server undeploy.wsdd --> deploy09=<!-- from the same directory that the Axis engine runs --> alreadyExists00={0} already exists optionDebug00=print debug information symbolTable00=Symbol Table undefined00=Type {0} is referenced but not defined. #NOTE: in cannotFindJNDIHome00, do not translate "EJB" or "JNDI" cannotFindJNDIHome00=Cannot find EJB at JNDI location {0} cannotCreateInitialContext00=Cannot create InitialContext undefinedloop00= The definition of {0} results in a loop. deserInitPutValueDebug00=Initial put of deserialized value= {0} for id= {1} deserPutValueDebug00=Put of deserialized value= {0} for id= {1} j2wemitter00=emitter j2wusage00=Usage: {0} j2woptions00=Options: j2wdetails00=Details:\n portType element name= <--portTypeName value> OR <class-of-portType name>\n binding element name= <--bindingName value> OR <--servicePortName value>SoapBinding\n service element name= <--serviceElementName value> OR <--portTypeName value>Service \n port element name= <--servicePortName value>\n address location = <--location value> j2wopthelp00=print this message and exit j2woptoutput00=output WSDL filename j2woptlocation00=service location url j2woptportTypeName00=portType name (obtained from class-of-portType if not specified) j2woptservicePortName00=service port name (obtained from --location if not specified) j2woptserviceElementName00=service element name (defaults to --servicePortName value + "Service") j2woptnamespace00=target namespace j2woptPkgtoNS00=package=namespace, name value pairs j2woptmethods00=space or comma separated list of methods to export j2woptall00=look for allowed methods in inherited class j2woptoutputWsdlMode00=output WSDL mode: All, Interface, Implementation j2woptlocationImport00=location of interface wsdl j2woptnamespaceImpl00=target namespace for implementation wsdl j2woptoutputImpl00=output Implementation WSDL filename, setting this causes --outputWsdlMode to be ignored j2woptimplClass00=optional class that contains implementation of methods in class-of-portType. The debug information in the class is used to obtain the method parameter names, which are used to set the WSDL part names. j2werror00=Error: {0} j2wmodeerror=Error Unrecognized Mode: {0} Use All, Interface or Implementation. Continuing with All. j2woptexclude00=space or comma separated list of methods not to export j2woptstopClass00=space or comma separated list of class names which will stop inheritance search if --all switch is given j2woptImportSchema00=A file or URL to an XML Schema that should be physically imported into the generated WSDL j2woptDeploy00=generate wsdd and java classes for deploying # NOTE: in optionSkeletonDeploy00, do not translate "--server-side". optionSkeletonDeploy00=deploy skeleton (true) or implementation (false) in deploy.wsdd. Default is false. Assumes --server-side. j2wMissingLocation00=The -l <location> option must be specified if the full wsdl or the implementation wsdl is requested. invalidSolResp00={0} is a solicit-response style operation and is unsupported. invalidNotif00={0} is a notification style operation and is unsupported. ############################################################################# # DO NOT TOUCH THESE PROPERTIES - THEY ARE AUTOMATICALLY UPDATED BY THE BUILD # PROCESS. axisVersion=Apache Axis version: 1.4 axisVersionRaw=1.4 axisBuiltOnRaw=Apr 22, 2006 (06:55:48 PDT) axisUserAgent=Axis/1.4 builtOn=Built on Apr 22, 2006 (06:55:48 PDT) ############################################################################# badProp00=Bad property. The value for {0} should be of type {1}, but it is of type {2}. badProp03=Null property name specified. badProp04=Null property value specified. badProp05=Property name {0} not supported. badGetter00=Null getter method specified. badSetter00=Null setter method specified. badField00=Null public instance field specified. badJavaType=Null java class specified. badXmlType=Null qualified name specified. badSerFac=Null serializer factory specified. literalTypePart00=Error: Message part {0} of operation or fault {1} is specified as a type and the soap:body use of binding "{2}" is literal. This WSDL is not currently supported. BadServiceName00=Error: Empty or missing service name AttrNotSimpleType00=Bean attribute {0} is of type {1}, which is not a simple type AttrNotSimpleType01=Error: attribute is of type {0}, which is not a simple type NoSerializer00=Unable to find serializer for type {0} NoJAXRPCHandler00=Unable to create handler of type {0} optionTypeMapping00=indicate 1.1 or 1.2. The default is 1.1 (SOAP 1.1 JAX-RPC compliant. 1.2 indicates SOAP 1.1 encoded.) badTypeMappingOption00=The -typeMappingVersion argument must be 1.1 or 1.2 j2wopttypeMapping00=indicate 1.1 or 1.2. The default is 1.1 (SOAP 1.1 JAX-RPC compliant 1.2 indicates SOAP 1.1 encoded.) j2wBadTypeMapping00=The -typeMappingVersion argument must be 1.1 or 1.2 nodisk00=No disk access, using memory only. noFactory00=!! No Factory for {0} noTransport02=Couldn''t find transport {0} noCompiler00=No compiler found in your classpath! (you may need to add ''tools.jar'') compilerFail00=Please ensure that you have your JDK''s rt.jar listed in your classpath. Jikes needs it to operate. nullFieldDesc=Null FieldDesc specified exception00=Exception: exception01=Exception: {0} axisConfigurationException00=ConfigurationException: parserConfigurationException00=ParserConfigurationException: SAXException00=SAXException: javaxMailMessagingException00=javax.mail.MessagingException: javaIOException00=java.io.IOException: javaIOException01=java.io.IOException: {0} illegalAccessException00=IllegalAccessException: illegalArgumentException00=IllegalArgumentException: illegalArgumentException01=IllegalArgumentException: {0} invocationTargetException00=InvocationTargetException: instantiationException00=InstantiationException: malformedURLException00=MalformedURLException: axisFault00=AxisFault: toAxisFault00=Mapping Exception to AxisFault # NOTE: in badSkeleton00, do not translate "--skeletonDeploy" and "--server-side". badSkeleton00=Error: --skeletonDeploy cannot be specified without --server-side. timedOut=WSDL2Java emitter timed out (this often means the WSDL at the specified URL is inaccessible)! valuePresent=MessageElement.addChild called when an object value is present xmlPresent=MessageElement.setObjectValue called on an instance which was constructed using XML attachEnabled=Attachment support is enabled? attachDisabled=Unable to find required classes (javax.activation.DataHandler and javax.mail.internet.MimeMultipart). Attachment support is disabled. noEndpoint=No endpoint setMsgForm=Setting current message form to: {0} (currentMessage is now {1}) currForm=current form is {0} unsupportedAttach=Unsupported attachment type "{0}" only supporting "{1}". # NOTE: in onlySOAPParts, do not translate "SOAPPart". onlySOAPParts=This attachment implementation accepts only SOAPPart objects as the root part. gotNullPart=AttachmentUtils.getActiviationDataHandler received a null parameter as a part. streamNo=New boundary stream number: {0} streamClosed=Stream closed. eosBeforeMarker=End of stream encountered before final boundary marker. atEOS=Boundary stream number {0} is at end of stream readBStream="Read {0} from BoundaryDelimitedStream: {1} "{2}" bStreamClosed=Boundary stream number {0} is closed # NOTE: in badMaxCache, do not translate "maxCached". badMaxCached=maxCached value is bad: {0} maxCached=ManagedMemoryDataSource.flushToDisk maximum cached {0}, total memory {1}. diskCache=Disk cache file name "{0}". resourceDeleted=Resource has been deleted. noResetMark=Reset and mark not supported! nullInput=input buffer is null negOffset=Offset is negative: {0} length=Length: {0} writeBeyond=Write beyond buffer reading=reading {0} bytes from disk # NOTE: do not translate openBread openBread=open bread = {0} flushing=flushing read=read {0} bytes readError=Error reading data stream: {0} noFile=File for data handler does not exist: {0} mimeErrorNoBoundary=Error in MIME data stream, start boundary not found, expected: {0} mimeErrorParsing=Error in parsing mime data stream: {0} noRoot=Root part containing SOAP envelope not found. contentId = {0} noAttachments=No support for attachments noContent=No content targetService=Target service: {0} exceptionPrinting=Exception caught while printing request message noConfigFile=No engine configuration file - aborting! noTypeSetting={0} disallows setting of Type noSubElements=The element "{0}" is an attachment with sub elements which is not supported. # NOTE: in defaultCompiler, do not translate "javac" defaultCompiler=Using default javac compiler noModernCompiler=Javac connector could not find modern compiler -- falling back to classic. compilerClass=Javac compiler class: {0} noMoreTokens=no more tokens - could not parse error message: {0} cantParse=could not parse error message: {0} # NOTE: in sunJavac, do not translate "Sun Javac" sunJavac=Sun Javac Compiler # NOTE: in ibmJikes, do not translate "IBM Jikes" ibmJikes=IBM Jikes Compiler typeMeta=Type metadata returnTypeMeta=Return type metadata object needStringCtor=Simple Types must have a String constructor needToString=Simple Types must have a toString for serializing the value typeMap00=All the type mapping information is registered typeMap01=when the first call is made. typeMap02=The type mapping information is actually registered in typeMap03=the TypeMappingRegistry of the service, which typeMap04=is the reason why registration is only needed for the first call. mustSetStyle=must set encoding style before registering serializers # NOTE: in mustSpecifyReturnType and mustSpecifyParms, do not translate "addParameter()" and "setReturnType()" mustSpecifyReturnType=No returnType was specified to the Call object! You must call setReturnType() if you have called addParameter(). mustSpecifyParms=No parameters specified to the Call object! You must call addParameter() for all parameters if you have called setReturnType(). # NOTE: in noUse, do no translate "soap:operation", "binding operation", "use". noUse=The soap:operation for binding operation {0} must have a "use" attribute. fixedTypeMapping=Default type mapping cannot be modified. badTypeMapping=Invalid TypeMapping specified: wrong type or null. defaultTypeMappingSet=Default type mapping from secondary type mapping registry is already in use. getPortDoc00=For the given interface, get the stub implementation. getPortDoc01=If this service has no port for the given interface, getPortDoc02=then ServiceException is thrown. getPortDoc03=This service has multiple ports for a given interface; getPortDoc04=the proxy implementation returned may be indeterminate. noStub=There is no stub implementation for the interface: CantGetSerializer=unable to get serializer for class {0} unknownPortName=Cannot set Endpoint Address for Unknown Port setEndpointDoc00=Set the endpoint address for the specified port name. BadImplementation00=class {0} must implement {1} noVector00={0}: {1} is not a vector badVector00=Circular reference in Vector optionFactory00=name of a custom class that implements GeneratorFactory interface (for extending Java generation functions) optionHelper00=emits separate Helper classes for meta data badParameterMode=Invalid parameter mode byte ({0}) passed to getModeAsString(). attach.bounday.mns=Marking streams not supported. noSuchOperation=No such operation ''{0}'' optionUsername=username to access the WSDL-URI optionPassword=password to access the WSDL-URI implAlreadySet=Attempt to set implementation class on a ServiceDesc which has already been configured optionClasspath=additional classpath elements optionNSInclude=include namespace in generated code optionNSExclude=exclude namespace from generated code optionQuiet=do not print any informational or debug messages (except errors) implementationClassName=custom name of web service implementation cantCreateBean00=Unable to create JavaBean of type {0}. Missing default constructor? Error was: {1}. j2woptsoapAction00=value of the operation''s soapAction field. Values are DEFAULT, OPERATION or NONE. OPERATION forces soapAction to the name of the operation. DEFAULT causes the soapAction to be set according to the operation''s meta data (usually ""). NONE forces the soapAction to "". The default is DEFAULT. j2wBadSoapAction00=The value of --soapAction must be DEFAULT, NONE or OPERATION. dispatchIAE00=Tried to invoke method {0} with arguments {1}. The arguments do not match the signature. ftsf00=Creating trusting socket factory ftsf01=Exception creating factory ftsf02=SSL setup failed ftsf03=isClientTrusted: yes ftsf04=isServerTrusted: yes ftsf05=getAcceptedIssuers: none noSocketFactory=No socket factory for ''{0}'' protocol generating=Generating {0} j2woptStyle00=The style of binding in the WSDL, either DOCUMENT, RPC, or WRAPPED. j2woptBadStyle00=The value of --style must be DOCUMENT, RPC, or WRAPPED. noClassForService00=Could not find class for the service named: {0}\nHint: you may need to copy your class files/tree into the right location (which depends on the servlet system you are using). j2wDuplicateClass00=The <class-of-portType> has already been specified as, {0}. It cannot be specified again as {1}. j2wMissingClass00=The <class-of-portType> was not specified. w2jDuplicateWSDLURI00=The wsdl URI has already been specified as, {0}. It cannot be specified again as {1}. w2jMissingWSDLURI00=The wsdl URI was not specified. exclusiveQuietVerbose=--quiet and --verbose are exclusive exclusiveQuietDebug=--quiet and --Debug are exclusive badEnum02=Unrecognized {0}: ''{1}'' beanCompatType00=The class {0} is not a bean class and cannot be converted into an xml schema type. An xml schema anyType will be used to define this class in the wsdl file. beanCompatPkg00=The class {0} is defined in a java or javax package and cannot be converted into an xml schema type. An xml schema anyType will be used to define this class in the wsdl file. beanCompatConstructor00=The class {0} does not contain a default constructor, which is a requirement for a bean class. The class cannot be converted into an xml schema type. An xml schema anyType will be used to define this class in the wsdl file. badNamespaceForOperation00=soap:body in Binding {0} / Operation {1} has an empty namespace missingPartsForMessage00=Message {0} has no parts unsupportedSchemaType00=The XML Schema type ''{0}'' is not currently supported. optionNoWrap00=turn off support for "wrapped" document/literal noTypeOrElement00=Error: Message part {0} of operation or fault {1} has no element or type attribute. badattachmenttypeerr=The value of {0} for attachment format must be {1}; attach.dimetypeexceedsmax=DIME Type length is {0} which exceeds maximum {0} attach.dimelengthexceedsmax=DIME ID length is {0} which exceeds maximum {1}. attach.dimeMaxChunkSize0=Max chunk size \"{0}\" needs to be greater than one. attach.dimeMaxChunkSize1=Max chunk size \"{0}\" exceeds 32 bits. attach.dimeReadFullyError=Each DIME Stream must be read fully or closed in succession. attach.dimeNotPaddedCorrectly=DIME stream data not padded correctly. attach.readLengthError=Received \"{0}\" bytes to read. attach.readOffsetError=Received \"{0}\" as an offset. attach.readArrayNullError=Array to read is null attach.readArrayNullError=Array to read is null attach.readArraySizeError=Array size of {0} to read {1} at offset {2} is too small. attach.DimeStreamError0=End of physical stream detected when more DIME chunks expected. attach.DimeStreamError1=End of physical stream detected when {0} more bytes expected. attach.DimeStreamError2=There are no more DIME chunks expected! attach.DimeStreamError3=DIME header less than {0} bytes. attach.DimeStreamError4=DIME version received \"{0}\" greater than current supported version \"{1}\". attach.DimeStreamError5=DIME option length \"{0}\" is greater stream length. attach.DimeStreamError7=DIME stream closed during options padding. attach.DimeStreamError8=DIME stream closed getting ID length. attach.DimeStreamError9=DIME stream closed getting ID padding. attach.DimeStreamError10=DIME stream closed getting type. attach.DimeStreamError11=DIME stream closed getting type padding. attach.DimeStreamBadType=DIME stream received bad type \"{0}\". badOutParameter00=A holder could not be found or constructed for the OUT parameter {0} of method {1}. setJavaTypeErr00=Illegal argument passed to ParameterDesc.setJavaType. The java type {0} does not match the mode {1} badNormalizedString00=Invalid normalizedString value badToken00=Invalid token value badPropertyDesc00=Internal Error occurred while build the property descriptors for {0} j2woptinput00=input WSDL filename j2woptbindingName00=binding name (--servicePortName value + "SOAPBinding" if not specified) badClassFile00=Error looking for paramter names in bytecode: input does not appear to be a valid class file unexpectedEOF00=Error looking for paramter names in bytecode: unexpected end of file unexpectedBytes00=Error looking for paramter names in bytecode: unexpected bytes in file beanCompatExtends00=The class {0} extends non-bean class {1}. An xml schema anyType will be used to define {0} in the wsdl file. wrongNamespace00=The XML Schema type ''{0}'' is not valid in the Schema version ''{1}''. onlyOneBodyFor12=Only one body allowed for SOAP 1.2 RPC noElemAfterBody12=No element allowed after SOAP 1.2 body noEncodingStyleAttrAppear=encodigstyle attribute must not appear in element {0} in SOAP 1.2 noIDandHREFonSameElement=A ref attribute information item and an id attribute information item MUST NOT appear on the same element information item in SOAP 1.2 invalidEncodingStyle=Encoding style is invalid noSparseArray=Partially transmitted and sparse arrays is not supported in SOAP 1.2 badMsgMethodParam=Message service must take either a single Vector or a Document - method {0} takes a single {1} # NOTE: in wontOverwrite, do no translate "WSDL2Java". wontOverwrite={0} already exists, WSDL2Java will not overwrite it. badYearMonth00=Invalid gYearMonth badYear00=Invalid gYear badMonth00=Invalid gMonth badDay00=Invalid gDay badMonthDay00=Invalid gMonthDay badDuration=Invalid duration string does not match pattern. badCalendarForDuration=Calendar must represent a positive time duration. badDateDuration=Invalid date string does not match pattern. badTimeDuration=Invalid time string does not match pattern. needSimpleValueSer=Serializer class {0} does not implement SimpleValueSerializer, which is necessary for attributes. # NOTE: in needImageIO, do not translate "JIMI", "java.awt.Image", "http://java.sun.com/products/jimi/" needImageIO=JIMI is necessary to use java.awt.Image attachments (http://java.sun.com/products/jimi/). wsddServiceName00=The WSDD service name defaults to the port name. badSource=javax.xml.transform.Source implementation not supported: {0}. serviceDescOperSync00=The OperationDesc for {0} was not synchronized to a method of {1}. noServiceClass=No service class was found! Are you missing a className option? jpegOnly=Cannot handle {0}, can only handle JPEG image types. engineFactory=Got EngineFactory: {0} engineConfigMissingNewFactory=Factory {0} Ignored: missing required method: {1}. engineConfigInvokeNewFactory=Factory {0} Ignored: invoke method failed: {1}. engineConfigFactoryMissing=Unable to locate a valid EngineConfigurationFactory engineConfigLoadFactory=Factory {0} Ignored: unable to load/resolve class. noClassNameAttr00=classname attribute is missing. noValidHeader=qname attribute is missing. badNonNegInt00=Invalid nonNegativeInteger undefinedElem00=Element {0} is referenced but not defined. emptyref00=Error: missing type or ref attribute for node ''{0}'' absentRef00=Error: Cannot find referenced type ''{0}'' for type ''{1}'' cannotConnectError=Unable to connect unabletoDeployTypemapping00=Unable to deploy typemapping: {0} badWSDDOperation=Couldn''t find a matching Java operation for WSDD operation "{0}" ({1} args) badMsgMethodStyle=Method style for message-based service wasn''t one we recognized! badMsgMethodParams=Method ''{0}'' does not match any of the valid signatures for message-style service methods unmatchedOp=Binding operation has no corresponding portType operation: name = {0}, input name = {1}, output name = {2} noOperationForQName=Couldn''t find an appropriate operation for XML QName {0} noParmDesc=operation description is missing parameter description! noPortTypeFault=ERROR: Unable to match binding fault "{0}" from binding {2}, operation "{1}", to a PortType fault. unNamedFault00=ERROR: Fault is missing a name= attribute in operation "{0}", in binding {1}. missingSoapFault00=ERROR: Missing <soap:fault> element inFault "{0}" in operation "{0}", in binding {1} expectedHeaderParam=Found instance data for {0} in the soap:body instead of the soap:header. noReturnParam=Didn''t find specified return QName {0}! noMsg=No symbol table entry found for message {0} j2woptUse00=The use of items in the binding, either LITERAL or ENCODED j2woptBadUse00=The value of the use option must be LITERAL or ENCODED j2woptExtraClasses00=A space or comma separated list of class names to be added to the type section. j2woptBadClass00=Invalid class provided for --extraClasses option: {0} operationAlreadySet=Can''t modify settings on a Call whose OperationDesc was set by setOperation() illegalStateException00=IllegalStateException: badIdType00=Invalid Id badLanguage00=Invalid language noContainerForAnonymousType=makeTypeElement() was told to create a type "{0}", with no containing element cantLoadByecode=Unable to load bytecode for class "{0}" wsdlFileMissing=Unable to find WSDL file or resource {0} nullEngine=Null engine passed to SOAPService.setEngine()! servletEngineWebInfError03=Unable to find config file. Creating new servlet engine config file: {0} nsToPkgFileNotFound00=ERROR: Unable to open namespace-to-package mapping file "{0}". nsToPkgFileLoaded00=INFO: Loaded namespace-to-package mapping file "{0}". nsToPkgDefaultFileLoaded00=INFO: Loaded default namespace-to-package mapping file "{0}" as java resource. missingPortNameException=No name defined for <port> element. Hint: add an attribute "name" to the port definition, i.e. <port name="..."> missingBindingException=No binding defined for <port> element. Hint: add an attribute "binding" to he port definition, i.e. <port binding="..."> twoPortsWithSameName=Two <port> elements with the same name "{0}" found. Hint: choose unique names among all port elements in a WSDL document. acUsage00=Processes a set of administration commands. acUsage01= acUsage02=The following Options are available: acUsage03= acUsage04=\t-l<url> sets the AxisServlet URL acUsage05=\t-h<hostName sets the AxisServlet host acUsage06=\t-p<portNumber> sets the AxisServlet port acUsage07=\t-s<servletPath> sets the path to the AxisServlet acUsage08=\t-f<fileName> specifies that a simple file protocol should be used acUsage09=\t-u<username> sets the username acUsage10=\t-w<password> sets the password acUsage11=\t-d sets the debug flag (for instance, -ddd would set it to 3) acUsage12=\t-t<name> sets the transport chain touse acUsage13= acUsage14=Commands: acUsage15= acUsage16=\tlist will list the currently deployed services acUsage17=\tquit will send a quit message to SimpleAxisServer acUsage18=\tpasswd value changes the admin password acUsage19= acUsage20=Deployment Descriptor files: acUsage21= acUsage22=<deployment-descriptor-files> deploys or undeploys Axis components and acUsage23=web services described in these files acUsage24= acUsage25=If -l or -h -p -s are not set, the AdminClient will invoke acUsage26=http://localhost:8080/axis/servlet/AxisServlet foundJWS00=There is a Web Service here #NOTE in foundJWS01, do not translate WSDL foundJWS01=Click to see the WSDL noCharacterOrByteStream=InputSource has neither character stream nor byte stream couldNotReadFromCharStream=Could not read from character stream errorGetDocFromSOAPEnvelope=Could not get document from SOAPEnvelope badEjbHomeType=The home object retrieved from jndi does not have the same type as the one specified in the config file badEncodingStyle=Unknown encoding style badEncodingStyle1=Unknown encoding style : {0} badSOAPHeader00=a SOAPHeader may only have SOAPHeaderElement as its immediate children noNamespace00=Attempted to write schema for bad QName (no namespace) : {0} charsInArray=Found character data inside an array element while deserializing seqHashMapConcurrentModificationException00=modification has occured in the underlying map seqHashMapNoSuchElementException00=there are no more elements in the iterator seqHashMapBadIteratorType01=bad iterator type: {0} seqHashMapIllegalStateException00=remove() must follow next() seqHashMapArrayIndexOutOfBoundsException01={0} < 0 seqHashMapArrayIndexOutOfBoundsException02={0} >= {1} duplicateSchemaElement=Attempted to write duplicate schema element : {0} autoRegServletInit00=Auto registering WSDD files autoRegServletLoaded01=Loaded {0} autoRegServletApplyAndSaveSettings00=applyAndSaveSettings() autoRegServletLoadFailed01=Failed to load {0} happyClientNoAxis=Axis will not work happyClientNoAttachments=Attachments will not work happyClientNoSecurity=XML Security is not supported happyClientNoHTTPS=HTTPS is not available #note in happyClientNoLog4J do not translate Log4J happyClientNoLog4J=Logging will not use Log4J #note, in happyClientRecommendXerces do not translate xerces, or the URL happyClientRecommendXerces=Axis recommends Xerces2 (http://xml.apache.org/xerces2-j) as the XML Parser happyClientUnsupportedJVM=Axis does not support this version of Java -please upgrade happyClientNoParser=Could not create an XML Parser happyClientXMLinfo=XML Parser is {0} from {1} happyClientJSSEsources=jsse.jar or Java1.4 or later happyClientFoundDescriptionClassLocation=Found {0} ({1}) \n at {2} happyClientFoundDescriptionClass=Found {0} ({1}) happyClientWarning=Error happyClientError=Warning happyClientUnknownLocation=an unknown location happyClientNoResource=Warning: could not find resource {0} happyClientFoundResource=Found resource {0} happyClientHomepage=See the web page {0} happyClientMissingClass={0}: could not find class {1} from file {2} happyClientNoDependency={0} could not find a dependency of class {1} from file {2} happyClientTitle=Validating client configuration happyClientNeeded=Needed components happyClientOptional=Optional components happyClientSummary=Summary happyClientCorePresent=The core Axis libraries are present happyClientCoreMissing=Axis is missing {0} component(s) happyClientOptionalPresent=The optional components are present. happyClientOptionalMissing=Axis is missing {0} component(s) happyClientOptionalOK=Provided the missing functionality is not needed, the client will work happyClientWarningMessageCount={0} warning message(s) were printed noService10=No service named {0} is available #note, in adminServiceNoWSDD, do not translate WSDD adminServiceNoWSDD=Unable to process the message -was it a valid WSDD descriptor? failedJMSConnectorShutdown=failure in JMSConnectorShutdown clientNoTypemapping=There is no Java class typemapping for the fault {0} clientNoReturnClass=Failed to load the Java return class {0} noAppSession=No application session object! Defaulting to request scope... badMUVal=''{0}'' is not a valid value for the mustUnderstand attribute on element {1} outputParamsUnavailable=output parameters are only available after invoke() has been called serviceFactoryIllegalServiceInterface=serviceInterface must not be null serviceFactoryServiceInterfaceRequirement={0} is required to extend javax.xml.rpc.Service serviceFactoryServiceImplementationNotFound={0} is not found serviceFactoryServiceImplementationRequirement={0} is required to extend org.apache.axis.client.Service serviceFactoryInvalidServiceName=Service name must not be null ignoringNonFatalException00=Ignoring non-fatal exception incompatibleSEI00=Incompatible service endpoint interface: {0} indexOutOfBoundsException00=IndexOutOfBoundsException: saxToDomFailed00=Exception caught while converting attributes from SAX to DOM cannotFindPartForOperation00=Cannot find part [{0}] for operation [{1}] using MIMEContent type [{2}] Registrar.cantregister=Unable to initialize commons-modeler Registry. handlerInfoChainNoClass00=''HandlerInfoChain'' class not found: ''{0}'' noDefaultTypeMapping00=Default TypeMapping has not been specified noOverloadedOperations=WS-I Basic Profile disallows overloaded operations. Multiple definitions for operation ''{0}''! invocationArgumentsModified00=Invocation arguments were modified cannotCreateTextNode00=Exception creating text node cannotFindObjectForClass00=No object was found for class type {0} NullDelegate=Null delegate passed to TypeMappingDelegate constructor optionWrapArrays=Prefers building beans to straight arrays for wrapped XML array types (defaults to off). useStubsGetCallMethod=Please use Stub's _getCall method missingContentType=A HTTP POST request mandates a contentType HTTP header. warnDocLitInteropMultipleInputParts=Request Message type information has multiple parts than one single wrapped complexType. Use WRAPPED/LITERAL if interoping with some other soap stack becomes a problem cannotDoWrappedMode00=Warning: Element {0} has no type declaration, hence it is not a wrapper element. Switching off wrapped mode. nextStreamNotReady=Asked for the next delimited stream before the previous delimited stream is fully read failedToGetAttachmentPartStream=Exception occured when asking AttachmentPart.DataHandler for InputStream. nullDelimitedStream=The delimited stream used to initialize an IncomingAttachmentStreams object cannot be null. failedToGetDelimitedAttachmentStream=Exception occured when asking the delimited stream for the next stream. markNotSupported=Mark and reset features are not supported by this InputStream. concurrentModificationOfStream=The attachments stream can only be accessed once; either by using the IncomingAttachmentStreams class or by getting a collection of AttachmentPart objects. They cannot both be called within the life time of the same service request. # # # In-use keys # ###################################################################### ###################################################################### # Unused keys # # # # THE FOLLOWING KEYS ARE NOT IN-USE ON THE CURRENT SOURCE. FOR THIS # # REASON, THESE KEYS MAY BE DEPRECATED SOMETIMES IN THE FUTURE. IF # # YOU EXPLICITLY HOPE TO USE ANY KEYS BELOW, YOU HAVE TO MOVE THE # # KEYS INTO THE "In-use keys" BLOCK ABOVE. # # # # Mar. 31, 2005 Toshi # ###################################################################### addTrailer00=Adding trailer to message... # NOTE: in badCall00, do not translate "Call" badCall00=Cannot update the Call object badCall02=Invocation of Call.getOutputParams failed # NOTE: in badMsgCtx00, do not translate "--messageContext", "--skeleton" badMsgCtx00=Error: --messageContext switch only valid with --skeleton badNamespace00=Bad envelope namespace: {0} badProxy00=Proxy port number, "{0}", incorrectly formatted # NOTE: in badRootElem00, do not translate "clientdeploy", "deploy", "undeploy", "list", "passwd", "quit" badRootElem00=Root element must be ''clientdeploy'', ''deploy'', ''undeploy'', ''list'', ''passwd'', or ''quit'' badWSDDElem00=Invalid WSDD Element beanSerConfigFail00=Exception configuring bean serialization for {0} buildChain00={0} building chain ''{1}'' cantResolve00=Cannot resolve chain deployChain00=Deploying chain: {0} deployHandler00=Deploying handler: {0} deployService00=Deploying service ''{0}'' into {1} deployService01=Deploying service: {0} deployTransport00=Deploying transport: {0} dupConfigProvider00=Attempt to set configProvider for already-configured Service! duplicateClass00=Duplicate class name: {0}. \nHint: you may have mapped two namespaces with elements of the same name to the same package name. # NOTE: in emitFail01, do not translate "portType", "binding" emitFail01=Emitter failure. Cannot find portType operation parameters for binding {0} endDoc00=End document endDoc01=Done with document endPrefix00=End prefix mapping ''{0}'' exit01=Exit: {0} no-argument constructor exit02=Exit: {0} - {1} is null from00=From {0} genDeploy00=Generating deployment document genDeployFail00=Failed to write deployment document genHolder00=Generating type implementation holder # NOTE: in genIFace00, do not translate "portType" genIface00=Generating portType interface genIface01=Generating server-side portType interface genImpl00=Generating server-side implementation template # NOTE: in genService00, do not translate "service" genService00=Generating service class genSkel00=Generating server-side skeleton genStub00=Generating client-side stub genTest00=Generating service test case genType00=Generating type implementation genHelper00=Generating helper implementation genUndeploy00=Generating undeployment document genUndeployFail00=Failed to write undeployment document gotResponse00=Got response message handlerRegistryConfig=Service does not support configuration of a HandlerRegistry invokeRequest00=Invoking request chain invokeResponse00=Invoking response chain invokeService00=Invoking service/pivot lookup00=Looking up method {0} in class {1} namesDontMatch00=Method names do not match\nBody method name = {0}\nService method names = {1} namesDontMatch01=Method names do not match\nBody name = {0}\nService name = {1}\nService nameList = {2} never00={0}: this should never happen! {1} noArrayArray00=Arrays of arrays are not supported ''{0}''. # NOTE: in noArrayType00, do no translate "arrayType" noArrayType00=No arrayType attribute for array! # NOTE: in noBeanHome00, do not translate "EJBProvider" noBeanHome00=EJBProvider cannot get Bean Home # NOTE: in noBody00, do not translate "Body" noBody00=Body not found. noChains00=Services must use targeted chains noClass00=Could not create class {0} # NOTE: in noClassname00, do not translate "classname" noClassname00=No classname attribute in type mapping noComponent00=No deserializer defined for array type {0} noConfig00=No engine configuration file - aborting! # NOTE: in noContext01, do not translate "EJBProvider", "Context" noContext01=EJBProvider cannot get Context # NOTE: in noDeserFact00, do not translate "DeserializerFactory" noDeserFact00=Could not load DeserializerFactory {0} # NOTE: in noEngineConfig00, do not translate "engineConfig" noEngineConfig00=Wanted ''engineConfig'' element, got ''{0}'' encodingDisappeared00=XML Encoding runtime error: Previously supported encoding {0} disappeared. # NOTE: in noHandler01, do not translate "QName" noHandler01=No handler for QName {0} noHandler02=Could not find registered handler ''{0}'' noHandlersInChain00=No handlers in {0} ''{1}'' # NOTE: in noJSSE00, do not translate "SSL", JSSE", "classpath" noJSSE00=SSL feature disallowed: JSSE files not installed or present in classpath noMethod00=Method not found\nMethod name = {0}\nService name = {1} noMultiArray00=Multidimensional arrays are not supported ''{0}''. # NOTE: in noParent00, do not translate "SOAPTypeMappingRegistry" noParent00=no SOAPTypeMappingRegistry parent noPivot00=No pivot handler ''{0}'' found! noPivot01=Can''t deploy a Service with no provider (pivot)! noProviderAttr00=No provider specified for service ''{0}'' noProviderElem00=The required provider element is missing noRequest01=No request chain noResponse00=No response chain noSerializer01=Could not load serializer class {0} noService01=No service has been defined noService02=This service is not available at this endpoint ({0}). noService03=No service/pivot # NOTE: in noService07, do not translate "JWS" #UNUSED noService07=There may be a JWS service here. # NOTE: in noService08, do not translate "WSDL" #UNUSED noService08=Click here to look for the WSDL description # NOTE: in nullEJBUser00, do not translate "EJBProvider" nullEJBUser00=Null user in EJBProvider # NOTE: in optionMsgCtx00, do not translate "MessageContext" optionMsgCtx00=emit a MessageContext parameter to skeleton methods parent00=parent parseError00=Error in parsing: {0} registerTypeMap00=Registering type mapping {0} -> {1} registryAdd00=Registry {0} adding ''{1}'' ({2}) result00=Got result: {0} return00={0} returning new instance of {1} returnChain00={0} returning chain ''{1}'' unsupportedEncoding00=Encoding {0} not supported. serializer00=Serializer class is {0} servletEngineWebInfError01=Problem with servlet engine config file: {0} setCurrMsg00=Setting current message form to: {0} (current message is now {1}) startPrefix00=Start prefix mapping ''{0}'' -> ''{1}'' # NOTE: in typeFromParms00, do not translate "Type" typeFromParms00=Type from default parameters is: {0} # NOTE: in typeNotSet00, do not translate "Part" typeNotSet00=Type attribute on Part ''{0}'' is not set types00=Types: # NOTE: in typeSetNotAllowed00, do not translate "Type" typeSetNotAllowed00={0} disallows setting of Type undeploy00=Undeploying {0} unexpectedDesc00=Unexpected {0} descriptor unexpectedUnknown00=Unexpected unknown element unknownType00=Unknown type: {0} unknownType01=Unknown type to {0} # NOTE: in unlikely00, do not translate "URL", "WSDL2Java" unlikely00=unlikely as URL was validated in WSDL2Java # NOTE: in withParent00, do not translate "SOAPTypeMappingRegistry" withParent00=SOAPTypeMappingRegistry with parent j2woptfactory00=name of the Java2WSDLFactory class for extending WSDL generation functions multipleBindings00=Warning: Multiple bindings use the same portType: {0}. Only one interface is currently generated, which may not be what you want. triedArgs00={0} on object "{1}", method name "{2}", tried argument types: {3} triedClass00=tried class: {0}, method name: {1}. badProp01=Bad property. {0} should be {1}; but it is {2}. badProp02=Cannot set {0} property when {1} property is not {2}. badAccessor00=Null accessor method specified. badModifier00=Null modifier method specified. badDeserFac=Null deserializer factory specified. javaNetUnknownHostException00=java.net.UnknownHostException: axisFault01=AxisFault: {0} toAxisFault01=Mapping Exception to AxisFault: {0} badStyle=Bad string for style value - was ''{0}'', should be ''rpc'', ''document'', or ''wrapped''. onlyOneMapping=Only a single <elementMapping> is allowed per-operation at present. headerNotNull=Header may not be null! headerNotEmpty=Header may not be empty! headerValueNotNull=Header value may not be null! exitCurrMsg=Exit: {0}, current message is {1} noElemOrType=Error: Message part {0} of operation {1} should have either an element or a type attribute badTypeNode=Error: Missing type resolution for element {2}, in WSDL message part {0} of operation {1}. Hint: Try turning off ''wrapped'' processing (--noWrapped). delegatedTypeMapping=Type mapping cannot be modified via delegate. cantGetDoc00=Unable to retrieve WSDL document: {0} faultDuringCleanup=AxisEngine faulted during cleanup! badEnum03=Unrecognized {0}: ''{1}'', defaulting to ''{2}'' msgContentLengthHTTPerr=Message content length {0} exceeds servlet return capacity. attach.DimeStreamError6=DIME typelength length \"{0}\" is greater stream length. writeSchemaProblem00=Problems encountered trying to write schema for {0} msgMethodMustHaveOneParam=Message service methods must take a single parameter. Method {0} takes {1} needMessageContextArg=Full-message message service must take a single MessageContext argument. Method {0} takes a single {1} onlyOneMessageOp=Message services may only have one operation - service ''{0}'' has {1} # NOTE: in noDataHandler, do not translate DataHandler. noDataHandler=Could not create a DataHandler for {0}, returning {1} instead. imageEnabled=Image attachment support is enabled? rpcProviderOperAssert00=The OperationDesc for {0} was not found in the ServiceDesc. unabletoLoadMessages00=Unable to load messages! unsupportedOperationException00=UnsupportedOperationException00: unsupportedOperationException01=UnsupportedOperationException01: {0} uuidGenFactoryCNFE00=The implementation of UUIDGen interface specified cannot be found in the classpath: {0} not found uuidGenFactoryException02= Exception encountered while attempting to instantiate the specified implementation of UUIDFactory: {0} message={1} optionJaxrpc=Maps XML Schema types to Java types instead of the custom Axis types in org.apache.axis.types, according to JAX-RPC 1.1. # Found at 'ws-axis/java/src/org/apache/axis/client/Call.java', but commented out noParmAndRetReq=Parameter or return type inferred from WSDL and may not be updated. # Found at 'ws-axis/java/src/org/apache/axis/wsdl/symbolTable/SymbolTable.java', but commented out differentTypes00=Error: The input and output parameter have the same name, ''{0}'', but are defined with type ''{1}'' and also with type ''{2}''. # Found at 'ws-axis/java/src/org/apache/axis/message/SOAPBody.java', but commented out badSOAPBodyElement00=a SOAPBody may only have SOAPBodyElement as its immediate children # # # Unused keys # ######################################################################

org/apache/axis/i18n/resource_ja.properties

# Translation instructions. # 1. Each message line is of the form key=value. # Translate the value, DO NOT translate the key. # 2. The messages may contain arguments that will be filled in # by the runtime. These are of the form: {0}, {1}, etc. # These must appear as is in the message, though the order # may be changed to support proper language syntax. # 3. If a single quote character is to appear in the resulting # message, it must appear in this file as two consecutive # single quote characters. # 4. Lines beginning with "#" (like this one) are comment lines # and may contain translation instructions. They need not be # translated unless your translated file, rather than this file, # will serve as a base for other translators. addAfterInvoke00={0}: \u305d\u306e\u30c1\u30a7\u30a4\u30f3\u306f\u65e2\u306b\u547c\u3073\u51fa\u3055\u308c\u3066\u3044\u307e\u3059 / [en]-({0}: the chain has already been invoked) addBody00=\u30e1\u30c3\u30bb\u30fc\u30b8\u306b\u30dc\u30c7\u30a3\u8981\u7d20\u3092\u8ffd\u52a0\u3057\u3066\u3044\u307e\u3059... / [en]-(Adding body element to message...) addHeader00=\u30e1\u30c3\u30bb\u30fc\u30b8\u306b\u30d8\u30c3\u30c0\u3092\u8ffd\u52a0\u3057\u3066\u3044\u307e\u3059... / [en]-(Adding header to message...) adminServiceDeny={0}\u304b\u3089\u306e\u30b5\u30fc\u30d3\u30b9\u7ba1\u7406\u8981\u6c42\u3092\u62d2\u5426\u3057\u307e\u3059 / [en]-(Denying service admin request from {0}) adminServiceLoad=\u73fe\u5728\u306e\u30ed\u30fc\u30c9 = {0} / [en]-(Current load = {0}) adminServiceStart={0}\u304b\u3089\u306e\u7ba1\u7406\u8981\u6c42\u306b\u5fdc\u3058\u3066\u30b5\u30fc\u30d3\u30b9\u3092\u958b\u59cb\u3057\u3066\u3044\u307e\u3059 / [en]-(Starting service in response to admin request from {0}) adminServiceStop={0}\u304b\u3089\u306e\u7ba1\u7406\u8981\u6c42\u306b\u5fdc\u3058\u3066\u30b5\u30fc\u30d3\u30b9\u3092\u505c\u6b62\u3057\u3066\u3044\u307e\u3059 / [en]-(Stopping service in response to admin request from {0}) adminServiceSuspend={1}\u304b\u3089\u306e\u7ba1\u7406\u8981\u6c42\u306b\u5fdc\u3058\u3066{0}\u30b5\u30fc\u30d3\u30b9\u3092\u958b\u59cb\u3057\u3066\u3044\u307e\u3059 / [en]-(Starting {0} service in response to admin request from {1}) adminServiceResume={1}\u304b\u3089\u306e\u7ba1\u7406\u8981\u6c42\u306b\u5fdc\u3058\u3066{0}\u30b5\u30fc\u30d3\u30b9\u3092\u505c\u6b62\u3057\u3066\u3044\u307e\u3059 / [en]-(Stopping {0} service in response to admin request from {1}) auth00=\u30e6\u30fc\u30b6''{0}''\u306f\u30b5\u30fc\u30d0\u306b\u8a8d\u8a3c\u3055\u308c\u307e\u3057\u305f / [en]-(User ''{0}'' authenticated to server) auth01=\u30e6\u30fc\u30b6''{0}''\u306f''{1}''\u306b\u8a8d\u8a3c\u3055\u308c\u307e\u3057\u305f / [en]-(User ''{0}'' authorized to ''{1}'') # NOTE: in axisService00, do not translate "AXIS" axisService00=\u3053\u3093\u306b\u3061\u306f\u3001\u3053\u3061\u3089\u306fAXIS\u30b5\u30fc\u30d3\u30b9\u3067\u3059\uff01 / [en]-(Hi there, this is an AXIS service!) # NOTE: in badArrayType00, do not translate "arrayTypeValue" badArrayType00=\u4e0d\u6b63\u306a\u5f62\u5f0f\u306earrayTypeValue ''{0}'' / [en]-(Malformed arrayTypeValue ''{0}'') badArraySize00=\u4e0d\u6b63\u306a\u5f62\u5f0f\u306earraySizeValue ''{0}'' / [en]-(Malformed arraySizeValue ''{0}'') # NOTE: in badAuth00, do not translate ""Basic"" badAuth00=\u4e0d\u6b63\u306a\u8a8d\u8a3c\u5f62\u5f0f("Basic"\u8a8d\u8a3c\u306e\u307f\u6271\u3046\u3053\u3068\u304c\u53ef\u80fd) / [en]-(Bad authentication type (I can only handle "Basic").) badBool00=\u7121\u52b9\u306a\u8ad6\u7406\u578b / [en]-(Invalid boolean) # NOTE: in badCall00, do not translate "Call" badCall01=Call\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u53d6\u5f97\u5931\u6557 / [en]-(Failure trying to get the Call object) badChars00=\u4e88\u671f\u305b\u306c\u6587\u5b57\u5217 / [en]-(Unexpected characters) badChars01=16\u9032\u6570\u8868\u73fe\u306e\u6587\u5b57\u5217\u3067\u4e0d\u6b63\u306a\u6587\u5b57\u304c\u542b\u307e\u308c\u3066\u3044\u308b\u304b\u6587\u5b57\u306e\u500b\u6570\u304c\u4e0d\u8db3\u3057\u3066\u3044\u307e\u3059 / [en]-(Bad character or insufficient number of characters in hex string) badCompile00=\u30b3\u30f3\u30d1\u30a4\u30eb\u4e2d\u306e\u30a8\u30e9\u30fc: {0} / [en]-(Error while compiling: {0}) badDate00=\u7121\u52b9\u306a\u65e5\u4ed8 / [en]-(Invalid date) badDateTime00=\u7121\u52b9\u306a\u65e5\u4ed8/\u6642\u523b / [en]-(Invalid date/time) badElem00={0} - {1}\u5185\u306e\u7121\u52b9\u306a\u8981\u7d20 / [en]-(Invalid element in {0} - {1}) badHandlerClass00=\u30af\u30e9\u30b9''{0}''\u306f\u30cf\u30f3\u30c9\u30e9\u3067\u306f\u3042\u308a\u307e\u305b\u3093(\u305d\u306e\u30cf\u30f3\u30c9\u30e9\u306fHandlerProvider\u5185\u3067\u306f\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093)\uff01 / [en]-(Class ''{0}'' is not a Handler (can't be used in HandlerProvider)!) badHolder00=\u8aa4\u3063\u305f\u578b\u306e\u30db\u30eb\u30c0\u30fc / [en]-(Holder of wrong type.) badInteger00=\u660e\u793a\u7684\u306a\u914d\u5217\u9577\u304c\u6709\u52b9\u306a\u6574\u6570\u5024''{0}''\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002 / [en]-(Explicit array length is not a valid integer ''{0}''.) badNameAttr00=\u30a2\u30f3\u30c7\u30d7\u30ed\u30a4\u8981\u7d20\u5185\u3067''name''\u5c5e\u6027\u304c\u6307\u5b9a\u3055\u308c\u307e\u305b\u3093\u3067\u3057\u305f / [en]-(No ''name'' attribute was specified in an undeployment element) badNameType00=\u7121\u52b9\u306aName\u30aa\u30d6\u30b8\u30a7\u30af\u30c8 / [en]-(Invalid Name) badNCNameType00=\u7121\u52b9\u306aNCName\u30aa\u30d6\u30b8\u30a7\u30af\u30c8 / [en]-(Invalid NCName) badnegInt00=\u7121\u52b9\u306aNegativeInteger\u30aa\u30d6\u30b8\u30a7\u30af\u30c8 / [en]-(Invalid negativeInteger) badNmtoken00=\u7121\u52b9\u306aNMToken\u30aa\u30d6\u30b8\u30a7\u30af\u30c8 / [en]-(Invalid Nmtoken) badNonNegInt00=\u7121\u52b9\u306aNonNegativeInteger\u30aa\u30d6\u30b8\u30a7\u30af\u30c8 / [en]-(Invalid nonNegativeInteger) badNonPosInt00=\u7121\u52b9\u306aNonPositiveInteger\u30aa\u30d6\u30b8\u30a7\u30af\u30c8 / [en]-(Invalid nonPositiveInteger) badOffset00=\u4e0d\u6b63\u306a\u5f62\u5f0f\u306eoffset\u5c5e\u6027''{0}'' / [en]-(Malformed offset attribute ''{0}''.) badpackage00=\u30a8\u30e9\u30fc: --NStoPKG\u3068--package\u30b9\u30a4\u30c3\u30c1\u306f\u306f\u5171\u306b\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093 / [en]-(Error: --NStoPKG and --package switch can''t be used together) # NOTE: in badParmMode00, do not translate "Parameter". badParmMode00=\u7121\u52b9\u306aParameter\u306e\u30e2\u30fc\u30c9{0} / [en]-(Invalid Parameter mode {0}.) badPosition00=\u4e0d\u6b63\u306a\u5f62\u5f0f\u306eposition\u5c5e\u6027''{0}'' / [en]-(Malformed position attribute ''{0}''.) badPort00=portName\u306fNull\u306b\u3059\u3079\u304d\u3067\u306f\u3042\u308a\u307e\u305b\u3093 / [en]-(portName should not be null) badposInt00=\u7121\u52b9\u306aPositiveInteger\u30aa\u30d6\u30b8\u30a7\u30af\u30c8 / [en]-(Invalid positiveInteger) # NOTE: in badRequest00, do not translate "GET", "POST" badRequest00=GET, POST\u4ee5\u5916\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u6271\u3046\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093/ [en]-(Cannot handle non-GET, non-POST request) badScope00=\u8a8d\u8b58\u3067\u304d\u306a\u3044\u30b9\u30b3\u30fc\u30d7\u3067\u3059: {0} \u7121\u8996\u3057\u307e\u3059/ [en]-(Unrecognized scope: {0}. Ignoring it.) badTag00=\u4e0d\u6b63\u306a\u30a8\u30f3\u30d9\u30ed\u30fc\u30d7\u306e\u30bf\u30b0: {0} / [en]-(Bad envelope tag: {0}) badTime00=\u4e0d\u6b63\u306a\u6642\u523b / [en]-(Invalid time) badTimezone00=\u7121\u52b9\u306a\u30bf\u30a4\u30e0\u30be\u30fc\u30f3 / [en]-(Invalid timezone) badTypeNamespace00=languageSpecificType\u5c5e\u6027\u306e\u540d\u524d\u7a7a\u9593\u306f''{1}''\u3092\u671f\u5f85\u3057\u307e\u3057\u305f\u304c\u3001''{0}''\u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f / [en]-(Found languageSpecificType namespace ''{0}'', expected ''{1}'') badUnsignedByte00=\u7121\u52b9\u306a\u7b26\u53f7\u7121\u3057\u306ebyte\u578b / [en]-(Invalid unsigned byte) badUnsignedShort00=\u7121\u52b9\u306a\u7b26\u53f7\u7121\u3057\u306eshort\u578b / [en]-(Invalid unsigned short) badUnsignedInt00=\u7121\u52b9\u306a\u7b26\u53f7\u7121\u3057\u306eint\u578b / [en]-(Invalid unsigned int) badUnsignedLong00=\u7121\u52b9\u306a\u7b26\u53f7\u7121\u3057\u306elong\u578b / [en]-(Invalid unsigned long) bodyElementParent=\u8b66\u544a: SOAPBodyElement.setParentElement\u30e1\u30bd\u30c3\u30c9\u306fSOAPEnvelope\u30d1\u30e9\u30e1\u30fc\u30bf\u3067\u306f\u306a\u304fSOAPBody\u3092\u4f7f\u7528\u3059\u3079\u304d\u3067\u3059 / [en]-(\u304cSOAPBody.addBodyElement\u30e1\u30bd\u30c3\u30c9\u5b9f\u884c\u5f8c\u306b\u306f\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093) / [en]-(Warning: SOAPBodyElement.setParentElement should take a SOAPBody parameter instead of a SOAPEnvelope (but need not be called after SOAPBody.addBodyElement)) bodyHeaderParent=\u8b66\u544a: SOAPHeaderElement.setParentElement\u30e1\u30bd\u30c3\u30c9\u306fSOAPEnvelope\u30d1\u30e9\u30e1\u30fc\u30bf\u3067\u306f\u306a\u304fSOAPHeader\u3092\u4f7f\u7528\u3059\u3079\u304d\u3067\u3059 / [en]-(\u304cSOAPHeader.addHeaderElement\u30e1\u30bd\u30c3\u30c9\u5b9f\u884c\u5f8c\u306b\u306f\u5fc5\u8981\u3042\u308a\u307e\u305b\u3093) (Warning: SOAPHeaderElement.setParentElement should take a SOAPHeader parameter instead of a SOAPEnvelope (but need not be called after SOAPHeader.addHeaderElement)) bodyElems00=SOAP\u30dc\u30c7\u30a3\u3068\u3057\u3066\u8981\u7d20 {0} \u304c\u5b58\u5728\u3057\u307e\u3059 / [en]-(There are {0} body elements.) bodyIs00=SOAP\u30dc\u30c7\u30a3\u306f {0} \u3067\u3059 / [en]-(body is {0}) bodyPresent=SOAP\u30dc\u30c7\u30a3\u304c\u65e2\u306b\u5b58\u5728\u3057\u307e\u3059 / [en]-(Body already present) cantAuth00=\u8a8d\u8a3c\u3055\u308c\u3066\u3044\u306a\u3044\u30e6\u30fc\u30b6''{0}''(\u672a\u77e5\u306e\u30e6\u30fc\u30b6) / [en]-(User ''{0}'' not authenticated (unknown user)) cantAuth01=\u8a8d\u8a3c\u3055\u308c\u3066\u3044\u306a\u3044\u30e6\u30fc\u30b6''{0}'' / [en]-(User ''{0}'' not authenticated) cantAuth02=''{1}''\u306b\u8a8d\u8a3c\u3055\u308c\u3066\u3044\u306a\u3044\u30e6\u30fc\u30b6''{0}'' / [en]-(User ''{0}'' not authorized to ''{1}'') # NOTE: in the cantConvertXX messages, do not translate "bytes", "String", "bean", "int" cantConvert00={0}\u3092bytes\u578b\u306b\u5909\u63db\u3067\u304d\u307e\u305b\u3093 / [en]-(Cannot convert {0} to bytes) cantConvert01=\u30d5\u30a9\u30fc\u30e0{0}\u3092String\u578b\u306b\u5909\u63db\u3067\u304d\u307e\u305b\u3093 / [en]-(Cannot convert form {0} to String) cantConvert02={0}\u3092\u30d5\u30a3\u30fc\u30eb\u30c9''{1}''\u3001\u578b{2}\u306eBean\u306b\u5909\u63db\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f / [en]-(Could not convert {0} to bean field ''{1}'', type {2}) cantConvert03=\u5024\u3092int\u578b\u306b\u5909\u63db\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f / [en]-(Could not convert value to int) cantConvert04=\u30af\u30e9\u30b9{0}\u306e\u30d5\u30a3\u30fc\u30eb\u30c9{1}\u3092\u5024{2}\u306b\u30bb\u30c3\u30c8\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f - \u4f8b\u5916 {3} / [en]-(Could not set Class {0} Field {1} to value {2} - Exception {3}) cantDoNullArray00=Null\u3092\u914d\u5217\u306b\u30b7\u30ea\u30a2\u30e9\u30a4\u30ba\u3059\u308b\u306a\u3093\u3066\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093... / [en]-(Cannot serialize null arrays just yet...) # NOTE: in cantDoURL00, do not translate "getURL", "URL" cantDoURL00=getURL\u30e1\u30bd\u30c3\u30c9\u306fURL\u306e\u51e6\u7406\u306b\u5931\u6557\u3057\u307e\u3057\u305f; \u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u306a\u3044\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u3059 / [en]-(getURL failed to correctly process URL; protocol not supported) cantHandle00={0}\u306f\u30c7\u30b7\u30ea\u30a2\u30e9\u30a4\u30ba\u3057\u3088\u3046\u3068\u3057\u305f\u969b\u306b\u4e88\u671f\u305b\u306c\u5b50\u8981\u7d20\u3092\u898b\u3064\u3051\u307e\u3057\u305f / [en]-({0} encountered a child element, which is NOT expected, in something it was trying to deserialize.) # NOTE: in cantInvoke00, do not translate "Call" or "URI" cantInvoke00=\u30e1\u30bd\u30c3\u30c9{0}\u3092Null\u306e\u540d\u524d\u7a7a\u9593URI\u3067Call\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u547c\u51fa\u3059\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093 / [en]-(Cannot invoke Call with null namespace URI for method {0}) # NOTE: in cantSerialize00, do not translate "ArraySerializer" cantSerialize00=ArraySerializer\u3067\u306f{0}\u3092\u30b7\u30ea\u30a2\u30e9\u30a4\u30ba\u3067\u304d\u307e\u305b\u3093\uff01 / [en]-(Cannot serialize a {0} with the ArraySerializer!) # NOTE: in cantSerialize01, do not translate "Elements" and "ElementSerializer" cantSerialize01=ElementSerializer\u3067\u306fElements\u3067\u306a\u3044\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u30b7\u30ea\u30a2\u30e9\u30a4\u30ba\u306f\u3067\u304d\u307e\u305b\u3093\uff01 / [en]-(Cannot serialize non-Elements with an ElementSerializer!) cantSerialize02=\u751f\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8(java.lang.Object)\u306f\u30b7\u30ea\u30a2\u30e9\u30a4\u30ba\u3067\u304d\u307e\u305b\u3093 / [en]-(Cannot serialize a raw object) cantSetURI00=\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3URI: {0}\u3092\u30bb\u30c3\u30c8\u3067\u304d\u307e\u305b\u3093 / [en]-(Cannot set location URI: {0}) cantTunnel00={0}:{1}\u3092\u30c8\u30f3\u30cd\u30eb\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093. \u30d7\u30ed\u30ad\u30b7\u306f"{2}"\u3092\u8fd4\u5374\u3057\u307e\u3059 / [en]-(Unable to tunnel through {0}:{1}. Proxy returns "{2}") #castor messages which are followed by getLocalizedMessage() of the real exception castorMarshalException00=XML\u3068Castor\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u9593\u3092\u30de\u30c3\u30d4\u30f3\u30b0\u3067\u304d\u307e\u305b\u3093 : / [en]-(Unable to marshal between XML and Castor Objects :) castorValidationException00=\u30e1\u30c3\u30bb\u30fc\u30b8\u306f\u95a2\u9023\u4ed8\u3051\u3089\u308c\u308bXML\u30b9\u30ad\u30fc\u30de\u306b\u5f93\u3044\u307e\u305b\u3093 : / [en]-(Message doesn''t comply with the associated XML schema :) changePwd00=\u7ba1\u7406\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u5909\u66f4\u3057\u3066\u3044\u307e\u3059 / [en]-(Changing admin password) childPresent=MessageElement.setObjectValue\u30e1\u30bd\u30c3\u30c9\u306f\u5b50\u8981\u7d20\u304c\u5b58\u5728\u3059\u308b\u3068\u304d\u306b\u547c\u51fa\u3055\u308c\u307e\u3057\u305f / [en]-(MessageElement.setObjectValue called when a child element is present) compiling00={0} \u3092\u30b3\u30f3\u30d1\u30a4\u30eb\u3057\u3066\u3044\u307e\u3059 / [en]-(Compiling: {0}) ctor00=\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf / [en]-(Constructor) convert00={0}\u3092{1}\u3078\u5909\u63db\u3057\u3088\u3046\u3068\u3057\u3066\u3044\u307e\u3059/ [en]-(Trying to convert {0} to {1}) copy00={0}\u3092{1}\u306b\u30b3\u30d4\u30fc\u3057\u3066\u3044\u307e\u3059 / [en]-(copy {0} {1}) couldntCall00=\u547c\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f / [en]-(Could not get a call) couldntConstructProvider00=\u30b5\u30fc\u30d3\u30b9\u306f\u30d7\u30ed\u30d0\u30a4\u30c0\u3092\u69cb\u7bc9\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\uff01 / [en]-(Service couldn''t construct provider!) # NOTE: in createdHTTP entries, do not translate "HTTP" createdHTTP00=\u5b89\u5168\u3067\u306a\u3044HTTP\u30b3\u30cd\u30af\u30b7\u30e7\u30f3\u304c\u751f\u6210\u3055\u308c\u307e\u3057\u305f / [en]-(Created an insecure HTTP connection) createdHTTP01=\u30d7\u30ed\u30ad\u30b7:{0}, \u30dd\u30fc\u30c8:{1}\u3092\u4f7f\u7528\u3059\u308b\u5b89\u5168\u3067\u306a\u3044HTTP\u30b3\u30cd\u30af\u30b7\u30e7\u30f3\u304c\u751f\u6210\u3055\u308c\u307e\u3057\u305f / [en]-(Created an insecure HTTP connection using proxy {0}, port {1}) # NOTE: in createdSSL00, do not translate "SSL" createdSSL00=SSL\u30b3\u30cd\u30af\u30b7\u30e7\u30f3\u304c\u751f\u6210\u3055\u308c\u307e\u3057\u305f / [en]-(Created an SSL connection) connectionClosed00=\u30b3\u30cd\u30af\u30b7\u30e7\u30f3\u3092\u5207\u65ad\u3057\u307e\u3057\u305f / [en]-(Connection closed.) debugLevel00=\u30c7\u30d0\u30c3\u30b0\u30ec\u30d9\u30eb\u3092{0}\u306b\u30bb\u30c3\u30c8\u3057\u3066\u3044\u307e\u3059 / [en]-(Setting debug level to: {0}) # NOTE: in defaultLogic00, do not translate "AxisServer" defaultLogic00=AxisServer\u5185\u3067\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30ed\u30b8\u30c3\u30af\u3092\u547c\u51fa\u3057\u3066\u3044\u307e\u3059 / [en]-(Calling default logic in AxisServer) disabled00=\u6a5f\u80fd\u304c\u5229\u7528\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f / [en]-(functionality disabled.) dispatching00=\u30dc\u30c7\u30a3\u8981\u7d20\u306e\u540d\u524d\u7a7a\u9593''{0}''\u3078\u914d\u9001\u3057\u3066\u3044\u307e\u3059 / [en]-(Dispatching to a body namespace ''{0}'') doList00=\u30ea\u30b9\u30c8\u3092\u5b9f\u884c\u3057\u3066\u3044\u307e\u3059 / [en]-(Doing a list) done00=\u51e6\u7406\u3092\u5b9f\u884c\u3057\u307e\u3057\u305f / [en]-(Done processing) doQuit00=\u7d42\u4e86\u4e2d\u3067\u3059 / [en]-(Doing a quit) duplicateFile00=\u91cd\u8907\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u540d: {0} \n\u30d2\u30f3\u30c8: \u540c\u4e00\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u540d\u306b\u540c\u3058\u540d\u524d\u306e\u8981\u7d20\u30672\u3064\u306e\u540d\u524d\u7a7a\u9593\u3092\u30de\u30c3\u30d4\u30f3\u30b0\u3057\u3066\u3044\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059 / [en]-(Duplicate file name: {0}. \nHint: you may have mapped two namespaces with elements of the same name to the same package name.) elapsed00={0} \u30df\u30ea\u79d2\u7d4c\u904e\u3057\u307e\u3057\u305f / [en]-(Elapsed: {0} milliseconds) # NOTE: in emitFail00, do not translate "parameterOrder" emitFail00=\u751f\u6210\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002\u5168\u3066\u306einput\u8981\u7d20\u306f{0}\u306eparameterOrder\u5c5e\u6027\u3067\u30ea\u30b9\u30c8\u5316\u3055\u308c\u3066\u3044\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093 / [en]-(Emitter failure. All input parts must be listed in the parameterOrder attribute of {0}) # NOTE: in emitFail02 and emitFail03, do not translate "port", "service" emitFail02=\u751f\u6210\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002service{1}\u3001port{0}\u306e\u30a8\u30f3\u30c9\u30dd\u30a4\u30f3\u30c8\u30a2\u30c9\u30ec\u30b9\u3092\u898b\u3064\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093 / [en]-(Emitter failure. Cannot find endpoint address in port {0} in service {1}) emitFail03=\u751f\u6210\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002service{1}\u3001port{0}\u306e\u7121\u52b9\u306a\u30a8\u30f3\u30c9\u30dd\u30a4\u30f3\u30c8\u30a2\u30c9\u30ec\u30b9: {2} / [en]-(Emitter failure. Invalid endpoint address in port {0} in service {1}: {2}) # NOTE do not translate "binding", "port", "service", or "portType" emitFailNoBinding01=\u751f\u6210\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002port{0}\u306bbinding\u304c\u3042\u308a\u307e\u305b\u3093 / [en]-(Emitter failure. No binding found for port {0}) emitFailNoBindingEntry01=\u751f\u6210\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002{0}\u306b\u5bfe\u3059\u308bbinding\u30a8\u30f3\u30c8\u30ea\u304c\u3042\u308a\u307e\u305b\u3093 / [en]-(Emitter failure. No binding entry found for {0}) emitFailNoPortType01=\u751f\u6210\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002{0}\u306b\u5bfe\u3059\u308bportType\u30a8\u30f3\u30c8\u30ea\u304c\u3042\u308a\u307e\u305b\u3093 / [en]-(Emitter failure. No portType entry found for {0}) emitFailNoMatchingBindOperation01=\u751f\u6210\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002WSDL\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u5185\u306eportType({1})\u304b\u3089operation\u8981\u7d20({0})\u306f\u5bfe\u5fdc\u3059\u308b\u30d0\u30a4\u30f3\u30c7\u30a3\u30f3\u30b0\u306eoperation\u8981\u7d20\u3092\u6301\u3061\u307e\u305b\u3093 \n\u30d2\u30f3\u30c8:\u30d0\u30a4\u30f3\u30c7\u30a3\u30f3\u30b0\u304c\u305d\u306eportType\u8981\u7d20\u3057\u3066\u540c\u3058\u6570\u306eoperation\u8981\u7d20\u3092\u6301\u3064\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u4e0b\u3055\u3044 / [en]-(Emitter failure. The operation ({0}) from portType ({1}) in the WSDL document has no corresponding binding operation.\nHint: make sure that the binding has the same number of operations as its portType.) emitFailtUndefinedBinding01=\u751f\u6210\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002WSDL\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u5185\u306b\u672a\u5b9a\u7fa9\u306ebinding({0})\u304c\u3042\u308a\u307e\u3059\u3002 \n\u30d2\u30f3\u30c8: <port binding=\"..\"> \u304c\u5341\u5206\u306b\u9069\u3057\u305f\u3082\u306e\u304b\u3069\u3046\u304b\u78ba\u8a8d\u3057\u3066\u4e0b\u3055\u3044 / [en]-(Emitter failure. There is an undefined binding ({0}) in the WSDL document.\nHint: make sure <port binding=\"..\"> is fully qualified.) emitFailtUndefinedBinding02=\u751f\u6210\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002WSDL\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8 {1} \u5185\u306b\u672a\u5b9a\u7fa9\u306ebinding({0})\u304c\u3042\u308a\u307e\u3059\u3002\n\u30d2\u30f3\u30c8: <port binding=\"..\"> \u304c\u5341\u5206\u306b\u9069\u3057\u305f\u3082\u306e\u304b\u3069\u3046\u304b\u78ba\u8a8d\u3057\u3066\u4e0b\u3055\u3044 / [en]-(Emitter failure. There is an undefined binding ({0}) in the WSDL document {1}.\nHint: make sure <port binding=\"..\"> is fully qualified.) emitFailtUndefinedMessage01=\u751f\u6210\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002WSDL\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u5185\u306b\u672a\u5b9a\u7fa9\u306emessage({0})\u304c\u3042\u308a\u307e\u3059\u3002 \n\u30d2\u30f3\u30c8: <input message=\"..\"> \u3068 <output message=".."> \u304c\u5341\u5206\u306b\u9069\u3057\u305f\u3082\u306e\u304b\u78ba\u8a8d\u3057\u3066\u4e0b\u3055\u3044/ [en]-(Emitter failure. There is an undefined message ({0}) in the WSDL document.\nHint: make sure <input message=\"..\"> and <output message=".."> are fully qualified.) emitFailtUndefinedPort01=\u751f\u6210\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002WSDL\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u5185\u306b\u672a\u5b9a\u7fa9\u306eportType\u304c\u3042\u308a\u307e\u3059\u3002\n\u30d2\u30f3\u30c8: <binding type=\"..\"> \u304c\u5341\u5206\u306b\u9069\u3057\u305f\u3082\u306e\u304b\u3069\u3046\u304b\u78ba\u8a8d\u3057\u3066\u4e0b\u3055\u3044 / [en]-(Emitter failure. There is an undefined portType ({0}) in the WSDL document.\nHint: make sure <binding type=\"..\"> is fully qualified.) emitFailtUndefinedPort02=\u751f\u6210\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002WSDL\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8 {1} \u5185\u306b\u672a\u5b9a\u7fa9\u306eportType({0})\u304c\u3042\u308a\u307e\u3059\u3002 \n\u30d2\u30f3\u30c8: <binding type="\..\"> \u304c\u5341\u5206\u306b\u9069\u3057\u305f\u3082\u306e\u304b\u78ba\u8a8d\u3057\u3066\u4e0b\u3055\u3044/ [en]-(Emitter failure. There is an undefined portType ({0}) in the WSDL document {1}.\nHint: make sure <binding type=\"..\"> is fully qualified.) emitWarnInvalidURL01=\u751f\u6210\u6642\u306e\u8b66\u544a\uff1a service{1}, port{0}\u5185\u306e\u7121\u52b9\u306a\u30a8\u30f3\u30c9\u30dd\u30a4\u30f3\u30c8\u30a2\u30c9\u30ec\u30b9: {2} / [en]-(Emitter Warning. Invalid endpoint address in port {0} in service {1}: {2}) emitter00=\u751f\u6210 / [en]-(emitter) empty00=\u7a7a / [en]-(empty) # NOTE: in enableTransport00, do not translate "SOAPService" enableTransport00=\u30c8\u30e9\u30f3\u30b9\u30dd\u30fc\u30c8{1}\u53ef\u80fd\u306aSOAPService({0}) / [en]-(SOAPService({0}) enabling transport {1}) end00=\u7d42\u4e86/ [en]-(end) endElem00=\u8981\u7d20 {0} \u306e\u7d42\u4e86 / [en]-(End element {0}) enter00=\u5165\u308a\u307e\u3059: {0} / [en]-(Enter: {0}) #NOTE: in error00, do not translate "AXIS" error00=AXIS\u30a8\u30e9\u30fc / [en]-(AXIS error) error01=\u30a8\u30e9\u30fc: {0} / [en]-(Error: {0}) errorInvoking00=\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3\u547c\u51fa\u3057\u3067\u306e\u30a8\u30e9\u30fc: {0} / [en]-(Error invoking operation: {0}) errorProcess00=\u51e6\u7406\u4e2d\u306e\u30a8\u30e9\u30fc ''{0}'' / [en]-(Error processing ''{0}'') exit00=\u7d42\u4e86: {0} / [en]-(Exit: {0}) fault00=\u30d5\u30a9\u30fc\u30eb\u30c8\u304c\u767a\u751f\u3057\u307e\u3057\u305f / [en]-(Fault occurred) fileExistError00=\u30a8\u30e9\u30fc: {0}\u304c\u65e2\u306b\u5b58\u5728\u3057\u307e\u3059\u3002\u304a\u305d\u3089\u304f\u3053\u306e\u30d5\u30a1\u30a4\u30eb\u306f\u751f\u6210\u3067\u304d\u307e\u305b\u3093 / [en]-(Error determining if {0} already exists. Will not generate this file.) filename00=\u30d5\u30a1\u30a4\u30eb\u540d: {0} / [en]-(File name is: {0}) filename01={0}: \u30ea\u30af\u30a8\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u540d = ''{1}'' / [en]-({0}: request file name = ''{1}'') fromFile00=From\u30d5\u30a1\u30a4\u30eb: ''{0}'':''{1}'' / [en]-(From file: ''{0}'':''{1}'') genFault00=\u30d5\u30a9\u30fc\u30eb\u30c8\u30af\u30e9\u30b9\u3092\u751f\u6210\u3057\u3066\u3044\u307e\u3059 / [en]-(Generating fault class) getProxy00={0}\u306e\u30d7\u30ed\u30ad\u30b7\u30af\u30e9\u30b9\u306e\u53d6\u5f97\u306b\u4f7f\u7528\u3057\u307e\u3059 / [en]-(Use to get a proxy class for {0}) got00={0}\u3092\u53d6\u5f97\u3057\u307e\u3057\u305f / [en]-(Got {0}) gotForID00=ID {1} (\u30af\u30e9\u30b9 = {2})\u306b\u5bfe\u3059\u308b{0}\u3092\u53d6\u5f97\u3057\u307e\u3057\u305f/ [en]-(Got {0} for ID {1} (class = {2})) gotPrincipal00=principal: {0} \u3092\u53d6\u5f97\u3057\u307e\u3057\u305f / [en]-(Got principal: {0}) gotType00={0}\u306f\u578b{1}\u3092\u53d6\u5f97\u3057\u307e\u3057\u305f / [en]-({0} got type {1}) gotValue00={0}\u306f\u5024{1}\u3092\u53d6\u5f97\u3057\u307e\u3057\u305f / [en]-({0} got value {1}) headers00=\u30d8\u30c3\u30c0 / [en]-(headers) headerPresent=\u30d8\u30c3\u30c0\u304c\u65e2\u306b\u5b58\u5728\u3057\u307e\u3059 / [en]-(Header already present) # NOTE: in httpPassword00, do not translate HTTP httpPassword00=HTTP\u30d1\u30b9\u30ef\u30fc\u30c9: {0} / [en]-(HTTP password: {0}) # NOTE: in httpPassword00, do not translate HTTP httpUser00=HTTP\u30e6\u30fc\u30b6ID: {0} / [en]-(HTTP user id: {0}) inMsg00=In\u30e1\u30c3\u30bb\u30fc\u30b8: {0} / [en]-(In message: {0}) internalError00=\u5185\u90e8\u30a8\u30e9\u30fc / [en]-(Internal error) internalError01=\u5185\u90e8\u30b5\u30fc\u30d0\u30a8\u30e9\u30fc / [en]-(Internal server error) invalidConfigFilePath=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea''{0}''\u306e\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306f\u5b58\u5728\u3057\u306a\u3044\u304b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u304c\u5b58\u5728\u3057\u306a\u3044\u3001\u53c8\u306f\u8aad\u8fbc\u307f\u4e0d\u53ef\u3067\u3059 / [en]-(Configuration file directory ''{0}'' does not exist or is not a directory or is not readable.) invalidWSDD00=\u7121\u52b9\u306aWSDD\u8981\u7d20''{0}''\u3067\u3059(''{1}''\u3092\u6c42\u3081\u3066\u3044\u307e\u3059) / [en]-(Invalid WSDD element ''{0}'' (wanted ''{1}'')) invalidXmlCharacter00=''{1}\u5185\u306e\u6587\u5b57(char) ''0x{0}'' \u306fXML\u306e\u6587\u5b57\u3068\u3057\u3066\u6709\u52b9\u3067\u306f\u3042\u308a\u307e\u305b\u3093 / [en]-(The char ''0x{0}'' in ''{1}'' is not a valid XML character.) # NOTE: in invokeGet00, do no translate "GET" invokeGet00=GET\u547c\u51fa\u3057 / [en]-(invoking via GET) isNull00={0}\u306fNull\u3067\u3059\u304b\uff1f {1} / [en]-(is {0} null? {1}) makeEnvFail00=\u30a8\u30f3\u30d9\u30ed\u30fc\u30d7\u3092\u751f\u6210\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f / [en]-(Could not make envelope) match00=\u4e00\u81f4: {0}, \u30db\u30b9\u30c8: {1}, \u30d1\u30bf\u30fc\u30f3: {2} / [en]-({0} match: host: {1}, pattern: {2}) mustBeIface00=\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9\u306e\u307f\u304c\u30d7\u30ed\u30ad\u30b7\u30af\u30e9\u30b9\u306e\u5f15\u6570\u306b\u7528\u3044\u3089\u308c\u307e\u3059 / [en]-(Only interfaces may be used for the proxy class argument) mustExtendRemote00=java.rmi.Remote\u30af\u30e9\u30b9\u3092\u7d99\u627f\u3059\u308b\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9\u306e\u307f\u304c\u30d7\u30ed\u30ad\u30b7\u30af\u30e9\u30b9\u306e\u5f15\u6570\u306b\u7528\u3044\u3089\u308c\u307e\u3059 / [en]-(Only interfaces which extend java.rmi.Remote may be used for the proxy class argument) needPwd00=\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\uff01 / [en]-(Must specify a password!) needService00=\u8a8d\u8a3c\u3059\u308b\u5bfe\u8c61\u3068\u306a\u308b\u30b5\u30fc\u30d3\u30b9\u304c\u3042\u308a\u307e\u305b\u3093\uff01 / [en]-(No target service to authorize for!) needUser00=\u8a8d\u8a3c\u3059\u308b\u30e6\u30fc\u30b6\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\uff01 / [en]-(Need to specify a user for authorization!) # NOTE: in newElem00, do not translate "MessageElement" newElem00=\u65b0\u3057\u3044MessageElement ({0}) \u3092{1}\u3068\u540d\u4ed8\u3051\u307e\u3057\u305f / [en]-(New MessageElement ({0}) named {1}) no00={0} \u304c\u3042\u308a\u307e\u305b\u3093 / [en]-(no {0}) noAdminAccess00=\u7ba1\u7406\u8005\u306e\u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9\u306f\u8a8d\u3081\u3089\u308c\u3066\u3044\u307e\u305b\u3093\uff01 / [en]-(Remote administrator access is not allowed!) noAdminAccess01=\u30db\u30b9\u30c8{0}\u304b\u3089\u306e\u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9\u306f\u62d2\u5426\u3055\u308c\u307e\u3057\u305f / [en]-(Rejected remote access from host {0}) # NOTE: in noBody00, do not translate "Body" noBody00=Body\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f / [en]-(Body not found.) noComponent00=\u578b{0}\u306e\u914d\u5217\u306b\u5bfe\u3057\u3066\u5b9a\u7fa9\u6e08\u306e\u30c7\u30b7\u30ea\u30a2\u30e9\u30a4\u30b6\u304c\u3042\u308a\u307e\u305b\u3093 / [en]-(No deserializer defined for array type {0}) # NOTE: in noContext00, do not translate "MessageElement.getValueAsType()" noContext00=MessageElement.getValueAsType()\u30e1\u30bd\u30c3\u30c9\u3067\u4f7f\u7528\u3059\u308b\u30c7\u30b7\u30ea\u30a2\u30e9\u30a4\u30ba\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u304c\u3042\u308a\u307e\u305b\u3093\uff01 / [en]-(No deserialization context to use in MessageElement.getValueAsType()!) # NOTE: in noCustomElems00, do not translate "<body>" noCustomElems00=<body>\u30bf\u30b0\u306e\u5f8c\u3067\u306a\u3051\u308c\u3070\u3001\u30c8\u30c3\u30d7\u968e\u5c64\u306b\u30e6\u30fc\u30b6\u5b9a\u7fa9\u8981\u7d20\u306f\u8a31\u3055\u308c\u307e\u305b\u3093 / [en]-(No custom elements allowed at top level until after the <body> tag) noData00=\u30c7\u30fc\u30bf\u304c\u3042\u308a\u307e\u305b\u3093 / [en]-(No data) noDeploy00=\u30c7\u30d7\u30ed\u30a4\u30ea\u30b9\u30c8\u304c\u751f\u6210\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\uff01 / [en]-(Could not generate deployment list!) noDeser00={0}\u306e\u30c7\u30b7\u30ea\u30a2\u30e9\u30a4\u30b6\u304c\u3042\u308a\u307e\u305b\u3093 / [en]-(No deserializer for {0}) noDeser01=\u30d1\u30e9\u30e1\u30fc\u30bf''{0}''\u306e\u30c7\u30b7\u30ea\u30a2\u30e9\u30a4\u30ba\u4e2d: \u578b{1}\u306e\u30c7\u30b7\u30ea\u30a2\u30e9\u30a4\u30b6\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f / [en]-(Deserializing parameter ''{0}'': could not find deserializer for type {1}) noDoc00=DOM\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u304c\u53d6\u5f97\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f: XML\u306f"{0}"\u3067\u3057\u305f / [en]-(Could not get DOM document: XML was "{0}") # NOTE: in noEngine00, do not translate "AXIS" noEngine00=AXIS\u30a8\u30f3\u30b8\u30f3\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\uff01 / [en]-(Could not find AXIS engine!) # NOTE: in engineConfigWrongClass??, do not translate "EngineConfiguration" engineConfigWrongClass00=\u74b0\u5883\u8a2d\u5b9a\u3067\u306f''EngineConfiguration''\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u671f\u5f85\u3057\u3066\u3044\u307e\u3057\u305f / [en]-(Expected instance of ''EngineConfiguration'' in environment) engineConfigWrongClass01=''EngineConfiguration''\u578b\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9''{0}''\u3092\u671f\u5f85\u3057\u3066\u3044\u307e\u3057\u305f / [en]-(Expected instance of ''{0}'' to be of type ''EngineConfiguration'') # NOTE: in engineConfigNoClass00, do not translate "EngineConfiguration" engineConfigNoClass00=''EngineConfiguration''\u30af\u30e9\u30b9\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f: ''{0}'' / [en]-(''EngineConfiguration'' class not found: ''{0}'') engineConfigNoInstance00=\u30af\u30e9\u30b9''{0}''\u306f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u5316\u3067\u304d\u307e\u305b\u3093 / [en]-(''{0}'' class cannot be instantiated) engineConfigIllegalAccess00=\u30af\u30e9\u30b9''{0}'' \u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u5316\u4e2d\u3067\u306e\u4e0d\u6b63\u306a\u30a2\u30af\u30bb\u30b9\u3067\u3059 / [en]-(Illegal access while instantiating class ''{0}'') jndiNotFound00=JNDI InitialContext()\u30e1\u30bd\u30c3\u30c9\u304cNull\u3092\u8fd4\u3057\u307e\u3057\u305f\u3001\u30c7\u30d5\u30a9\u30eb\u30c8\u306f\u975eJNDI\u3067\u632f\u821e\u3044\u307e\u3059(DefaultAxisServerFactory) / [en]-(JNDI InitialContext() returned null, default to non-JNDI behavior (DefaultAxisServerFactory)) # NOTE: in servletContextWrongClass00, do not translate "ServletContext" servletContextWrongClass00=\u74b0\u5883\u8a2d\u5b9a\u3067\u306f''ServletContext''\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u671f\u5f85\u3057\u3066\u3044\u307e\u3057\u305f / [en]-(Expected instance of ''ServletContext'' in environment) noEngineWSDD=\u30a8\u30f3\u30b8\u30f3\u306e\u8a2d\u5b9a\u304c\u898b\u3064\u304b\u3089\u306a\u3044\u304b\u3001WSDD\u3067\u306f\u3042\u308a\u307e\u305b\u3093! / [en]-(Engine configuration is not present or not WSDD!) noHandler00=\u30cf\u30f3\u30c9\u30e9\u306e\u5834\u6240\u3092\u793a\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093: {0} / [en]-(Cannot locate handler: {0}) noHandlerClass00=HandlerProvider\u306e''handlerClass''\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u660e\u793a\u7684\u306b\u6307\u5b9a\u3055\u308c\u307e\u305b\u3093\u3067\u3057\u305f\uff01 / [en]-(No HandlerProvider ''handlerClass'' option was specified!) noHeader00={0}\u30d8\u30c3\u30c0\u304c\u3042\u308a\u307e\u305b\u3093! / [en]-(no {0} header!) # NOTE: in noInstructions00, do not translate "SOAP" noInstructions00=\u6307\u5b9a\u306e\u51e6\u7406\u306fSOAP\u30e1\u30c3\u30bb\u30fc\u30b8\u306e\u7bc4\u56f2\u5185\u3067\u8a31\u53ef\u3055\u308c\u3066\u3044\u307e\u305b\u3093 / [en]-(Processing instructions are not allowed within SOAP messages) noMap00={0}: {1}\u306f\u30de\u30c3\u30d7\u3067\u306f\u3042\u308a\u307e\u305b\u3093 / [en]-({0}: {1} is not a map) noMatchingProvider00=QName ''{0}''\u306b\u4e00\u81f4\u3059\u308b\u578b\u306e\u30d7\u30ed\u30d0\u30a4\u30c0\u304c\u3042\u308a\u307e\u305b\u3093 / [en]-(No provider type matches QName ''{0}'') noMethod01=\u30e1\u30bd\u30c3\u30c9\u304c\u3042\u308a\u307e\u305b\u3093\uff01 / [en]-(No method!) noOperation00=\u64cd\u4f5c\u540d\u304c\u660e\u793a\u3055\u308c\u3066\u3044\u307e\u305b\u3093\uff01 / [en]-(No operation name specified!) noOperation01=\u64cd\u4f5c\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093: {0} - \u672a\u5b9a\u7fa9 / [en]-(Cannot find operation: {0} - none defined) noOperation02=\u64cd\u4f5c\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093: {0} / [en]-(Cannot find operation: {0}) noOption00=''{0}''\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u30b5\u30fc\u30d3\u30b9''{1}''\u306b\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093 / [en]-(No ''{0}'' option was configured for the service ''{1}'') noPart00={0}\u304c\u5165\u529b\u90e8\u6216\u3044\u306f\u51fa\u529b\u90e8\u3068\u3057\u3066\u898b\u3064\u304b\u308a\u307e\u305b\u3093 / [en]-({0} not found as an input part OR an output part!) # NOTE: in noPort00, do not translate "port" noPort00=port: {0} \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093 / [en]-(Cannot find port: {0}) # NOTE: in noPortType00, do not translate "portType" noPortType00=portType: {0} \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093 / [en]-(Cannot find portType: {0}) noPrefix00={0}\u306f\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9: {1} \u3092\u898b\u3064\u3051\u307e\u305b\u3093\u3067\u3057\u305f / [en]-({0} did not find prefix: {1}) noPrincipal00=principal\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u3042\u308a\u307e\u305b\u3093\uff01 / [en]-(No principal!) noRecorder00=\u8981\u7d20\u5185\u90e8\u306e\u30a4\u30d9\u30f3\u30c8\u30ec\u30b3\u30fc\u30c0\u304c\u3042\u308a\u307e\u305b\u3093 / [en]-(No event recorder inside element) # NOTE: in noRequest00, do not translate "MessageContext" noRequest00=MessageContext\u5185\u306b\u30ea\u30af\u30a8\u30b9\u30c8\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u3042\u308a\u307e\u305b\u3093 / [en]-(No request message in MessageContext?) noResponse01=\u30ec\u30b9\u30dd\u30f3\u30b9\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u3042\u308a\u307e\u305b\u3093\uff01 / [en]-(No response message!) noRoles00=\u5bfe\u8c61\u306e\u30b5\u30fc\u30d3\u30b9\u306b\u660e\u793a\u7684\u306b\u6307\u5b9a\u3055\u308c\u305frole\u304c\u3042\u308a\u307e\u305b\u3093, \u8a31\u53ef\u3057\u307e\u3059 / [en]-(No roles specified for target service, allowing.) noRoles01=\u5bfe\u8c61\u306e\u30b5\u30fc\u30d3\u30b9\u306b\u660e\u793a\u7684\u306b\u6307\u5b9a\u3055\u308c\u305frole\u304c\u3042\u308a\u307e\u305b\u3093, \u7981\u6b62\u3057\u307e\u3059 / [en]-(No roles specified for target service, disallowing.) noSerializer00=\u30ec\u30b8\u30b9\u30c8\u30ea{1}\u5185\u306b\u30af\u30e9\u30b9{0}\u306e\u30b7\u30ea\u30a2\u30e9\u30a4\u30b6\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f / [en]-(No serializer found for class {0} in registry {1}) noService00=\u30b5\u30fc\u30d3\u30b9: {0}\u3092\u898b\u3064\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093 / [en]-(Cannot find service: {0}) noService01=\u5b9a\u7fa9\u6e08\u306e\u30b5\u30fc\u30d3\u30b9\u304c\u3042\u308a\u307e\u305b\u3093 / [en]-(No service has been defined) noService04=Call\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u5bfe\u3057\u3066\u5b9a\u7fa9\u6e08\u306e\u30b5\u30fc\u30d3\u30b9\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u3042\u308a\u307e\u305b\u3093 / [en]-(No service object defined for this Call object.) #NOTE: in noService04, do not translate "AXIS", "targetService" noService05=AXIS\u30a8\u30f3\u30b8\u30f3\u304c\u547c\u51fa\u305d\u3046\u3068\u3059\u308b\u5bfe\u8c61\u306e\u30b5\u30fc\u30d3\u30b9\u3092\u898b\u3064\u3051\u3089\u308c\u307e\u305b\u3093\u3067\u3057\u305f\uff01targetService\u306f{0}\u3067\u3059 / [en]-(The AXIS engine could not find a target service to invoke! targetService is {0}) noService06=\u3053\u306eURL\u3067\u5229\u7528\u3067\u304d\u308b\u30b5\u30fc\u30d3\u30b9\u306f\u3042\u308a\u307e\u305b\u3093 / [en]-(No service is available at this URL) # NOTE: in noSecurity00, do not translate "MessageContext" noSecurity00=MessageContext\u5185\u306bsecurityProvider\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u3042\u308a\u307e\u305b\u3093 / [en]-(No security provider in MessageContext!) # NOTE: in noSOAPAction00, do not translate "HTTP", "SOAPAction" noSOAPAction00=\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u5185\u306bHTTP SOAPAction\u30d7\u30ed\u30d1\u30c6\u30a3\u304c\u3042\u308a\u307e\u305b\u3093 / [en]-(No HTTP SOAPAction property in context) noTransport00=\u30c8\u30e9\u30f3\u30b9\u30dd\u30fc\u30c8\u540d\u79f0''{0}''\u306e\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\uff01 / [en]-(No client transport named ''{0}'' found!) noTransport01=\u30d7\u30ed\u30c8\u30b3\u30eb: {0}\u3092\u30de\u30c3\u30d4\u30f3\u30b0\u3059\u308b\u30c8\u30e9\u30f3\u30b9\u30dd\u30fc\u30c8\u304c\u3042\u308a\u307e\u305b\u3093 / [en]-(No transport mapping for protocol: {0}) noType00={0}\u306b\u5bfe\u3057\u3066\u30de\u30c3\u30d4\u30f3\u30b0\u3055\u308c\u305f\u30b9\u30ad\u30fc\u30de\u578b\u304c\u3042\u308a\u307e\u305b\u3093 / [en]-(No mapped schema type for {0}) # NOTE: in noType01, do not translate "vector" noType01=vector\u306etype\u5c5e\u6027\u304c\u3042\u308a\u307e\u305b\u3093\uff01 / [en]-(No type attribute for vector!) noTypeAttr00=\u30cf\u30f3\u30c9\u30e9\u306e\u30c7\u30d7\u30ed\u30a4\u306b\u306ftype\u5c5e\u6027\u3092\u542b\u307e\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\uff01 / [en]-(Must include type attribute for Handler deployment!) noTypeQName00=\u30de\u30c3\u30d4\u30f3\u30b0\u306b\u5bfe\u3059\u308btype\u5c5e\u6027\u306eQName(typeQName)\u304c\u3042\u308a\u307e\u305b\u3093\uff01 / [en]-(No type QName for mapping!) notAuth00=\u30e6\u30fc\u30b6''{0}''\u306f''{1}''\u3078\u306e\u8a8d\u8a3c\u306b\u5931\u6557\u3057\u307e\u3057\u305f / [en]-(User ''{0}'' not authorized to ''{1}'') notImplemented00={0}\u306f\u672a\u5b9f\u88c5\u3067\u3059\uff01 / [en]-({0} is not implemented!) noTypeOnGlobalConfig00=GlobalConfiguration\u306f''type''\u5c5e\u6027\u3092\u8a31\u53ef\u3057\u3066\u3044\u307e\u305b\u3093\uff01 / [en]-(GlobalConfiguration does not allow the ''type'' attribute!) # NOTE: in noUnderstand00, do not translate "MustUnderstand" noUnderstand00="MustUnderstand"\u30d8\u30c3\u30c0:{0}\u3092\u89e3\u91c8\u3057\u307e\u305b\u3093\u3067\u3057\u305f / [en]-(Did not understand "MustUnderstand" header(s):{0}) versionMissmatch00=\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u4e0d\u4e00\u81f4 / [en]-(Version Mismatch) # NOTE: in noValue00, do not translate "value", "RPCParam" noValue00={0}\u3092\u4f7f\u7528\u3059\u308bRPCParam\u306b\u30d5\u30a3\u30fc\u30eb\u30c9value\u304c\u3042\u308a\u307e\u305b\u3093 / [en]-(No value field for RPCParam to use?!? {0}) # NOTE: in noWSDL00, do not translate "WSDL" noWSDL00=WSDL\u3092\u751f\u6210\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\uff01 / [en]-(Could not generate WSDL!) # NOTE: in noWSDL01, do not translate "SOAP" noWSDL01=\u3053\u306e\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u306eSOAP\u30b5\u30fc\u30d3\u30b9\u304c\u3042\u308a\u307e\u305b\u3093 / [en]-(There is no SOAP service at this location) # NOTE: in noWSDL02, do not translate "WSDL" noWSDL02=\u3053\u306e\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3\u3067\u306e\u30b5\u30fc\u30d3\u30b9\u306f\u5b58\u5728\u3057\u307e\u3059\u304c\u3001Axis\u306f\u305d\u306eWSDL\u3092\u751f\u6210\u3057\u307e\u305b\u3093\u3067\u3057\u305f. \u304a\u305d\u3089\u304f\u8a2d\u5b9a\u304c\u9593\u9055\u3063\u3066\u3044\u307e\u3059 / [en]-(There is a service at this location, but Axis did not generate the WSDL for it. Perhaps it is is misconfigured.) null00={0}\u306fNull\u3067\u3059 / [en]-({0} is null) # NOTE: in nullCall00, do not translate "AdminClient" or "''call''" nullCall00=AdminClient\u306f\u6b63\u3057\u304f\u521d\u671f\u5316\u3055\u308c\u307e\u305b\u3093\u3067\u3057\u305f: ''call''\u304cNull\u3067\u3059\uff01 / [en]-(AdminClient did not initialize correctly: ''call'' is null!) nullHandler00={0}: \u30cf\u30f3\u30c9\u30e9\u304cNull\u3067\u3059 / [en]-({0}: Null handler;) nullNamespaceURI=\u660e\u793a\u3055\u308c\u305f\u540d\u524d\u7a7a\u9593URI\u304cNull\u3067\u3059 / [en]-(Null namespace URI specified.) nullNonNillableElement=Null\u4e0d\u8a31\u53ef\u8981\u7d20''{0}''\u304cNull\u3067\u3059 / [en]-(Non nillable element ''{0}'' is null.) nullParent00=\u89aa\u304cNull\u3067\u3059\uff01 / [en]-(null parent!) nullProvider00=WSDDProvider\u3078\u6e21\u3059provider\u306e\u578b\u304cNull\u3067\u3059\uff01 / [en]-(Null provider type passed to WSDDProvider!) nullResponse00=\u30ec\u30b9\u30dd\u30f3\u30b9\u30e1\u30c3\u30bb\u30fc\u30b8\u304cNull\u3067\u3059\uff01 / [en]-(Null response message!) oddDigits00=16\u9032\u6570\u8868\u73fe\u306e\u6587\u5b57\u5217\u3067\u30c0\u30a4\u30b8\u30a7\u30b9\u30c8\u6570\u304c\u5947\u5999\u306a\u5024\u3067\u3059 / [en]-(Odd number of digits in hex string) # NOTE: in the only1Body00, do not translate "Body" only1Body00=\u8a31\u3055\u308c\u308bBody\u8981\u7d20\u306f\u552f1\u3064\u3060\u3051\u3067\u3059\uff01 / [en]-(Only one Body element allowed!) # NOTE: in the only1Header00, do not translate "Header" only1Header00=\u8a31\u3055\u308c\u308bHeader\u8981\u7d20\u306f\u552f1\u3064\u3060\u3051\u3067\u3059\uff01 / [en]-(Only one Header element allowed!) optionAll00=\u53c2\u7167\u3055\u308c\u306a\u3044\u8981\u7d20\u3067\u3042\u3063\u3066\u3082\u5168\u3066\u306e\u8981\u7d20\u306b\u5bfe\u3059\u308b\u30b3\u30fc\u30c9\u3092\u751f\u6210\u3057\u307e\u3059 / [en]-(generate code for all elements, even unreferenced ones) optionHelp00=\u3053\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u7d42\u4e86\u3057\u307e\u3059 / [en]-(print this message and exit) # NOTE: in optionImport00, do not translate "WSDL" optionImport00=\u4e2d\u9593\u306eWSDL\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u5bfe\u3059\u308b\u30b3\u30fc\u30c9\u306e\u307f\u3092\u751f\u6210\u3057\u307e\u3059 / [en]-(only generate code for the immediate WSDL document) # NOTE: in optionFileNStoPkg00, do not translate "NStoPkg.properties" optionFileNStoPkg00=NStoPkg\u30de\u30c3\u30d4\u30f3\u30b0\u306e\u30d5\u30a1\u30a4\u30eb\u3067\u3059(\u30c7\u30d5\u30a9\u30eb\u30c8\u306fNStoPkg.properties) / [en]-(file of NStoPkg mappings (default NStoPkg.properties)) # NOTE: in optionNStoPkg00, do not translate "namespace", "package" optionNStoPkg00=package\u3078namespace\u3092\u30de\u30c3\u30d4\u30f3\u30b0 / [en]-(mapping of namespace to package) optionOutput00=\u751f\u6210\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u306b\u5bfe\u3059\u308b\u51fa\u529b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea / [en]-(output directory for emitted files) optionPackage00=\u3053\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u540d\u3092\u4f7f\u7528\u3059\u308b\u4ee3\u308f\u308a\u306b\u3001\u30d1\u30c3\u30b1\u30fc\u30b8\u3078\u5168\u540d\u524d\u7a7a\u9593\u306e\u30de\u30c3\u30d4\u30f3\u30b0\u3092\u30aa\u30fc\u30d0\u30fc\u30e9\u30a4\u30c9 / [en]-(override all namespace to package mappings, use this package name instead) optionTimeout00=\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8\u79d2(\u30c7\u30d5\u30a9\u30eb\u30c845\u79d2, \u5229\u7528\u4e0d\u53ef\u3068\u3059\u308b\u306b\u306f-1\u3092\u6307\u5b9a) / [en]-(timeout in seconds (default is 45, specify -1 to disable)) options00=\u30aa\u30d7\u30b7\u30e7\u30f3: / [en]-(Options:) # NOTE: in optionScope00, do not translate "Application", "Request", "Session" optionScope00=deploy.wsdd\u3078\u306e\u30b9\u30b3\u30fc\u30d7\u3092\u8ffd\u52a0\u3057\u307e\u3059: "Application", "Request", "Session" / [en]-(add scope to deploy.wsdd: "Application", "Request", "Session") optionSkel00=Web\u30b5\u30fc\u30d3\u30b9\u3078\u306e\u30b5\u30fc\u30d0\u30b5\u30a4\u30c9\u30d0\u30a4\u30f3\u30c7\u30a3\u30f3\u30b0\u3092\u751f\u6210\u3057\u307e\u3059 / [en]-(emit server-side bindings for web service) # NOTE: in optionTest00, do not translate "junit" optionTest00=Web\u30b5\u30fc\u30d3\u30b9\u3078\u306eJUnit\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9\u30af\u30e9\u30b9\u3092\u751f\u6210\u3057\u307e\u3059 / [en]-(emit junit testcase class for web service) optionBuildFile00=Web\u30b5\u30fc\u30d3\u30b9\u306b\u5bfe\u3059\u308bAnt\u30d3\u30eb\u30c9\u30d5\u30a1\u30a4\u30eb\u3092\u751f\u6210\u3057\u307e\u3059 / [en]-(emit Ant Buildfile for web service) optionVerbose00=\u60c5\u5831\u306b\u95a2\u3059\u308b\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059 / [en]-(print informational messages) optionAllowInvalidURL=\u305f\u3068\u3048WSDL\u30a8\u30f3\u30c9\u30dd\u30a4\u30f3\u30c8URL\u304c\u7121\u52b9\u306aURL\u306e\u5834\u5408\u3067\u3042\u3063\u3066\u3082\u30d5\u30a1\u30a4\u30eb\u3092\u751f\u6210\u3057\u307e\u3059 / [en]-(emit file even if WSDL endpoint URL is not a valid URL) outMsg00=\u51fa\u529b\u30e1\u30c3\u30bb\u30fc\u30b8: {0} / [en]-(Out message: {0}) params00=\u30d1\u30e9\u30e1\u30fc\u30bf: {0} / [en]-(Parameters are: {0}) # NOTE: in parmMismatch00, do not translate "IN/INOUT", "addParameter()" parmMismatch00=({0})\u5185\u3067\u6e21\u3055\u308c\u308b\u30d1\u30e9\u30e1\u30fc\u30bf\u6570\u304caddParameter()\u30e1\u30bd\u30c3\u30c9\u304b\u3089\u306eIN/INOUT\u30d1\u30e9\u30e1\u30fc\u30bf({1})\u306e\u6570\u3068\u4e00\u81f4\u3057\u307e\u305b\u3093 / [en]-(Number of parameters passed in ({0}) doesn''t match the number of IN/INOUT parameters ({1}) from the addParameter() calls) # NOTE: in parsing00, do not translate "XML" parsing00=XML\u30d5\u30a1\u30a4\u30eb\u306e\u89e3\u6790: {0} / [en]-(Parsing XML file: {0}) password00=\u30d1\u30b9\u30ef\u30fc\u30c9: {0} / [en]-(Password: {0}) perhaps00=\u304a\u305d\u3089\u304f\u3053\u3053\u306b\u30b5\u30fc\u30d3\u30b9\u3092\u547c\u51fa\u3059\u305f\u3081\u306e\u30d5\u30a9\u30fc\u30e0\u304c\u5b58\u5728\u3057\u307e\u3059... / [en]-(Perhaps there will be a form for invoking the service here...) popHandler00=\u30cf\u30f3\u30c9\u30e9{0}\u3092\u30dd\u30c3\u30d7\u3057\u3066\u3044\u307e\u3059 / [en]-(Popping handler {0}) process00=''{0}''\u306e\u51e6\u7406\u4e2d / [en]-(Processing ''{0}'') processFile00=\u30d5\u30a1\u30a4\u30eb{0}\u306e\u51e6\u7406\u4e2d / [en]-(Processing file {0}) # NOTE: in pushHandler00, we are pushing a handler onto a stack pushHandler00=\u30cf\u30f3\u30c9\u30e9{0}\u306e\u30d1\u30d6\u30ea\u30c3\u30b7\u30e5\u4e2d / [en]-(Pushing handler {0}) quit00={0}\u3092\u4e2d\u6b62\u3057\u3066\u3044\u307e\u3059 / [en]-({0} quitting.) quitRequest00=\u7ba1\u7406\u30b5\u30fc\u30d3\u30b9\u3078\u4e2d\u6b62\u3046\u8981\u6c42\u304c\u3042\u308a\u307e\u3057\u305f, \u4e2d\u6b62\u3057\u3066\u3044\u307e\u3059 / [en]-(Administration service requested to quit, quitting.) # NOTE: in reachedServer00, do not translate "SimpleAxisServer" reachedServer00=SimpleAxisServer\u306b\u5230\u9054\u3057\u3066\u3044\u307e\u3059 / [en]-(You have reached the SimpleAxisServer.) unableToStartServer00=\u30dd\u30fc\u30c8{0}\u306b\u30d0\u30a4\u30f3\u30c9\u3067\u304d\u307e\u305b\u3093\u3002SimpleAxisServer\u3092\u958b\u59cb\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f / [en]-(Unable to bind to port {0}. Did not start SimpleAxisServer.) # NOTE: in reachedServlet00, do not translate "AXIS HTTP Servlet", "URL", "SOAP" reachedServlet00=\u3053\u3093\u306b\u3061\u306f\u3002AXIS HTTP Servlet\u306b\u5230\u9054\u3057\u3066\u3044\u307e\u3059\u3002\u901a\u5e38\u306f\u30d6\u30e9\u30a6\u30b6\u3088\u308a\u3082\u3080\u3057\u308dSOAP\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u3067\u3053\u306eURL\u3092\u6307\u5b9a\u3057\u307e\u3059\u3002 / [en]-(Hi, you have reached the AXIS HTTP Servlet. Normally you would be hitting this URL with a SOAP client rather than a browser.) readOnlyConfigFile=\u30a8\u30f3\u30b8\u30f3\u306e\u8a2d\u5b9a\u306f\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u304c\u8aad\u53d6\u308a\u5c02\u7528\u5c5e\u6027\u306a\u306e\u3067\u4fdd\u5b58\u3067\u304d\u306a\u3044\u3067\u3057\u3087\u3046 / [en]-(Configuration file read-only so engine configuration changes will not be saved.) register00=\u30ec\u30b8\u30b9\u30bf ''{0}'' - ''{1}'' / [en]-(register ''{0}'' - ''{1}'') removeBody00=\u30e1\u30c3\u30bb\u30fc\u30b8\u304b\u3089\u30dc\u30c7\u30a3\u8981\u7d20\u3092\u524a\u9664\u3057\u3066\u3044\u307e\u3059... / [en]-(Removing body element from message...) removeHeader00=\u30e1\u30c3\u30bb\u30fc\u30b8\u304b\u3089\u30d8\u30c3\u30c0\u3092\u524a\u9664\u3057\u3066\u3044\u307e\u3059... / [en]-(Removing header from message...) removeTrailer00=\u30e1\u30c3\u30bb\u30fc\u30b8\u304b\u3089\u30c8\u30ec\u30fc\u30e9\u30fc\u3092\u524a\u9664\u3057\u3066\u3044\u307e\u3059... / [en]-(Removing trailer from message...) return01=\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9: {0}\n{1} / [en]-(return code: {0}\n{1}) return02={0}\u306f\u8fd4\u5374\u3057\u307e\u3057\u305f: {1} / [en]-({0} returned: {1}) saveConfigFail00=\u30a8\u30f3\u30b8\u30f3\u306e\u8a2d\u5b9a\u3092\u66f8\u8fbc\u307f\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\uff01 / [en]-(Could not write engine config!) registerTypeMappingFor01=''{0}''\u306b\u5bfe\u3059\u308b\u578b\u30de\u30c3\u30d4\u30f3\u30b0\uff0fBean\u30de\u30c3\u30d4\u30f3\u30b0\u3092\u767b\u9332\u3057\u3066\u4e0b\u3055\u3044\uff01 / [en]-(Please register a typemapping/beanmapping for ''{0}'' unsupportedDefaultEncoding00=\u30c7\u30d5\u30a9\u30eb\u30c8\u30a8\u30f3\u30b3\u30fc\u30c9\u306e\u521d\u671f\u5316\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002\u4f7f\u7528\u3057\u3066\u3044\u308bVM\u304c\u5c11\u306a\u304f\u3068\u3082\u30a8\u30f3\u30b3\u30fc\u30c9{0}\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u4e0b\u3055\u3044\u3002 / [en]-(Failed to initialize default encoding. Ensure your VM supports at least {0} encoding.) # NOTE: in semanticCheck00, do not translate "SOAP" semanticCheck00=SOAP\u306e\u610f\u5473\u89e3\u6790\u3092\u5b9f\u884c\u4e2d\u3067\u3059... / [en]-(Doing SOAP semantic checks...) # NOTE: in sendingXML00, do not translate "XML" sendingXML00=XML\u3092\u9001\u4fe1\u3057\u3066\u3044\u307e\u3059 {0}: / [en]-({0} sending XML:) serverDisabled00=\u3053\u306eAxis\u30b5\u30fc\u30d0\u306f\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u6b63\u3057\u304f\u53d7\u4fe1\u3057\u307e\u305b\u3093 / [en]-(This Axis server is not currently accepting requests.) # NOTE: in serverFault00, do not translate "HTTP" serverFault00=HTTP\u30b5\u30fc\u30d0\u304c\u30d5\u30a9\u30fc\u30eb\u30c8\u3057\u3066\u3044\u307e\u3059 / [en]-(HTTP server fault) serverRun00=\u30b5\u30fc\u30d0\u306f\u8d77\u52d5\u4e2d\u3067\u3059 / [en]-(Server is running) serverStop00=\u30b5\u30fc\u30d0\u306f\u505c\u6b62\u3057\u3066\u3044\u307e\u3059 / [en]-(Server is stopped) servletEngineWebInfError00=/WEB-INF\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067\u30b5\u30fc\u30d6\u30ec\u30c3\u30c8\u30a8\u30f3\u30b8\u30f3\u306b\u3064\u3044\u3066\u306e\u554f\u984c\u3067\u3059 / [en]-(Problem with servlet engine /WEB-INF directory) servletEngineWebInfWarn00=\u30b5\u30fc\u30d6\u30ec\u30c3\u30c8\u30a8\u30f3\u30b8\u30f3\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u30ed\u30fc\u30c9\uff0f\u751f\u6210\u3067\u304d\u307e\u305b\u3093\u3002[en]-(jar\u30d5\u30a1\u30a4\u30eb\u304b\u3089)\u5185\u90e8\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u8a66\u884c\u3057\u3066\u3044\u307e\u3059\u3002 / [en]-(Unable to load/create servlet engine config file, attempting internal default (from jar).) servletEngineWebInfError02=(jar\u30d5\u30a1\u30a4\u30eb\u304b\u3089\u30ed\u30fc\u30c9\u3057\u3066\u3044\u308b)\u30b5\u30fc\u30d6\u30ec\u30c3\u30c8\u30a8\u30f3\u30b8\u30f3\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306b\u3064\u3044\u3066\u306e\u554f\u984c\u3067\u3059 / [en]-(Problem with servlet engine config file (loading from jar)) setProp00={1}\u306b\u30d7\u30ed\u30d1\u30c6\u30a3{0}\u3092\u30bb\u30c3\u30c8\u4e2d\u3067\u3059 / [en]-(Setting {0} property in {1}) # NOTE: in setupTunnel00, do not translate "SSL" setupTunnel00={0}:{1}\u3078\u306eSSL\u30c8\u30f3\u30cd\u30eb\u3092\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7\u3057\u307e\u3059 / [en]-(Set up SSL tunnelling through {0}:{1}) setValueInTarget00=\u30bf\u30fc\u30b2\u30c3\u30c8{1}\u306b\u5024{0}\u3092\u30bb\u30c3\u30c8\u3057\u307e\u3059 / [en]-(Set value {0} in target {1}) somethingWrong00=\u7533\u3057\u8a33\u3042\u308a\u307e\u305b\u3093, \u4f55\u3089\u304b\u306e\u8aa4\u308a\u304c\u3042\u308b\u3088\u3046\u3067\u3059... \u8a73\u7d30\u306f\u3053\u3061\u3089: / [en]-(Sorry, something seems to have gone wrong... here are the details:) start00=\u30dd\u30fc\u30c8{1}\u4e0a\u3067{0}\u3092\u958b\u59cb\u3057\u3066\u3044\u307e\u3059 / [en]-(starting up {0} on port {1}) start01=\u30dd\u30fc\u30c8{1}\u4e0a\u3067{0}\u3092\u958b\u59cb\u3057\u3066\u3044\u307e\u3059({2}) / [en]-(starting up {0} on port {1} ({2})) startElem00=\u8981\u7d20{0}\u306e\u958b\u59cb/ [en]-(Start element {0}) stackFrame00=\u30b9\u30bf\u30c3\u30af\u30d5\u30ec\u30fc\u30e0\u751f\u6210\u5668 / [en]-(Stack frame marker) timeout00=\u30bb\u30c3\u30b7\u30e7\u30f3id{0}\u304c\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8\u3057\u307e\u3057\u305f / [en]-(Session id {0} timed out.) transport00=\u30c8\u30e9\u30f3\u30b9\u30dd\u30fc\u30c8\u306f{0}\u3067\u3059 / [en]-(Transport is {0}) transport01={0}: \u30c8\u30e9\u30f3\u30b9\u30dd\u30fc\u30c8 = ''{1}'' / [en]-({0}: Transport = ''{1}'') # NOTE: in transportName00, do not translate "AXIS" transportName00=\u8208\u5473\u304c\u3042\u308b\u306a\u3089\u3070\u3001\u79c1\u306eAXIS\u30c8\u30e9\u30f3\u30b9\u30dd\u30fc\u30c8\u540d\u306f''{0}''\u3067\u73fe\u308c\u307e\u3059 / [en]-(In case you are interested, my AXIS transport name appears to be ''{0}'') tryingLoad00=\u30af\u30e9\u30b9: {0}\u3092\u30ed\u30fc\u30c9\u3057\u3088\u3046\u3068\u3057\u3066\u3044\u307e\u3059 / [en]-(Trying to load class: {0}) # NOTE: in typeFromAttr00, do not translate "Type" typeFromAttr00=\u5c5e\u6027\u306eType\u306f: {0}\u3067\u3059 / [en]-(Type from attributes is: {0}) unauth00=\u8a31\u53ef\u306a\u3057 / [en]-(Unauthorized) unexpectedEOS00=\u4e88\u671f\u305b\u306c\u30b9\u30c8\u30ea\u30fc\u30e0\u306e\u7d42\u4e86 / [en]-(Unexpected end of stream) unknownHost00=\u672a\u77e5\u306e\u30db\u30b9\u30c8 - \u7ba1\u7406\u8005\u306e\u30a2\u30af\u30bb\u30b9\u6a29\u9650\u3092\u8a3c\u660e\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f / [en]-(Unknown host - could not verify admininistrator access) unregistered00=\u672a\u767b\u9332\u306e\u578b: {0} / [en]-(Unregistered type: {0}) usage00=\u4f7f\u7528\u6cd5: {0} / [en]-(Usage: {0}) user00=\u30e6\u30fc\u30b6: {0} / [en]-(User: {0}) usingServer00=\u30b5\u30fc\u30d0{1}\u3092\u4f7f\u7528\u4e2d\u306e{0} / [en]-({0} using server {1}) value00=\u5024: {0} / [en]-(value: {0}) warning00=\u8b66\u544a: {0} / [en]-(Warning: {0}) where00={0}\u3089\u3057\u304d\u3082\u306e\u304c\u3069\u3053\u306b\u5b58\u5728\u3059\u308b\u304b: / [en]-(Where {0} looks like:) wsdlError00=WSDL\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u51e6\u7406\u30a8\u30e9\u30fc: {0} {1} / [en]-(Error processing WSDL document: {0} {1}) wsdlCreated00=WSDL\u306f{0}\u306b\u3088\u3063\u3066\u751f\u6210\u3055\u308c\u307e\u3057\u305f / [en]-(WSDL created by {0}) # NOTE: in wsdlGenLine00, do not translate "WSDL" wsdlGenLine00=\u3053\u306e\u30d5\u30a1\u30a4\u30eb\u306fWSDL\u304b\u3089\u81ea\u52d5\u751f\u6210\u3055\u308c\u307e\u3057\u305f / [en]-(This file was auto-generated from WSDL) # NOTE: in wsdlGenLine01, do not translate "Apache Axis WSDL2Java" wsdlGenLine01=Apache Axis {0} WSDL2Java\u751f\u6210\u5668\u306b\u3088\u3063\u3066 / [en]-(by the Apache Axis {0} WSDL2Java emitter.) wsdlMissing00=WSDL\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u304c\u4e0d\u660e / [en]-(Missing WSDL document) # NOTE: in wsdlService00, do not translate "WSDL service" wsdlService00={0} WSDL service \u304b\u3089\u306e\u30b5\u30fc\u30d3\u30b9 / [en]-(Services from {0} WSDL service) # NOTE: in xml entries, do not translate "XML" xmlRecd00=\u53d7\u4fe1XML: / [en]-(XML received:) xmlSent00=\u9001\u4fe1XML: / [en]-(XML sent:) # NOTE: in the deployXX entries, do not translate "<!--" and "-->". These are comment indicators. Adding or removing whitespace to make the comment indicators line up would be nice. Also, do not translate the string "axis", or messages: deploy03, deploy04, deploy07 deploy08. Those messages are included so that the spaces can be lined up by the translator. deploy00=<!-- \u30cf\u30f3\u30c9\u30e9\uff0f\u30c1\u30a7\u30a4\u30f3\u3084\u30b5\u30fc\u30d3\u30b9\u3092\u30c7\u30d7\u30ed\u30a4\u3059\u308b\u5834\u5408\u306b\u306f\u3053\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u4f7f\u7528\u3057\u307e\u3059 / [en]-(Use this file to deploy some handlers/chains and services) --> deploy01=<!-- \u30cf\u30f3\u30c9\u30e9\uff0f\u30c1\u30a7\u30a4\u30f3\u3084\u30b5\u30fc\u30d3\u30b9\u3092\u30a2\u30f3\u30c7\u30d7\u30ed\u30a4\u3059\u308b\u5834\u5408\u306b\u306f\u3053\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u4f7f\u7528\u3057\u307e\u3059/ [en]-(Use this file to undeploy some handlers/chains and services) --> deploy02=<!-- \u3053\u308c\u3092\u5b9f\u884c\u3059\u308b\u306b\u306f2\u3064\u306e\u65b9\u6cd5\u304c\u3042\u308a\u307e\u3059: / [en]-(Two ways to do this:) --> deploy03=<!-- java org.apache.axis.client.AdminClient deploy.wsdd --> deploy04=<!-- java org.apache.axis.client.AdminClient undeploy.wsdd --> deploy05=<!-- \u3053\u306e\u30b3\u30de\u30f3\u30c9\u3092axis\u30b5\u30fc\u30d0\u304c\u8d77\u52d5\u3057\u305f\u5f8c\u306b\u5b9f\u884c\u3059\u308b\u65b9\u6cd5 / [en]-(after the axis server is running) --> deploy06=<!-- \u6216\u3044\u306f / [en]-(or) --> deploy07=<!-- java org.apache.axis.utils.Admin client|server deploy.wsdd --> deploy08=<!-- java org.apache.axis.utils.Admin client|server undeploy.wsdd --> deploy09=<!-- \u8d77\u52d5\u4e2d\u306eAxis\u30a8\u30f3\u30b8\u30f3\u3068\u540c\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3078\u79fb\u52d5\u3057\u305f\u5f8c\u3001\u3053\u308c\u3089\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u65b9\u6cd5\u3067\u3059 / [en]-(from the same directory that the Axis engine runs) --> alreadyExists00={0} \u306f\u65e2\u306b\u5b58\u5728\u3057\u307e\u3059 / [en]-({0} already exists) optionDebug00=\u30c7\u30d0\u30c3\u30b0\u60c5\u5831\u3092\u51fa\u529b\u3057\u307e\u3059 / [en]-(print debug information) symbolTable00=\u30b7\u30f3\u30dc\u30eb\u30c6\u30fc\u30d6\u30eb / [en]-(Symbol Table) undefined00=Type {0} \u306f\u53c2\u7167\u3055\u308c\u307e\u3059\u304c\u672a\u5b9a\u7fa9\u3067\u3059 / [en]-(Type {0} is referenced but not defined.) #NOTE: in cannotFindJNDIHome00, do not translate "EJB" or "JNDI" cannotFindJNDIHome00=JNDI\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3{0}\u3067EJB\u3092\u898b\u3064\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093 / [en]-(Cannot find EJB at JNDI location {0}) cannotCreateInitialContext00=InitialContext\u3092\u751f\u6210\u3067\u304d\u307e\u305b\u3093 / [en]-(Cannot create InitialContext) undefinedloop00=\u30eb\u30fc\u30d7\u3067{0}\u306e\u5b9a\u7fa9\u304c\u7d42\u308f\u3063\u3066\u3044\u307e\u3059 / [en]-(The definition of {0} results in a loop.) deserInitPutValueDebug00=id= {1}\u306b\u5bfe\u3059\u308b\u30c7\u30b7\u30ea\u30a2\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5024\u306e\u306e\u521d\u671f\u914d\u7f6e= {0} / [en]-(Initial put of deserialized value= {0} for id= {1}) deserPutValueDebug00=id= {1}\u306b\u5bfe\u3059\u308b\u30c7\u30b7\u30ea\u30a2\u30e9\u30a4\u30ba\u3055\u308c\u305f\u5024= {0}\u3092\u8a2d\u7f6e\u3057\u307e\u3059 / [en]-(Put of deserialized value= {0} for id= {1}) j2wemitter00=\u751f\u6210\u5668 / [en]-(emitter) j2wusage00=\u4f7f\u7528\u6cd5: {0} / [en]-(Usage: {0}) j2woptions00=\u30aa\u30d7\u30b7\u30e7\u30f3: / [en]-(Options:) j2wdetails00=\u8a73\u7d30:\n portType\u8981\u7d20\u540d= <--portTypeName value> \u6216\u3044\u306f <class-of-portType name>\n binding \u8981\u7d20\u540d= <--bindingName value> \u6216\u3044\u306f <--servicePortName value>SoapBinding\n service \u8981\u7d20\u540d= <--serviceElementName value> \u6216\u3044\u306f <--portTypeName value>Service \n port \u8981\u7d20\u540d = <--servicePortName value>\n \u30a2\u30c9\u30ec\u30b9\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3 = <--location value> / [en]-(Details:\n portType element name= <--portTypeName value> OR <class-of-portType name>\n binding element name= <--bindingName value> OR <--servicePortName value>SoapBinding\n service element name= <--serviceElementName value> OR <--portTypeName value>Service \n port element name= <--servicePortName value>\n address location = <--location value>) j2wopthelp00=\u3053\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u7d42\u4e86\u3057\u307e\u3059 / [en]-(print this message and exit) j2woptoutput00=WSDL\u30d5\u30a1\u30a4\u30eb\u540d\u306e\u51fa\u529b / [en]-(output WSDL filename) j2woptlocation00=\u30b5\u30fc\u30d3\u30b9\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3URL / [en]-(service location url) j2woptportTypeName00=portType\u540d(\u660e\u793a\u3055\u308c\u306a\u3044\u5834\u5408\u306fclass-of-portType\u304b\u3089\u53d6\u5f97\u3057\u307e\u3059) / [en]-(portType name (obtained from class-of-portType if not specified)) j2woptservicePortName00=\u30b5\u30fc\u30d3\u30b9\u30dd\u30fc\u30c8\u540d (\u660e\u793a\u3055\u308c\u306a\u3044\u5834\u5408\u306f --location \u304b\u3089\u53d6\u5f97\u3055\u308c\u307e\u3059) / [en]-(service port name (obtained from --location if not specified)) j2woptserviceElementName00=\u30b5\u30fc\u30d3\u30b9\u8981\u7d20\u540d (\u30c7\u30d5\u30a9\u30eb\u30c8\u306f --servicePortName\u306e\u5024 + "Service") / [en]-(service element name (defaults to --servicePortName value + "Service")) j2woptnamespace00=\u5bfe\u8c61\u306e\u540d\u524d\u7a7a\u9593 / [en]-(target namespace) j2woptPkgtoNS00=\u30d1\u30c3\u30b1\u30fc\u30b8=\u540d\u524d\u7a7a\u9593, \u540d\u524d\u3068\u5024\u306f\u30da\u30a2\u3067\u3059 / [en]-(package=namespace, name value pairs) j2woptmethods00=\u7a7a\u767d\u6216\u3044\u306f\u30ab\u30f3\u30de\u3067\u533a\u5207\u3089\u308c\u305f\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u3059\u308b\u30e1\u30bd\u30c3\u30c9\u306e\u30ea\u30b9\u30c8 / [en]-(space or comma separated list of methods to export) j2woptall00=\u7d99\u627f\u3057\u305f\u30af\u30e9\u30b9\u5185\u3067\u8a31\u53ef\u3055\u308c\u308b\u30e1\u30bd\u30c3\u30c9\u3092\u63a2\u3059 / [en]-(look for allowed methods in inherited class) j2woptoutputWsdlMode00=WSDL\u30e2\u30fc\u30c9\u306e\u51fa\u529b: All, Interface, Implementation / [en]-(output WSDL mode: All, Interface, Implementation) j2woptlocationImport00=wsdl\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9\u306e\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3 / [en]-(location of interface wsdl) j2woptnamespaceImpl00=wsdl\u306e\u5b9f\u88c5\u306b\u5bfe\u3059\u308b\u5bfe\u8c61\u306e\u540d\u524d\u7a7a\u9593 / [en]-(target namespace for implementation wsdl) j2woptoutputImpl00=\u5b9f\u88c5\u3057\u305fWSDL\u30d5\u30a1\u30a4\u30eb\u540d\u306e\u51fa\u529b\u3057\u307e\u3059\u3002\u7121\u8996\u3055\u308c\u305f--outputWsdlMode\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u539f\u56e0\u3092\u30bb\u30c3\u30c8\u3057\u3066\u3044\u307e\u3059 / [en]-(output Implementation WSDL filename, setting this causes --outputWsdlMode to be ignored) j2woptimplClass00=class-of-portType\u5185\u306e\u30e1\u30bd\u30c3\u30c9\u306e\u5b9f\u88c5\u3092\u542b\u3080\u30aa\u30d7\u30b7\u30e7\u30f3\u30af\u30e9\u30b9\u3067\u3059\u3002\u3053\u306e\u30af\u30e9\u30b9\u306e\u30c7\u30d0\u30c3\u30b0\u60c5\u5831\u306f\u30e1\u30bd\u30c3\u30c9\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u540d\u3092\u53d6\u5f97\u3057\u3066\u3044\u307e\u3059\u3002\u305d\u308c\u3089\u306fWSDL part\u540d\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059\u3002 / [en]-(optional class that contains implementation of methods in class-of-portType. The debug information in the class is used to obtain the method parameter names, which are used to set the WSDL part names.) j2werror00=\u30a8\u30e9\u30fc: {0} / [en]-(Error: {0}) j2wmodeerror=\u30a8\u30e9\u30fc \u8a8d\u8b58\u3067\u304d\u306a\u3044\u30e2\u30fc\u30c9: {0} All, Interface \u6216\u3044\u306f Implementation\u3092\u4f7f\u7528\u3057\u307e\u3059. All\u3067\u7d9a\u884c\u3057\u3066\u3044\u307e\u3059 / [en]-(Error Unrecognized Mode: {0} Use All, Interface or Implementation. Continuing with All.) j2woptexclude00=\u7a7a\u767d\u6216\u3044\u306f\u30ab\u30f3\u30de\u3067\u533a\u5207\u3089\u308c\u305f\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u3057\u306a\u3044\u30e1\u30bd\u30c3\u30c9\u306e\u30ea\u30b9\u30c8 / [en]-(space or comma separated list of methods not to export) j2woptstopClass00=\u7a7a\u767d\u6216\u3044\u306f\u30ab\u30f3\u30de\u3067\u533a\u5207\u3089\u308c\u305f\u30af\u30e9\u30b9\u540d\u306e\u30ea\u30b9\u30c8(\u7279\u306b --all \u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u4e0e\u3048\u305f\u5834\u5408\u7d99\u627f\u30af\u30e9\u30b9\u306e\u691c\u7d22\u3092\u3057\u307e\u305b\u3093) / [en]-(space or comma separated list of class names which will stop inheritance search if --all switch is given) j2woptImportSchema00=XML\u30b9\u30ad\u30fc\u30de\u3078\u306e\u30d5\u30a1\u30a4\u30eb\u6216\u3044\u306fURL(\u305d\u306e\u30b9\u30ad\u30fc\u30de\u306f\u7269\u7406\u7684\u306b\u751f\u6210\u3055\u308c\u305fWSDL\u3078\u30a4\u30f3\u30dd\u30fc\u30c8\u3055\u308c\u308b\u3079\u304d\u3067\u3059) / [en]-(A file or URL to an XML Schema that should be physically imported into the generated WSDL) # NOTE: in optionSkeletonDeploy00, do not translate "--server-side". optionSkeletonDeploy00=deploy.wsdd\u30d5\u30a1\u30a4\u30eb\u5185\u3067\u30b9\u30b1\u30eb\u30c8\u30f3(true)\u6216\u3044\u306f\u5b9f\u88c5(false)\u3092\u30c7\u30d7\u30ed\u30a4\u3057\u307e\u3059\u3002\u30c7\u30d5\u30a9\u30eb\u30c8\u306ffalse\u3067\u3059\u3002 --server-side \u3092\u4eee\u5b9a\u3057\u3066\u4e0b\u3055\u3044\u3002 / [en]-(deploy skeleton (true) or implementation (false) in deploy.wsdd. Default is false. Assumes --server-side.) j2wMissingLocation00=-l <location> \u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u5b8c\u5168wsdl\u6216\u3044\u306fwsdl\u5b9f\u88c5\u304c\u8981\u6c42\u3055\u308c\u308b\u5834\u5408\u306f\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093 / [en]-(The -l <location> option must be specified if the full wsdl or the implementation wsdl is requested.) invalidSolResp00={0}\u306fsolicit-response\u30b9\u30bf\u30a4\u30eb\u306e\u64cd\u4f5c\u3067\u3042\u308a\u672a\u30b5\u30dd\u30fc\u30c8\u3067\u3059 / [en]-({0} is a solicit-response style operation and is unsupported.) invalidNotif00={0}\u306fnotification\u30b9\u30bf\u30a4\u30eb\u306e\u64cd\u4f5c\u3067\u3042\u308a\u672a\u30b5\u30dd\u30fc\u30c8\u3067\u3059 / [en]-({0} is a notification style operation and is unsupported.) ############################################################################# # DO NOT TOUCH THESE PROPERTIES - THEY ARE AUTOMATICALLY UPDATED BY THE BUILD # PROCESS. axisVersion=Apache Axis version: 1.4 axisVersionRaw=1.4 axisBuiltOnRaw=Apr 22, 2006 (06:55:48 PDT) axisUserAgent=Axis/1.4 builtOn=Built on Apr 22, 2006 (06:55:48 PDT) ############################################################################# badProp00=\u4e0d\u6b63\u306a\u30d7\u30ed\u30d1\u30c6\u30a3\u3002 {0}\u306e\u5024\u306f\u578b{1}\u3067\u3042\u308b\u3079\u304d\u3067\u3059\u304c\u3001\u578b{2}\u3067\u3082\u3042\u308a\u307e\u3059\u3002 / [en]-(Bad property. The value for {0} should be of type {1}, but it is of type {2}.) badProp03=\u30d7\u30ed\u30d1\u30c6\u30a3\u540d\u304cNull\u3067\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059 / [en]-(Null property name specified.) badProp04=\u30d7\u30ed\u30d1\u30c6\u30a3\u5024\u304cNull\u3067\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059 / [en]-(Null property value specified.) badProp05=\u30d7\u30ed\u30d1\u30c6\u30a3\u540d{0}\u306f\u30b5\u30dd\u30fc\u30c8\u3057\u307e\u305b\u3093 / [en]-(Property name {0} not supported.) badGetter00=\u30b2\u30c3\u30bf\u30fc\u304cNull\u3067\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059 / [en]-(Null getter method specified.) badSetter00=\u30bb\u30c3\u30bf\u30fc\u304cNull\u3067\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059 / [en]-(Null setter method specified.) badField00=public\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u30d5\u30a3\u30fc\u30eb\u30c9\u304cNull\u3067\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059 / [en]-(Null public instance field specified.) badJavaType=java\u306e\u30af\u30e9\u30b9\u304cNull\u3067\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059 / [en]-(Null java class specified.) badXmlType=\u5b8c\u5168\u540d\u304cNull\u3067\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059 / [en]-(Null qualified name specified.) badSerFac=\u30b7\u30ea\u30a2\u30e9\u30a4\u30b6\u30d5\u30a1\u30af\u30c8\u30ea\u304cNull\u3067\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059 / [en]-(Null serializer factory specified.) literalTypePart00=\u30a8\u30e9\u30fc: operation\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u90e8{0}, \u6216\u3044\u306f\u30d5\u30a9\u30fc\u30eb\u30c8{1}\u306fbinding"{2}"\u3092\u4f7f\u7528\u3059\u308btype\u3068soap:body\u304c\u6587\u5b57\u5217\u3067\u3042\u308b\u3088\u3046\u306b\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059\u3002 \u3053\u306eWSDL\u306f\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002 / [en]-(Error: Message part {0} of operation or fault {1} is specified as a type and the soap:body use of binding "{2}" is literal. This WSDL is not currently supported.) BadServiceName00=\u30a8\u30e9\u30fc: \u30b5\u30fc\u30d3\u30b9\u540d\u304c\u7a7a\u304b\u4e0d\u660e\u3067\u3059 / [en]-(Error: Empty or missing service name) AttrNotSimpleType00=Bean\u306e\u5c5e\u6027{0}\u306f\u578b{1}\u3067\u3042\u308a\u3001\u5358\u7d14\u578b\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002 / [en]-(Bean attribute {0} is of type {1}, which is not a simple type) AttrNotSimpleType01=\u30a8\u30e9\u30fc: \u5c5e\u6027\u306f\u578b{0}\u3067\u3042\u308a\u3001\u5358\u7d14\u578b\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002 / [en]-(Error: attribute is of type {0}, which is not a simple type) NoSerializer00=\u578b{0}\u306b\u5bfe\u3059\u308b\u30b7\u30ea\u30a2\u30e9\u30a4\u30b6\u3092\u898b\u3064\u3051\u3089\u308c\u307e\u305b\u3093 / [en]-(Unable to find serializer for type {0}) NoJAXRPCHandler00=\u578b{0}\u306e\u30cf\u30f3\u30c9\u30e9\u3092\u751f\u6210\u3067\u304d\u307e\u305b\u3093 / [en]-(Unable to create handler of type {0}) optionTypeMapping00=1.1 \u6216\u3044\u306f 1.2 \u3092\u6307\u3057\u307e\u3059\u3002 \u30c7\u30d5\u30a9\u30eb\u30c8\u306f 1.1 (SOAP 1.1 JAX-RPC\u6e96\u62e0. 1.2 \u306f\u30a8\u30f3\u30b3\u30fc\u30c9\u5bfe\u5fdc\u3057\u305fSOAP 1.1\u3092\u6307\u3059) / [en]-(indicate 1.1 or 1.2. The default is 1.1 (SOAP 1.1 JAX-RPC compliant. 1.2 indicates SOAP 1.1 encoded.)) badTypeMappingOption00=-typeMappingVersion \u5f15\u6570\u306f1.1\u6216\u3044\u306f1.2\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093 / [en]-(The -typeMappingVersion argument must be 1.1 or 1.2) j2wopttypeMapping00=1.1 \u6216\u3044\u306f 1.2 \u3092\u6307\u3057\u307e\u3059. \u30c7\u30d5\u30a9\u30eb\u30c8\u306f 1.1 (SOAP 1.1 JAX-RPC\u6e96\u62e0. 1.2 \u306f\u30a8\u30f3\u30b3\u30fc\u30c9\u5bfe\u5fdc\u3057\u305fSOAP 1.1\u3092\u6307\u3059) / [en]-(indicate 1.1 or 1.2. The default is 1.1 (SOAP 1.1 JAX-RPC compliant 1.2 indicates SOAP 1.1 encoded.)) j2wBadTypeMapping00=-typeMappingVersion \u5f15\u6570\u306f1.1\u6216\u3044\u306f1.2\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093 / [en]-(The -typeMappingVersion argument must be 1.1 or 1.2) nodisk00=\u30c7\u30a3\u30b9\u30af\u306e\u30a2\u30af\u30bb\u30b9\u6a29\u9650\u304c\u3042\u308a\u307e\u305b\u3093\u3001\u30e1\u30e2\u30ea\u306e\u307f\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059\u3002 / [en]-(No disk access, using memory only.) noFactory00=\uff01\uff01{0}\u306b\u5bfe\u3059\u308b\u30d5\u30a1\u30af\u30c8\u30ea\u304c\u3042\u308a\u307e\u305b\u3093 / [en]-(!! No Factory for {0}) noTransport02=\u30c8\u30e9\u30f3\u30b9\u30dd\u30fc\u30c8{0}\u3092\u898b\u3064\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f / [en]-(Couldn''t find transport {0}) noCompiler00=\u30af\u30e9\u30b9\u30d1\u30b9\u5185\u306b\u30b3\u30f3\u30d1\u30a4\u30e9\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\uff01 (\u304a\u305d\u3089\u304f''tools.jar''\u3092\u8ffd\u52a0\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059) / [en]-(No compiler found in your classpath! (you may need to add ''tools.jar'')) compilerFail00=\u30af\u30e9\u30b9\u30d1\u30b9\u5185\u306bJDK\u306ert.jar\u304c\u3042\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u4e0b\u3055\u3044\u3002\u305d\u306e\u64cd\u4f5c\u306b\u306fJikes\u304c\u5fc5\u8981\u3067\u3059\u3002 / [en]-(Please ensure that you have your JDK''s rt.jar listed in your classpath. Jikes needs it to operate.) nullFieldDesc=\u6307\u5b9a\u3055\u308c\u305fFieldDesc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304cNull\u3067\u3059 / [en]-(Null FieldDesc specified) exception00=\u4f8b\u5916\u767a\u751f: / [en]-(Exception:) exception01=\u4f8b\u5916\u767a\u751f: {0} / [en]-(Exception: {0}) axisConfigurationException00=\u8a2d\u5b9a\u306b\u95a2\u3059\u308b\u4f8b\u5916: / [en]-(ConfigurationException:) parserConfigurationException00=\u30d1\u30fc\u30b5\u8a2d\u5b9a\u306b\u95a2\u3059\u308b\u4f8b\u5916\u767a\u751f: / [en]-(ParserConfigurationException:) SAXException00=SAXException\u767a\u751f: / [en]-(SAXException:) javaxMailMessagingException00=javax.mail.MessagingException\u767a\u751f: / [en]-(javax.mail.MessagingException:) javaIOException00=java.io.IOException\u767a\u751f: / [en]-(java.io.IOException:) javaIOException01=java.io.IOException\u767a\u751f: {0} / [en]-(java.io.IOException: {0}) illegalAccessException00=IllegalAccessException\u4f8b\u5916\u767a\u751f: / [en]-(IllegalAccessException:) illegalArgumentException00=IllegalArgumentException\u767a\u751f:/ [en]-(IllegalArgumentException:) illegalArgumentException01=IllegalArgumentException\u767a\u751f: {0} / [en]-(IllegalArgumentException: {0}) invocationTargetException00=InvocationTargetException\u767a\u751f: / [en]-(InvocationTargetException:) instantiationException00=InstantiationException\u4f8b\u5916\u767a\u751f:/ [en]-(InstantiationException:) malformedURLException00=MalformedURLException\u4f8b\u5916\u767a\u751f:/ [en]-(MalformedURLException:) toAxisFault00=AxisFault\u3078\u306e\u30de\u30c3\u30d4\u30f3\u30b0\u4f8b\u5916\u767a\u751f / [en]-(Mapping Exception to AxisFault) # NOTE: in badSkeleton00, do not translate "--skeletonDeploy" and "--server-side". badSkeleton00=\u30a8\u30e9\u30fc: --skeletonDeploy \u30aa\u30d7\u30b7\u30e7\u30f3\u306f --server-side \u30aa\u30d7\u30b7\u30e7\u30f3\u7121\u3057\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002 / [en]-(Error: --skeletonDeploy cannot be specified without --server-side.) timedOut=WSDL2Java\u751f\u6210\u5668\u306f\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8\u3057\u307e\u3057\u305f\uff01(\u3053\u308c\u306f\u6307\u5b9a\u3055\u308c\u305fURL\u3067\u306eWSDL\u304c\u30a2\u30af\u30bb\u30b9\u4e0d\u53ef\u3067\u3042\u308b\u3053\u3068\u3092\u610f\u5473\u3059\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059) / [en]-(WSDL2Java emitter timed out (this often means the WSDL at the specified URL is inaccessible)!) valuePresent=MessageElement.addChild\u30e1\u30bd\u30c3\u30c9\u306f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u5024\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306b\u547c\u51fa\u3055\u308c\u307e\u3057\u305f / [en]-(MessageElement.addChild called when an object value is present) xmlPresent=MessageElement.setObjectValue\u30e1\u30bd\u30c3\u30c9\u306fXML\u3067\u69cb\u7bc9\u3055\u308c\u305f\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u547c\u51fa\u3057\u307e\u3057\u305f / [en]-(MessageElement.setObjectValue called on an instance which was constructed using XML) attachEnabled=Attachment\u30b5\u30dd\u30fc\u30c8\u306f\u53ef\u80fd\u3067\u3059\u304b\uff1f / [en]-(Attachment support is enabled?) attachDisabled=\u8981\u6c42\u3055\u308c\u305f\u30af\u30e9\u30b9(javax.activation.DataHandler \u3068 javax.mail.internet.MimeMultipart)\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002Attachment\u30b5\u30dd\u30fc\u30c8\u304c\u5229\u7528\u3067\u304d\u307e\u305b\u3093\u3002 / [en]-(Unable to find required classes (javax.activation.DataHandler and javax.mail.internet.MimeMultipart). Attachment support is disabled.) noEndpoint=\u30a8\u30f3\u30c9\u30dd\u30a4\u30f3\u30c8\u304c\u3042\u308a\u307e\u305b\u3093 / [en]-(No endpoint) setMsgForm={0}\u3078\u73fe\u5728\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u306e\u5f62\u5f0f\u3092\u30bb\u30c3\u30c8\u3057\u3066\u3044\u307e\u3059(\u73fe\u5728\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u306f{1}\u3067\u3059) / [en]-(Setting current message form to: {0} (currentMessage is now {1})) currForm=\u73fe\u5728\u306e\u5f62\u5f0f\u306f{0}\u3067\u3059 / [en]-(current form is {0}) unsupportedAttach=\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u306a\u3044attachment\u306e\u578b"{0}". "{1}"\u306e\u307f\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059 / [en]-(Unsupported attachment type "{0}" only supporting "{1}".) # NOTE: in onlySOAPParts, do not translate "SOAPPart". onlySOAPParts=\u3053\u306eattachment\u306e\u5b9f\u88c5\u306f\u30eb\u30fc\u30c8\u90e8\u3068\u3057\u3066SOAPPart\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u307f\u3092\u53d7\u5165\u308c\u307e\u3059 / [en]-(This attachment implementation accepts only SOAPPart objects as the root part.) gotNullPart=AttachmentUtils.getActiviationDataHandler\u30e1\u30bd\u30c3\u30c9\u306fpart\u3068\u3057\u3066Null\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u53d7\u4fe1\u3057\u307e\u3057\u305f / [en]-(AttachmentUtils.getActiviationDataHandler received a null parameter as a part.) streamNo=\u65b0\u898f\u30b9\u30c8\u30ea\u30fc\u30e0\u5883\u754c\u6570: {0} / [en]-(New boundary stream number: {0}) streamClosed=\u30b9\u30c8\u30ea\u30fc\u30e0\u3092\u9589\u3058\u307e\u3057\u305f / [en]-(Stream closed.) eosBeforeMarker=\u30b9\u30c8\u30ea\u30fc\u30e0\u306e\u7d42\u4e86\u304c\u6700\u5f8c\u306e\u5883\u754c\u751f\u6210\u306e\u524d\u306b\u3042\u308a\u307e\u3057\u305f / [en]-(End of stream encountered before final boundary marker.) atEOS=\u5883\u754c\u30b9\u30c8\u30ea\u30fc\u30e0\u6570{0}\u306f\u30b9\u30c8\u30ea\u30fc\u30e0\u306e\u6700\u5f8c\u3067\u3059 / [en]-(Boundary stream number {0} is at end of stream) readBStream="BoundaryDelimitedString\u304b\u3089{0}\u3092\u8aad\u8fbc\u307f\u307e\u3059: {1} "{2} / [en]-("Read {0} from BoundaryDelimitedStream: {1} "{2}") bStreamClosed=\u5883\u754c\u30b9\u30c8\u30ea\u30fc\u30e0\u6570{0}\u306f\u9589\u3058\u3089\u308c\u307e\u3057\u305f / [en]-(Boundary stream number {0} is closed) # NOTE: in badMaxCache, do not translate "maxCached". badMaxCached=maxCached\u5024\u304c\u4e0d\u6b63\u3067\u3059: {0} / [en]-(maxCached value is bad: {0}) maxCached=ManagedMemoryDataSource.flushToDisk\u30e1\u30bd\u30c3\u30c9\u306f\u6700\u5927{0}\u30ad\u30e3\u30c3\u30b7\u30e5\u3057\u307e\u3057\u305f\u3001\u7dcf\u30e1\u30e2\u30ea\u306f{1}\u3067\u3059\u3002 / [en]-(ManagedMemoryDataSource.flushToDisk maximum cached {0}, total memory {1}.) diskCache=\u30c7\u30a3\u30b9\u30af\u30ad\u30e3\u30c3\u30b7\u30e5\u30d5\u30a1\u30a4\u30eb\u540d"{0}" / [en]-(Disk cache file name "{0}".) resourceDeleted=\u30ea\u30bd\u30fc\u30b9\u306f\u524a\u9664\u3055\u308c\u3066\u3044\u307e\u3059 / [en]-(Resource has been deleted.) noResetMark=\u30ea\u30bb\u30c3\u30c8\u3068\u30de\u30fc\u30af\u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093\uff01 / [en]-(Reset and mark not supported!) nullInput=\u5165\u529b\u30d0\u30c3\u30d5\u30a1\u304cNull\u3067\u3059 / [en]-(input buffer is null) negOffset=\u30aa\u30d5\u30bb\u30c3\u30c8\u306f\u8ca0\u3067\u3059: {0} / [en]-(Offset is negative: {0}) length=\u9577\u3055: {0} / [en]-(Length: {0}) writeBeyond=\u30d0\u30c3\u30d5\u30a1\u3092\u8d85\u3048\u305f\u66f8\u8fbc\u307f / [en]-(Write beyond buffer) reading=\u30c7\u30a3\u30b9\u30af\u304b\u3089{0}\u30d0\u30a4\u30c8\u8aad\u8fbc\u307f\u4e2d / [en]-(reading {0} bytes from disk) flushing=\u30d5\u30e9\u30c3\u30b7\u30e5\u3057\u3066\u3044\u307e\u3059 / [en]-(flushing) read={0}\u30d0\u30a4\u30c8\u8aad\u8fbc\u307f / [en]-(read {0} bytes) readError=\u30c7\u30fc\u30bf\u30b9\u30c8\u30ea\u30fc\u30e0\u8aad\u8fbc\u307f\u4e2d\u306e\u4f8b\u5916\u767a\u751f: {0} / [en]-(Error reading data stream: {0}) noFile=\u30c7\u30fc\u30bf\u30cf\u30f3\u30c9\u30e9\u306b\u5bfe\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u304c\u5b58\u5728\u3057\u307e\u305b\u3093: {0} / [en]-(File for data handler does not exist: {0}) mimeErrorNoBoundary=MIME\u30c7\u30fc\u30bf\u30b9\u30c8\u30ea\u30fc\u30e0\u5185\u306e\u30a8\u30e9\u30fc\u3001\u958b\u59cb\u5883\u754c\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f, \u4e88\u671f\u3055\u308c\u308b\u3082\u306e: {0} / [en]-(Error in MIME data stream, start boundary not found, expected: {0}) mimeErrorParsing=MIME\u30c7\u30fc\u30bf\u30b9\u30c8\u30ea\u30fc\u30e0\u89e3\u6790\u4e2d\u306e\u30a8\u30e9\u30fc: {0} / [en]-(Error in parsing mime data stream: {0}) noRoot=SOAP\u30a8\u30f3\u30d9\u30ed\u30fc\u30d7\u3092\u542b\u3080\u30eb\u30fc\u30c8\u90e8\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f. contentId = {0} / [en]-(Root part containing SOAP envelope not found. contentId = {0}) noAttachments=attachment\u672a\u30b5\u30dd\u30fc\u30c8 / [en]-(No support for attachments) noContent=\u5185\u5bb9\u304c\u3042\u308a\u307e\u305b\u3093 / [en]-(No content) targetService=\u5bfe\u8c61\u306e\u30b5\u30fc\u30d3\u30b9: {0} / [en]-(Target service: {0}) exceptionPrinting=\u30ea\u30af\u30a8\u30b9\u30c8\u30e1\u30c3\u30bb\u30fc\u30b8\u51fa\u529b\u4e2d\u306b\u4f8b\u5916\u3092\u30ad\u30e3\u30c3\u30c1\u3057\u307e\u3057\u305f / [en]-(Exception caught while printing request message) noConfigFile=\u30a8\u30f3\u30b8\u30f3\u306e\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u304c\u3042\u308a\u307e\u305b\u3093 - \u4e2d\u6b62\u3057\u307e\u3059\uff01 / [en]-(No engine configuration file - aborting!) noTypeSetting={0}\u306ftype\u306e\u30bb\u30c3\u30c8\u3092\u8a31\u53ef\u3057\u307e\u305b\u3093 / [en]-({0} disallows setting of Type) noSubElements=\u8981\u7d20"{0}"\u306f\u672a\u30b5\u30dd\u30fc\u30c8\u306e\u30b5\u30d6\u8981\u7d20\u3092\u6301\u3064attachment\u3067\u3059 / [en]-(The element "{0}" is an attachment with sub elements which is not supported.) # NOTE: in defaultCompiler, do not translate "javac" defaultCompiler=\u30c7\u30d5\u30a9\u30eb\u30c8\u306ejavac\u30b3\u30f3\u30d1\u30a4\u30e9\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059 / [en]-(Using default javac compiler) noModernCompiler=Javac\u30b3\u30cd\u30af\u30bf\u306fmodern\u30b3\u30f3\u30d1\u30a4\u30e9\u3092\u898b\u3064\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f -- classic\u3078\u5207\u308a\u66ff\u3048\u3066\u3044\u307e\u3059 / [en]-(Javac connector could not find modern compiler -- falling back to classic.) compilerClass=Javac\u30b3\u30f3\u30d1\u30a4\u30e9\u30af\u30e9\u30b9: {0} / [en]-(Javac compiler class: {0}) noMoreTokens=\u30c8\u30fc\u30af\u30f3\u306f\u3053\u308c\u4ee5\u4e0a\u3042\u308a\u307e\u305b\u3093 - \u305d\u306e\u30c8\u30fc\u30af\u30f3\u306f\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u89e3\u6790\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f: {0} / [en]-(no more tokens - could not parse error message: {0}) cantParse=\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u89e3\u6790\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f: {0} / [en]-(could not parse error message: {0}) # NOTE: in sunJavac, do not translate "Sun Javac" sunJavac=Sun Javac \u30b3\u30f3\u30d1\u30a4\u30e9 / [en]-(Sun Javac Compiler) # NOTE: in ibmJikes, do not translate "IBM Jikes" ibmJikes=IBM Jikes \u30b3\u30f3\u30d1\u30a4\u30e9 / [en]-(IBM Jikes Compiler) typeMeta=\u30e1\u30bf\u30c7\u30fc\u30bf\u578b / [en]-(Type metadata) returnTypeMeta=\u30e1\u30bf\u30c7\u30fc\u30bf\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u578b\u3092\u8fd4\u5374 / [en]-(Return type metadata object) needStringCtor=\u5358\u7d14\u578b\u306fString\u578b\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u3092\u6301\u305f\u306a\u304f\u3066\u306f\u306a\u308a\u307e\u305b\u3093 / [en]-(Simple Types must have a String constructor) needToString=\u5358\u7d14\u578b\u306f\u5024\u3092\u30b7\u30ea\u30a2\u30e9\u30a4\u30ba\u3059\u308b\u305f\u3081\u306etoString\u30e1\u30bd\u30c3\u30c9\u3092\u6301\u305f\u306a\u304f\u3066\u306f\u306a\u308a\u307e\u305b\u3093 / [en]-(Simple Types must have a toString for serializing the value) typeMap00=\u5168\u3066\u306etype\u30de\u30c3\u30d4\u30f3\u30b0\u60c5\u5831\u306f\u767b\u9332\u3055\u308c\u3066\u3044\u307e\u3059 / [en]-(All the type mapping information is registered) typeMap01=\u305d\u308c\u3089\u306f\u6700\u521d\u306b\u547c\u51fa\u3055\u308c\u308b\u6642\u306b\u767b\u9332\u3055\u308c\u307e\u3059 / [en]-(when the first call is made.) typeMap02=type\u30de\u30c3\u30d4\u30f3\u30b0\u60c5\u5831\u306f\u5b9f\u969b\u306b\u306f\u767b\u9332\u3055\u308c\u3066\u3044\u307e\u3059 / [en]-(The type mapping information is actually registered in) typeMap03=\u30b5\u30fc\u30d3\u30b9\u306eTypeMappingRegistry\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u307e\u3059, / [en]-(the TypeMappingRegistry of the service, which) typeMap04=\u305d\u306e\u7406\u7531\u306f\u767b\u9332\u304c\u6700\u521d\u306e\u547c\u3073\u51fa\u3057\u306b\u5fc5\u8981\u3068\u3055\u308c\u308b\u3068\u304d\u3060\u3051\u3067\u3042\u308b\u304b\u3089\u3067\u3059. / [en]-(is the reason why registration is only needed for the first call.) mustSetStyle=\u30b7\u30ea\u30a2\u30e9\u30a4\u30b6\u3092\u767b\u9332\u3059\u308b\u524d\u306b\u30a8\u30f3\u30b3\u30fc\u30c9\u30b9\u30bf\u30a4\u30eb\u3092\u30bb\u30c3\u30c8\u3057\u306a\u304f\u3066\u306f\u306a\u308a\u307e\u305b\u3093 / [en]-(must set encoding style before registering serializers) # NOTE: in mustSpecifyReturnType and mustSpecifyParms, do not translate "addParameter()" and "setReturnType()" mustSpecifyReturnType=Call\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3078\u660e\u793a\u7684\u306b\u6307\u5b9a\u3055\u308c\u305f\u623b\u308a\u5024\u306e\u578b(returnType)\u304c\u3042\u308a\u307e\u305b\u3093\uff01addParameter()\u30e1\u30bd\u30c3\u30c9\u3092\u547c\u51fa\u3059\u5834\u5408\u306fsetReturnType()\u30e1\u30bd\u30c3\u30c9\u3092\u547c\u51fa\u3055\u306a\u304f\u3066\u306f\u306a\u308a\u307e\u305b\u3093\u3002 / [en]-(No returnType was specified to the Call object! You must call setReturnType() if you have called addParameter().) mustSpecifyParms=Call\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3078\u660e\u793a\u7684\u306b\u6307\u5b9a\u3055\u308c\u305f\u30d1\u30e9\u30e1\u30fc\u30bf(parameters)\u304c\u3042\u308a\u307e\u305b\u3093\uff01setReturnType()\u30e1\u30bd\u30c3\u30c9\u3092\u547c\u51fa\u3059\u5834\u5408\u306f\u5168\u3066\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u5bfe\u3057\u3066addParameter()\u30e1\u30bd\u30c3\u30c9\u3092\u547c\u51fa\u3055\u306a\u304f\u3066\u306f\u306a\u308a\u307e\u305b\u3093 / [en]-(No parameters specified to the Call object! You must call addParameter() for all parameters if you have called setReturnType().) fixedTypeMapping=\u4fee\u6b63\u3067\u304d\u306a\u3044\u30c7\u30d5\u30a9\u30eb\u30c8\u578b\u30de\u30c3\u30d4\u30f3\u30b0 / [en]-(Default type mapping cannot be modified.) delegatedTypeMapping=\u578b\u30de\u30c3\u30d4\u30f3\u30b0\u306f\u30c7\u30ea\u30b2\u30fc\u30c8\u7d4c\u7531\u3067\u4fee\u6b63\u3067\u304d\u307e\u305b\u3093 / [en]-(Type mapping cannot be modified via delegate.) badTypeMapping=\u7121\u52b9\u306a\u578b\u30de\u30c3\u30d4\u30f3\u30b0\u304c\u6307\u5b9a\u3055\u308c\u307e\u3057\u305f: \u9593\u9055\u3063\u305f\u578b\u3067\u3042\u308b\u304bNull\u3067\u3059 / [en]-(Invalid TypeMapping specified: wrong type or null.) defaultTypeMappingSet=\u578b\u30de\u30c3\u30d4\u30f3\u30b0\u30ec\u30b8\u30b9\u30c8\u30ea(\u30bb\u30ab\u30f3\u30c0\u30ea)\u304b\u3089\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u578b\u30de\u30c3\u30d4\u30f3\u30b0\u306f\u65e2\u306b\u4f7f\u7528\u4e2d\u3067\u3059 / [en]-(Default type mapping from secondary type mapping registry is already in use.) getPortDoc00=\u4e0e\u3048\u3089\u308c\u305f\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9\u306b\u5bfe\u3057\u3066\u3001\u30b9\u30bf\u30d6\u306e\u5b9f\u88c5\u3092\u53d6\u5f97\u3057\u307e\u3059\u3002 / [en]-(For the given interface, get the stub implementation.) getPortDoc01=\u3053\u306e\u30b5\u30fc\u30d3\u30b9\u304c\u4e0e\u3048\u3089\u308c\u305f\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9\u306b\u5bfe\u3057\u3066\u30dd\u30fc\u30c8\u3092\u6301\u305f\u306a\u3044\u5834\u5408\u3001 / [en]-(If this service has no port for the given interface,) getPortDoc02=ServiceException\u304c\u6295\u3052\u3089\u308c\u307e\u3059\u3002 / [en]-(then ServiceException is thrown.) getPortDoc03=\u3053\u306e\u30b5\u30fc\u30d3\u30b9\u304c\u4e0e\u3048\u3089\u308c\u305f\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9\u306b\u5bfe\u3057\u3066\u8907\u6570\u306e\u30dd\u30fc\u30c8\u3092\u6301\u3064\u5834\u5408\u306f; / [en]-(This service has multiple ports for a given interface;) getPortDoc04=\u8fd4\u5374\u3055\u308c\u308b\u30d7\u30ed\u30ad\u30b7\u306e\u5b9f\u88c5\u306f\u672a\u6c7a\u5b9a\u3067\u3059\u3002 / [en]-(the proxy implementation returned may be indeterminate.) noStub=\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9\u306b\u5bfe\u3059\u308b\u30b9\u30bf\u30d6\u306e\u5b9f\u88c5\u304c\u3042\u308a\u307e\u305b\u3093: / [en]-(There is no stub implementation for the interface:) CantGetSerializer=\u30af\u30e9\u30b9{0}\u306e\u30b7\u30ea\u30a2\u30e9\u30a4\u30b6\u3092\u53d6\u5f97\u3067\u304d\u307e\u305b\u3093 / [en]-(unable to get serializer for class {0}) unknownPortName=\u672a\u77e5\u306e\u30dd\u30fc\u30c8\u306b\u5bfe\u3057\u3066\u306f\u30a8\u30f3\u30c9\u30dd\u30a4\u30f3\u30c8\u306e\u30a2\u30c9\u30ec\u30b9\u3092\u30bb\u30c3\u30c8\u3067\u304d\u307e\u305b\u3093 / [en]-(Cannot set Endpoint Address for Unknown Port) setEndpointDoc00=\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u540d\u306b\u5bfe\u3059\u308b\u30a8\u30f3\u30c9\u30dd\u30a4\u30f3\u30c8\u306e\u30a2\u30c9\u30ec\u30b9\u3092\u30bb\u30c3\u30c8\u3057\u307e\u3059 / [en]-(Set the endpoint address for the specified port name.) BadImplementation00=\u30af\u30e9\u30b9{0}\u306f{1}\u3092\u5b9f\u88c5\u3057\u306a\u304f\u3066\u306f\u306a\u308a\u307e\u305b\u3093 / [en]-(class {0} must implement {1}) noVector00={0}: {1}\u306fvector\u3067\u306f\u3042\u308a\u307e\u305b\u3093 / [en]-({0}: {1} is not a vector) badVector00=Vector\u5185\u3067\u306e\u5faa\u74b0\u3057\u305f\u53c2\u7167 / [en]-(Circular reference in Vector) optionFactory00=(Java\u751f\u6210\u95a2\u6570\u3092\u62e1\u5f35\u3057\u305f)GeneratorFactory\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9\u3092\u5b9f\u88c5\u3059\u308b\u30e6\u30fc\u30b6\u5b9a\u7fa9\u30af\u30e9\u30b9\u306e\u540d\u79f0 / [en]-(name of a custom class that implements GeneratorFactory interface (for extending Java generation functions)) optionHelper00=\u30e1\u30bf\u30c7\u30fc\u30bf\u30af\u30e9\u30b9\u3092\u30d8\u30eb\u30d1\u30fc\u3068\u5206\u96e2\u3057\u3066\u751f\u6210 / [en]-(emits separate Helper classes for meta data) badParameterMode=getModeAsString()\u30e1\u30bd\u30c3\u30c9\u3078\u6e21\u3055\u308c\u305f\u7121\u52b9\u306a\u30d0\u30a4\u30c8\u578bmode\u30d1\u30e9\u30e1\u30fc\u30bf ({0}) / [en]-(Invalid parameter mode byte ({0}) passed to getModeAsString().) attach.bounday.mns=\u30b9\u30c8\u30ea\u30fc\u30e0\u306e\u8a18\u9332\u306f\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u305b\u3093 / [en]-(Marking streams not supported.) noSuchOperation=\u305d\u306e\u3088\u3046\u306a\u64cd\u4f5c''{0}''\u306f\u3042\u308a\u307e\u305b\u3093 / [en]-(No such operation ''{0}'') optionUsername=WSDL-URI\u3078\u30a2\u30af\u30bb\u30b9\u3059\u308b\u30e6\u30fc\u30b6\u540d / [en]-(username to access the WSDL-URI) optionPassword=WSDL-URI\u3078\u30a2\u30af\u30bb\u30b9\u3059\u308b\u30d1\u30b9\u30ef\u30fc\u30c9 / [en]-(password to access the WSDL-URI) implAlreadySet=ServiceDesc\u306e\u5b9f\u88c5\u30af\u30e9\u30b9\u3092\u30bb\u30c3\u30c8\u3057\u3088\u3046\u3068\u3057\u307e\u3057\u305f\u304c\u65e2\u306b\u8a2d\u5b9a\u6e08\u3067\u3059 / [en]-(Attempt to set implementation class on a ServiceDesc which has already been configured) optionClasspath=\u8ffd\u52a0\u30af\u30e9\u30b9\u30d1\u30b9\u8981\u7d20 / [en]-(additional classpath elements) optionNSInclude=\u751f\u6210\u3055\u308c\u305f\u30b3\u30fc\u30c9\u5185\u306e\u540d\u524d\u7a7a\u9593\u3092\u30a4\u30f3\u30af\u30eb\u30fc\u30c9 / [en]-(include namespace in generated code) optionNSExclude=\u751f\u6210\u3055\u308c\u305f\u30b3\u30fc\u30c9\u304b\u3089\u540d\u524d\u7a7a\u9593\u3092\u30a8\u30af\u30b9\u30af\u30eb\u30fc\u30c9 / [en]-(exclude namespace from generated code) optionQuiet=\u3044\u304b\u306a\u308b\u60c5\u5831\u3084\u30c7\u30d0\u30c3\u30b0\u30e1\u30c3\u30bb\u30fc\u30b8\u3082(\u30a8\u30e9\u30fc\u3092\u9664\u304d)\u51fa\u529b\u3057\u307e\u305b\u3093 / [en]-(do not print any informational or debug messages (except errors)) implementationClassName=Web\u30b5\u30fc\u30d3\u30b9\u5b9f\u88c5\u30af\u30e9\u30b9\u306e\u30e6\u30fc\u30b6\u5b9a\u7fa9\u540d / [en]-(custom name of web service implementation) cantCreateBean00=\u578b{0}\u306eJavaBean\u3092\u751f\u6210\u3067\u304d\u307e\u305b\u3093\u3002 \u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u304c\u4e0d\u660e\uff1f \u30a8\u30e9\u30fc: {1} / [en]-(Unable to create JavaBean of type {0}. Missing default constructor? Error was: {1}.) j2woptsoapAction00=operation\u8981\u7d20soapAction\u306e\u30d5\u30a3\u30fc\u30eb\u30c9\u5024\u3002\u5024\u306fDEFAULT, OPERATION \u6216\u3044\u306f NONE\u3067\u3059\u3002 OPERATION\u306fsoapAction\u306boperation\u540d\u3092\u5f37\u5236\u3057\u307e\u3059\u3002DEFAULT\u3067\u306fsoapAction\u306foperation\u306e\u30e1\u30bf\u30c7\u30fc\u30bf(\u901a\u5e38 "")\u306b\u5fdc\u3058\u3066\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059\u3002NONE\u306fsoapAction\u3092""\u306b\u5f37\u5236\u3057\u307e\u3059\u3002\u30c7\u30d5\u30a9\u30eb\u30c8\u306f DEFAULT \u3067\u3059\u3002 / [en]-(value of the operation''s soapAction field. Values are DEFAULT, OPERATION or NONE. OPERATION forces soapAction to the name of the operation. DEFAULT causes the soapAction to be set according to the operation''s meta data (usually ""). NONE forces the soapAction to "". The default is DEFAULT.) j2wBadSoapAction00=--soapAction\u306e\u5024\u306fDEFAULT, NONE \u6216\u3044\u306f OPERATION\u306e\u4f55\u308c\u304b\u3067\u306a\u304f\u3066\u306f\u306a\u308a\u307e\u305b\u3093 / [en]-(The value of --soapAction must be DEFAULT, NONE or OPERATION.) dispatchIAE00=\u5f15\u6570{1}\u3092\u6301\u3064\u30e1\u30bd\u30c3\u30c9{0}\u3092\u547c\u51fa\u305d\u3046\u3068\u3057\u307e\u3057\u305f\u3002\u5f15\u6570\u306f\u7f72\u540d\u3068\u4e00\u81f4\u3057\u307e\u305b\u3093\u3002 / [en]-(Tried to invoke method {0} with arguments {1}. The arguments do not match the signature.) ftsf00=\u4fe1\u983c\u3059\u308b\u30bd\u30b1\u30c3\u30c8factory\u3092\u751f\u6210\u3057\u3066\u3044\u307e\u3059 / [en]-(Creating trusting socket factory) ftsf01=factory\u751f\u6210\u6642\u306e\u4f8b\u5916 / [en]-(Exception creating factory) ftsf02=SSL\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7\u306b\u5931\u6557\u3057\u307e\u3057\u305f / [en]-(SSL setup failed) noSocketFactory=''{0}''\u30d7\u30ed\u30c8\u30b3\u30eb\u306e\u30bd\u30b1\u30c3\u30c8factory\u304c\u3042\u308a\u307e\u305b\u3093 / [en]-(No socket factory for ''{0}'' protocol) generating={0}\u3092\u751f\u6210\u4e2d / [en]-(Generating {0}) j2woptStyle00=WSDL\u5185\u3067\u306ebinding\u306e\u30b9\u30bf\u30a4\u30eb\u306f DOCUMENT, RPC \u6216\u3044\u306f WRAPPED \u306e\u4f55\u308c\u304b\u3067\u3059 / [en]-(The style of binding in the WSDL, either DOCUMENT, RPC, or WRAPPED.) j2woptBadStyle00=--stype \u306e\u5024\u306fDOCUMENT, RPC \u6216\u3044\u306f WRAPPED \u306e\u4f55\u308c\u304b\u3067\u306a\u304f\u3066\u306f\u306a\u308a\u307e\u305b\u3093 / [en]-(The value of --style must be DOCUMENT, RPC, or WRAPPED.) noClassForService00=\u540d\u524d\u4ed8\u3051\u3055\u308c\u305f\u30b5\u30fc\u30d3\u30b9\u306b\u5bfe\u3059\u308b\u30af\u30e9\u30b9\u3092\u898b\u3064\u3051\u3089\u308c\u307e\u305b\u3093\u3067\u3057\u305f: {0}\n\u30d2\u30f3\u30c8: \u6b63\u3057\u3044\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3\u306b\u30af\u30e9\u30b9\u30d5\u30a1\u30a4\u30eb\uff0f\u30c4\u30ea\u30fc\u3092\u30b3\u30d4\u30fc\u3059\u308b\u5fc5\u8981\u304c\u3042\u308b\u304b\u3082\u3057\u308c\u307e\u305b\u3093(\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3\u306f\u4f7f\u7528\u3057\u3066\u3044\u308b\u30b5\u30fc\u30d6\u30ec\u30c3\u30c8\u306e\u30b7\u30b9\u30c6\u30e0\u306b\u4f9d\u308a\u307e\u3059) / [en]-(Could not find class for the service named: {0}\nHint: you may need to copy your class files/tree into the right location (which depends on the servlet system you are using).) j2wDuplicateClass00=<class-of-portType>\u306f\u65e2\u306b{0}\u3068\u3057\u3066\u6307\u5b9a\u6e08\u3067\u3059\u3002{1}\u3068\u3057\u3066\u518d\u5ea6\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002 / [en]-(The <class-of-portType> has already been specified as, {0}. It cannot be specified again as {1}.) j2wMissingClass00=<class-of-portType>\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3067\u3057\u305f / [en]-(The <class-of-portType> was not specified.) w2jDuplicateWSDLURI00=\u305d\u306ewsdl URI\u306f\u65e2\u306b{0}\u3068\u3057\u3066\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059\u3002{1}\u3068\u3057\u3066\u518d\u5ea6\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002 / [en]-(The wsdl URI has already been specified as, {0}. It cannot be specified again as {1}.) w2jMissingWSDLURI00=\u305d\u306ewsdl URL\u306f\u6307\u5b9a\u3055\u308c\u307e\u305b\u3093\u3067\u3057\u305f / [en]-(The wsdl URI was not specified.) exclusiveQuietVerbose=--quiet \u3068 --verbose \u3068\u306f\u6392\u4ed6\u7684\u95a2\u4fc2\u3067\u3059 / [en]-(--quiet and --verbose are exclusive) exclusiveQuietDebug=--quiet \u3068 --Debug \u3068\u306f\u6392\u4ed6\u7684\u95a2\u4fc2\u3067\u3059 / [en]-(--quiet and --Debug are exclusive) badEnum02=\u8a8d\u8b58\u3067\u304d\u307e\u305b\u3093 {0}: ''{1}'' / [en]-(Unrecognized {0}: ''{1}'') beanCompatType00=\u30af\u30e9\u30b9{0}\u306fBean\u3067\u306f\u306a\u3044\u306e\u3067XML\u30b9\u30ad\u30fc\u30de\u306e\u578b\u306b\u5909\u63db\u3067\u304d\u307e\u305b\u3093\u3002XML\u30b9\u30ad\u30fc\u30de\u306eanyType\u304cwsdl\u30d5\u30a1\u30a4\u30eb\u4e2d\u3067\u3053\u306e\u30af\u30e9\u30b9\u306e\u5b9a\u7fa9\u306b\u5229\u7528\u3055\u308c\u307e\u3059\u3002 / [en]-(The class {0} is not a bean class and cannot be converted into an xml schema type. An xml schema anyType will be used to define this class in the wsdl file.) beanCompatPkg00=\u30af\u30e9\u30b9{0}\u306fjava\u6216\u3044\u306fjavax\u30d1\u30c3\u30b1\u30fc\u30b8\u5185\u3067\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u3044\u307e\u3059\u3002xml\u30b9\u30ad\u30fc\u30de\u306e\u578b\u306b\u5909\u63db\u3067\u304d\u307e\u305b\u3093\u3002XML\u30b9\u30ad\u30fc\u30de\u306eanyType\u304cwsdl\u30d5\u30a1\u30a4\u30eb\u4e2d\u3067\u3053\u306e\u30af\u30e9\u30b9\u306e\u5b9a\u7fa9\u306b\u5229\u7528\u3055\u308c\u307e\u3059\u3002 / [en]-(The class {0} is defined in a java or javax package and cannot be converted into an xml schema type. An xml schema anyType will be used to define this class in the wsdl file.) beanCompatConstructor00=\u30af\u30e9\u30b9{0}\u306f\u30c7\u30d5\u30a9\u30eb\u30c8\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u3092\u542b\u3093\u3067\u3044\u307e\u305b\u3093\u3001\u3053\u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306fBean\u30af\u30e9\u30b9\u3068\u3057\u3066\u306e\u8981\u4ef6\u3067\u3059\u3002\u305d\u306e\u30af\u30e9\u30b9\u306fXML\u30b9\u30ad\u30fc\u30de\u306e\u578b\u306b\u5909\u63db\u3067\u304d\u307e\u305b\u3093. XML\u30b9\u30ad\u30fc\u30de\u306eanyType\u304cwsdl\u30d5\u30a1\u30a4\u30eb\u4e2d\u3067\u3053\u306e\u30af\u30e9\u30b9\u306e\u5b9a\u7fa9\u306b\u5229\u7528\u3055\u308c\u307e\u3059\u3002 / [en]-(The class {0} does not contain a default constructor, which is a requirement for a bean class. The class cannot be converted into an xml schema type. An xml schema anyType will be used to define this class in the wsdl file.) badNamespaceForOperation00=Binding {0} / Operation {1} \u5185\u306e soap:body \u306f\u540d\u524d\u7a7a\u9593\u304c\u7a7a\u3067\u3059 / [en]-(soap:body in Binding {0} / Operation {1} has an empty namespace) missingPartsForMessage00=\u30e1\u30c3\u30bb\u30fc\u30b8 {0} \u306epart\u304c\u3042\u308a\u307e\u305b\u3093 / [en]-(Message {0} has no parts) unsupportedSchemaType00=XML\u30b9\u30ad\u30fc\u30de\u578b''{0}''\u306f\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093 / [en]-(The XML Schema type ''{0}'' is not currently supported.) optionNoWrap00="wrapped"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\uff0f\u6587\u5b57 \u306b\u5bfe\u3059\u308b\u30b5\u30dd\u30fc\u30c8\u3092\u4e2d\u6b62\u3057\u307e\u3059 / [en]-(turn off support for "wrapped" document/literal) noTypeOrElement00=\u30a8\u30e9\u30fc: operation\u306e\u30e1\u30c3\u30bb\u30fc\u30b8part{0} \u6216\u3044\u306f \u30d5\u30a9\u30fc\u30eb\u30c8{1}\u306f\u8981\u7d20\u53c8\u306ftype\u5c5e\u6027\u304c\u3042\u308a\u307e\u305b\u3093 / [en]-(Error: Message part {0} of operation or fault {1} has no element or type attribute.) badattachmenttypeerr=attachment\u306e\u5f62\u5f0f\u306b\u5bfe\u3059\u308b{0}\u306e\u5024\u306f{1}\u3067\u306a\u304f\u3066\u306f\u306a\u308a\u307e\u305b\u3093; / [en]-(The value of {0} for attachment format must be {1};) attach.dimetypeexceedsmax=DIME Type\u306e\u9577\u3055\u304c\u6700\u5927\u5024{0}\u3092\u8d85\u3048\u305f{0}\u3067\u3059 / [en]-(DIME Type length is {0} which exceeds maximum {0}) attach.dimelengthexceedsmax=DIME ID\u306e\u9577\u3055\u304c\u6700\u5927\u5024{1}\u3092\u8d85\u3048\u305f{0}\u3067\u3059 / [en]-(DIME ID length is {0} which exceeds maximum {1}.) attach.dimeMaxChunkSize0=\u6700\u5927\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba\"{0}\"\u306f1\u3088\u308a\u5927\u304d\u3044\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059 / [en]-(Max chunk size \"{0}\" needs to be greater than one.) attach.dimeMaxChunkSize1=\u6700\u5927\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba\"{0}\"\u304c32\u30d3\u30c3\u30c8\u3092\u8d85\u3048\u3066\u3044\u307e\u3059 / [en]-(Max chunk size \"{0}\" exceeds 32 bits.) attach.dimeReadFullyError=\u5404DIME\u30b9\u30c8\u30ea\u30fc\u30e0\u306f\u5b8c\u5168\u306b\u8aad\u8fbc\u307e\u308c\u3066\u3044\u308b\u304b\u30af\u30ed\u30fc\u30ba\u306b\u6210\u529f\u3057\u3066\u3044\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093 / [en]-(Each DIME Stream must be read fully or closed in succession.) attach.dimeNotPaddedCorrectly=DIME\u30b9\u30c8\u30ea\u30fc\u30e0\u30c7\u30fc\u30bf\u304c\u6b63\u3057\u304f\u8a70\u3081\u3089\u308c\u3066\u3044\u307e\u305b\u3093 / [en]-(DIME stream data not padded correctly.) attach.readLengthError=\u8aad\u8fbc\u307f\u306b\"{0}\"\u30d0\u30a4\u30c8\u53d7\u4fe1\u3057\u307e\u3057\u305f / [en]-(Received \"{0}\" bytes to read.) attach.readOffsetError=\u30aa\u30d5\u30bb\u30c3\u30c8\u3068\u3057\u3066\"{0}\"\u53d7\u4fe1\u3057\u307e\u3057\u305f / [en]-(Received \"{0}\" as an offset.) attach.readArrayNullError=\u8aad\u8fbc\u3093\u3060\u914d\u5217\u304cNull\u3067\u3059 / [en]-(Array to read is null) attach.readArrayNullError=\u8aad\u8fbc\u3093\u3060\u914d\u5217\u304cNull\u3067\u3059 / [en]-(Array to read is null) attach.readArraySizeError=\u30aa\u30d5\u30bb\u30c3\u30c8{2}\u3068\u3057\u3066{1}\u3092\u8aad\u8fbc\u3093\u3060\u914d\u5217\u306e\u30b5\u30a4\u30ba{0}\u306f\u5c0f\u3055\u3059\u304e\u307e\u3059 / [en]-(Array size of {0} to read {1} at offset {2} is too small.) attach.DimeStreamError0=\u7269\u7406\u30b9\u30c8\u30ea\u30fc\u30e0\u306e\u6700\u5f8c\u304cDIME\u30c1\u30e3\u30f3\u30af\u304c\u4e88\u60f3\u3092\u8d85\u3048\u305f\u3068\u304d\u306b\u691c\u51fa\u3057\u307e\u3057\u305f / [en]-(End of physical stream detected when more DIME chunks expected.) attach.DimeStreamError1=\u7269\u7406\u30b9\u30c8\u30ea\u30fc\u30e0\u306e\u6700\u5f8c\u304c{0}\u30d0\u30a4\u30c8\u4e88\u60f3\u3092\u8d85\u3048\u305f\u3068\u304d\u306b\u691c\u51fa\u3057\u307e\u3057\u305f / [en]-(End of physical stream detected when {0} more bytes expected.) attach.DimeStreamError2=\u4e88\u671f\u3057\u305fDIME\u30c1\u30e3\u30f3\u30af\u306f\u3082\u3046\u3042\u308a\u307e\u305b\u3093\uff01 / [en]-(There are no more DIME chunks expected!) attach.DimeStreamError3=DIME\u30d8\u30c3\u30c0\u306f{0}\u30d0\u30a4\u30c8\u4ee5\u4e0b\u3067\u3059 / [en]-(DIME header less than {0} bytes.) attach.DimeStreamError4=DIME\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\"{1}\"\u3088\u308a\u3082\u5927\u304d\u306a\"{0}\"\u3067\u3057\u305f / [en]-(DIME version received \"{0}\" greater than current supported version \"{1}\".) attach.DimeStreamError5=DIME\u30aa\u30d7\u30b7\u30e7\u30f3\u9577\"{0}\"\u304c\u30b9\u30c8\u30ea\u30fc\u30e0\u9577\u3088\u308a\u3082\u5927\u304d\u306a\u5024\u3067\u3059 / [en]-(DIME option length \"{0}\" is greater stream length.) attach.DimeStreamError7=DIME\u30b9\u30c8\u30ea\u30fc\u30e0\u304c\u30d1\u30c7\u30a3\u30f3\u30b0\u30aa\u30d7\u30b7\u30e7\u30f3\u5b9f\u884c\u4e2d\u306b\u30af\u30ed\u30fc\u30ba\u3057\u307e\u3057\u305f / [en]-(DIME stream closed during options padding.) attach.DimeStreamError8=DIME\u30b9\u30c8\u30ea\u30fc\u30e0\u304cID\u306e\u9577\u3055\u306e\u53d6\u5f97\u4e2d\u306b\u30af\u30ed\u30fc\u30ba\u3057\u307e\u3057\u305f / [en]-(DIME stream closed getting ID length.) attach.DimeStreamError9=DIME\u30b9\u30c8\u30ea\u30fc\u30e0\u304cID\u306e\u30d1\u30c7\u30a3\u30f3\u30b0\u53d6\u5f97\u4e2d\u306b\u30af\u30ed\u30fc\u30ba\u3057\u307e\u3057\u305f / [en]-(DIME stream closed getting ID padding.) attach.DimeStreamError10=DIME\u30b9\u30c8\u30ea\u30fc\u30e0\u304c\u578b\u306e\u53d6\u5f97\u4e2d\u306b\u30af\u30ed\u30fc\u30ba\u3057\u307e\u3057\u305f / [en]-(DIME stream closed getting type.) attach.DimeStreamError11=DIME\u30b9\u30c8\u30ea\u30fc\u30e0\u304c\u578b\u306e\u30d1\u30c7\u30a3\u30f3\u30b0\u53d6\u5f97\u4e2d\u306b\u30af\u30ed\u30fc\u30ba\u3057\u307e\u3057\u305f / [en]-(DIME stream closed getting type padding.) attach.DimeStreamBadType=DIME\u30b9\u30c8\u30ea\u30fc\u30e0\u304c\u4e0d\u6b63\u306a\u578b\"{0}\"\u3092\u53d7\u4fe1\u3057\u307e\u3057\u305f / [en]-(DIME stream received bad type \"{0}\".) badOutParameter00=\u30db\u30eb\u30c0\u30fc\u306f\u30e1\u30bd\u30c3\u30c9{1}\u306eOUT\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u898b\u3064\u3051\u308b\u6216\u3044\u306f\u69cb\u7bc9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f / [en]-(A holder could not be found or constructed for the OUT parameter {0} of method {1}.) setJavaTypeErr00=ParameterDesc.setJavaType\u30e1\u30bd\u30c3\u30c9\u3078\u6e21\u3057\u305f\u5f15\u6570\u304c\u7121\u52b9\u3067\u3059\u3002java\u306e\u578b{0}\u306f\u30e2\u30fc\u30c9{1}\u3068\u4e00\u81f4\u3057\u307e\u305b\u3093\u3002 / [en]-(Illegal argument passed to ParameterDesc.setJavaType. The java type {0} does not match the mode {1}) badNormalizedString00=\u7121\u52b9\u306aNormalizedString\u30af\u30e9\u30b9\u306e\u5024 / [en]-(Invalid normalizedString value) badToken00=\u7121\u52b9\u306a\u30c8\u30fc\u30af\u30f3\u306e\u5024 / [en]-(Invalid token value) badPropertyDesc00={0}\u306b\u5bfe\u3059\u308b\u30d7\u30ed\u30d1\u30c6\u30a3\u306e\u8a18\u8ff0\u3092\u30d3\u30eb\u30c9\u4e2d\u306b\u767a\u751f\u3057\u305f\u5185\u90e8\u30a8\u30e9\u30fc / [en]-(Internal Error occurred while build the property descriptors for {0}) j2woptinput00=\u5165\u529bWSDL\u30d5\u30a1\u30a4\u30eb\u540d / [en]-(input WSDL filename) j2woptbindingName00=binding\u540d (--servicePortName\u5024 + "SOAPBinding"(\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408)) / [en]-(binding name (--servicePortName value + "SOAPBinding" (if not specified)) badClassFile00=\u30d0\u30a4\u30c8\u30b3\u30fc\u30c9\u3067\u30d1\u30e9\u30e1\u30fc\u30bf\u540d\u3092\u63a2\u3059\u969b\u306e\u30a8\u30e9\u30fc: \u5165\u529b\u306b\u6709\u52b9\u306a\u30af\u30e9\u30b9\u30d5\u30a1\u30a4\u30eb\u304c\u73fe\u308c\u307e\u305b\u3093 / [en]-(Error looking for paramter names in bytecode: input does not appear to be a valid class file) unexpectedEOF00=\u30d0\u30a4\u30c8\u30b3\u30fc\u30c9\u3067\u30d1\u30e9\u30e1\u30fc\u30bf\u540d\u3092\u63a2\u3059\u969b\u306e\u30a8\u30e9\u30fc: \u4e88\u671f\u305b\u306c\u30d5\u30a1\u30a4\u30eb\u306e\u7d42\u4e86\u3067\u3059 / [en]-(Error looking for paramter names in bytecode: unexpected end of file) unexpectedBytes00=\u30d0\u30a4\u30c8\u30b3\u30fc\u30c9\u3067\u30d1\u30e9\u30e1\u30fc\u30bf\u540d\u3092\u63a2\u3059\u969b\u306e\u30a8\u30e9\u30fc: \u30d5\u30a1\u30a4\u30eb\u4e2d\u3067\u4e88\u671f\u305b\u306c\u30d0\u30a4\u30c8\u3067\u3059 / [en]-(Error looking for paramter names in bytecode: unexpected bytes in file) beanCompatExtends00=\u30af\u30e9\u30b9{0}\u306fBean\u3067\u306a\u3044\u30af\u30e9\u30b9{1}\u3092\u62e1\u5f35\u3057\u3066\u3044\u307e\u3059\u3002xml\u30b9\u30ad\u30fc\u30deanyType\u306fwsdl\u30d5\u30a1\u30a4\u30eb\u5185\u3067{0}\u3092\u5b9a\u7fa9\u3059\u308b\u3053\u3068\u306b\u4f7f\u308f\u308c\u307e\u3059\u3002 / [en]-(The class {0} extends non-bean class {1}. An xml schema anyType will be used to define {0} in the wsdl file.) wrongNamespace00=XML\u30b9\u30ad\u30fc\u30de\u578b ''{0}'' \u306f\u30b9\u30ad\u30fc\u30de\u306e\u30d0\u30fc\u30b8\u30e7\u30f3 ''{1}'' \u3067\u6709\u52b9\u3067\u306f\u3042\u308a\u307e\u305b\u3093 / [en]-(The XML Schema type ''{0}'' is not valid in the Schema version ''{1}''.) onlyOneBodyFor12=SOAP1.2 RPC\u3067\u306f\u30dc\u30c7\u30a3\u306f\uff11\u3064\u3057\u304b\u8a31\u3055\u308c\u3066\u3044\u307e\u305b\u3093 / [en]-(Only one body allowed for SOAP 1.2 RPC) noElemAfterBody12=SOAP1.2\u306e\u30dc\u30c7\u30a3\u306e\u5f8c\u306b\u8a31\u3055\u308c\u308b\u8981\u7d20\u306f\u3042\u308a\u307e\u305b\u3093 / [en]-(No element allowed after SOAP 1.2 body) noEncodingStyleAttrAppear=encodingstyle\u5c5e\u6027\u306fSOAP1.2\u306e\u8981\u7d20{0}\u306b\u73fe\u308c\u3066\u306f\u306a\u308a\u307e\u305b\u3093 / [en]-(encodigstyle attribute must not appear in element {0} in SOAP 1.2) noIDandHREFonSameElement=ref\u5c5e\u6027\u3068id\u5c5e\u6027\u306e\u9805\u76ee\u306fSOAP1.2\u306b\u304a\u3044\u3066\u540c\u4e00\u8981\u7d20\u306e\u9805\u76ee\u3068\u3057\u3066"\u6c7a\u3057\u3066\u73fe\u308c\u3066\u306f\u306a\u308a\u307e\u305b\u3093" / [en]-(A ref attribute information item and an id attribute information item MUST NOT appear on the same element information item in SOAP 1.2) invalidEncodingStyle=\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u30b9\u30bf\u30a4\u30eb\u304c\u7121\u52b9\u3067\u3059 / [en]-(Encoding style is invalid) noSparseArray=\u90e8\u5206\u7684\u306b\u8ee2\u9001\u3055\u308c\u305f\u758e\u914d\u5217\u306fSOAP1.2\u3067\u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093 / [en]-(Partially transmitted and sparse arrays is not supported in SOAP 1.2) badMsgMethodParam=message\u30b5\u30fc\u30d3\u30b9\u306fVector\u304bDocument\u3092\uff11\u3064\u4f34\u3063\u3066\u3044\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093 - \u30e1\u30bd\u30c3\u30c9{0}\u306f{1}\u3092\uff11\u3064\u4f34\u3044\u307e\u3059 / [en]-(Message service must take either a single Vector or a Document - method {0} takes a single {1}) # NOTE: in wontOverwrite, do no translate "WSDL2Java". wontOverwrite={0}\u306f\u65e2\u306b\u5b58\u5728\u3057\u3066\u3044\u307e\u3059\u3002WSDL2Java\u306f\u305d\u308c\u3092\u4e0a\u66f8\u304d\u3057\u307e\u305b\u3093\u3002 / [en]-({0} already exists, WSDL2Java will not overwrite it.) badYearMonth00=\u7121\u52b9\u306agYearMonth / [en]-(Invalid gYearMonth) badYear00=\u7121\u52b9\u306agYear / [en]-(Invalid gYear) badMonth00=\u7121\u52b9\u306agMonth / [en]-(Invalid gMonth) badDay00=\u7121\u52b9\u306agDay / [en]-(Invalid gDay) badMonthDay00=\u7121\u52b9\u306agMonthDay / [en]-(Invalid gMonthDay) badDuration=\u30d1\u30bf\u30fc\u30f3\u306b\u4e00\u81f4\u3057\u306a\u3044\u7121\u52b9\u306aduration\u6587\u5b57\u5217 / [en]-(Invalid duration string does not match pattern.) badCalendarForDuration=Calendar\u30af\u30e9\u30b9\u306f\u6b63\u306e\u6642\u9593\u9593\u9694\u3067\u8868\u73fe\u3055\u308c\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093 / [en]-(Calendar must represent a positive time duration.) badDateDuration=\u30d1\u30bf\u30fc\u30f3\u306b\u4e00\u81f4\u3057\u306a\u3044\u7121\u52b9\u306a\u65e5\u4ed8\u6587\u5b57\u5217 / [en]-(Invalid date string does not match pattern.) badTimeDuration=\u30d1\u30bf\u30fc\u30f3\u306b\u4e00\u81f4\u3057\u306a\u3044\u6642\u9593\u6587\u5b57\u5217 / [en]-(Invalid time string does not match pattern.) needSimpleValueSer=\u30af\u30e9\u30b9{0}\u306e\u30b7\u30ea\u30a2\u30e9\u30a4\u30b6\u306fSimpleValueSerializer\u3092\u5b9f\u88c5\u3057\u3066\u3044\u307e\u305b\u3093\u3001\u305d\u308c\u306f\u5c5e\u6027\u306b\u5bfe\u3057\u3066\u5fc5\u8981\u3067\u3059\u3002 / [en]-(Serializer class {0} does not implement SimpleValueSerializer, which is necessary for attributes.) # NOTE: in needImageIO, do not translate "JIMI", "java.awt.Image", "http://java.sun.com/products/jimi/" needImageIO=JIMI\u306fjava.awt.Image\u30af\u30e9\u30b9\u306e\u6dfb\u4ed8\u306b\u5fc5\u8981\u3067\u3059 (http://java.sun.com/products/jimi/) / [en]-(JIMI is necessary to use java.awt.Image attachments (http://java.sun.com/products/jimi/).) wsddServiceName00=WSDD\u30b5\u30fc\u30d3\u30b9\u540d\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f\u30dd\u30fc\u30c8\u540d\u3067\u3059 / [en]-(The WSDD service name defaults to the port name.) badSource=javax.xml.transform.Source\u306e\u5b9f\u88c5\u306f\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u305b\u3093: {0} / [en]-(javax.xml.transform.Source implementation not supported: {0}.) serviceDescOperSync00={0}\u306b\u5bfe\u3059\u308bOperationDesc\u304c{1}\u306e\u30e1\u30bd\u30c3\u30c9\u3068\u540c\u671f\u304c\u3068\u308c\u3066\u3044\u307e\u305b\u3093\u3067\u3057\u305f / [en]-(The OperationDesc for {0} was not synchronized to a method of {1}.) noServiceClass=\u30b5\u30fc\u30d3\u30b9\u30af\u30e9\u30b9\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\uff01className\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u304b\uff1f / [en]-(No service class was found! Are you missing a className option?) jpegOnly={0}\u3092\u6271\u3048\u307e\u305b\u3093\u3001JPEG\u306e\u753b\u50cf\u30bf\u30a4\u30d7\u306e\u307f\u6271\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002 / [en]-(Cannot handle {0}, can only handle JPEG image types.) engineFactory=EngineFactory\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u53d6\u5f97: {0} / [en]-(Got EngineFactory: {0}) engineConfigMissingNewFactory=\u7121\u8996\u3055\u308c\u305ffactory {0}: \u8981\u6c42\u3055\u308c\u305f\u30e1\u30bd\u30c3\u30c9: {1}\u304c\u4e0d\u660e / [en]-(Factory {0} Ignored: missing required method: {1}.) engineConfigInvokeNewFactory=\u7121\u8996\u3055\u308c\u305ffactory {0}: \u30e1\u30bd\u30c3\u30c9\u306e\u547c\u51fa\u3057\u5931\u6557: {1} / [en]-(Factory {0} Ignored: invoke method failed: {1}.) engineConfigFactoryMissing=\u5915\u523b\u540dEngineConfigurationFactory\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u914d\u7f6e\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093 / [en]-(UnableUnable to locate a valid EngineConfigurationFactory) engineConfigLoadFactory=\u7121\u8996\u3055\u308c\u305ffactory {0}: \u30af\u30e9\u30b9\u306e\u30ed\u30fc\u30c9\uff0f\u89e3\u6c7a\u304c\u3067\u304d\u307e\u305b\u3093 / [en]-(Factory {0} Ignored: unable to load/resolve class.) noClassNameAttr00=classname\u5c5e\u6027\u304c\u4e0d\u660e\u3067\u3059 / [en]-(classname attribute is missing.) noValidHeader=qname\u5c5e\u6027\u304c\u4e0d\u660e\u3067\u3059 / [en]-(qname attribute is missing.) badNonNegInt00=\u7121\u52b9\u306anonNegativeInteger\u30aa\u30d6\u30b8\u30a7\u30af\u30c8 / [en]-(Invalid nonNegativeInteger) undefinedElem00=\u8981\u7d20{0}\u306f\u53c2\u7167\u3055\u308c\u307e\u3059\u304c\u672a\u5b9a\u7fa9\u3067\u3059 / [en]-(Element {0} is referenced but not defined.) emptyref00=\u30a8\u30e9\u30fc: \u30ce\u30fc\u30c9 ''{0}'' \u306b\u5bfe\u3059\u308b\u578b\u53c8\u306fref\u5c5e\u6027\u304c\u4e0d\u660e / [en]-(Error: missing type or ref attribute for node ''{0}'') absentRef00=\u30a8\u30e9\u30fc: \u578b ''{1}''\u306b\u5bfe\u3057\u3066\u53c2\u7167\u3055\u308c\u308b\u578b ''{0}''\u3092\u898b\u3064\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093 / [en]-(Error: Cannot find referenced type ''{0}'' for type ''{1}'') cannotConnectError=\u63a5\u7d9a\u4e0d\u53ef / [en]-(Unable to connect) unabletoDeployTypemapping00=TypeMapping\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u30c7\u30d7\u30ed\u30a4\u3067\u304d\u307e\u305b\u3093: {0} / [en]-(Unable to deploy typemapping: {0}) badWSDDOperation=WSDD operation "{0}"(\u5f15\u6570{1})\u306b\u5bfe\u3057\u3066\u4e00\u81f4\u3059\u308bJava\u306e\u64cd\u4f5c\u3092\u898b\u3064\u3051\u3089\u308c\u307e\u305b\u3093\u3067\u3057\u305f / [en]-(Couldn''t find a matching Java operation for WSDD operation "{0}" ({1} args)) badMsgMethodStyle=message-based\u306a\u30b5\u30fc\u30d3\u30b9\u306b\u5bfe\u3059\u308b\u30e1\u30bd\u30c3\u30c9\u306e\u30b9\u30bf\u30a4\u30eb\u304c\u8a8d\u8b58\u3057\u3066\u3044\u308b\u3082\u306e\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3067\u3057\u305f\uff01 / [en]-(Method style for message-based service wasn''t one we recognized!) badMsgMethodParams=\u30e1\u30bd\u30c3\u30c9 ''{0}''\u306fmessage-style\u306e\u30b5\u30fc\u30d3\u30b9\u30e1\u30bd\u30c3\u30c9\u306b\u5bfe\u3057\u3066\u6709\u52b9\u306a\u7f72\u540d\u306e\u3069\u308c\u3068\u3082\u4e00\u81f4\u3057\u307e\u305b\u3093 / [en]-(Method ''{0}'' does not match any of the valid signatures for message-style service methods) unmatchedOp=binding operation\u306f\u5bfe\u5fdc\u3059\u308bportType operation\u3092\uff11\u3064\u3082\u6301\u3061\u307e\u305b\u3093: name = {0}, input name = {1}, output name = {2} / [en]-(Binding operation has no corresponding portType operation: name = {0}, input name = {1}, output name = {2}) noOperationForQName=XML QName {0}\u306b\u5bfe\u3059\u308b\u9069\u5207\u306aoperation\u3092\u898b\u3064\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f / [en]-(Couldn''t find an appropriate operation for XML QName {0}) noParmDesc=OperationDesc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304cparamDesc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u898b\u5931\u3063\u3066\u3044\u307e\u3059\uff01 / [en]-(operation description is missing parameter description!) noPortTypeFault=\u30a8\u30e9\u30fc: PortType\u30d5\u30a9\u30fc\u30eb\u30c8\u3078\u306ebinding{2}\u3001operation"{1}"\u304b\u3089\u306ebinding\u30d5\u30a9\u30fc\u30eb\u30c8"{0}\u3068\u4e00\u81f4\u3057\u307e\u305b\u3093\u3002 / [en]-(ERROR: Unable to match binding fault "{0}" from binding {2}, operation "{1}", to a PortType fault.) unNamedFault00=\u30a8\u30e9\u30fc: \u30d5\u30a9\u30fc\u30eb\u30c8\u304c\u540d\u79f0= binding{1}\u3001operation"{0}"\u306e\u5c5e\u6027\u3092\u898b\u5931\u3063\u3066\u3044\u307e\u3059 / [en]-(ERROR: Fault is missing a name= attribute in operation "{0}", in binding {1}.) missingSoapFault00=\u30a8\u30e9\u30fc: binding{1}\u3001operation"{0}\u306e\u30d5\u30a9\u30fc\u30eb\u30c8"{0}"\u3067\u306e\u4e0d\u660e\u306a<soap:fault>\u8981\u7d20 / [en]-(ERROR: Missing <soap:fault> element inFault "{0}" in operation "{0}", in binding {1}) expectedHeaderParam=soap:header \u306e\u4ee3\u308f\u308a\u306b soap:body \u306b\u304a\u3044\u3066{0}\u306b\u5bfe\u3059\u308b\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u30c7\u30fc\u30bf\u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f / [en]-(Found instance data for {0} in the soap:body instead of the soap:header.) noReturnParam=\u6307\u5b9a\u3055\u308c\u305f\u8fd4\u308a\u5024 QName {0} \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\uff01 / [en]-(Didn''t find specified return QName {0}!) noMsg=\u30e1\u30c3\u30bb\u30fc\u30b8{0}\u306b\u5bfe\u3059\u308b\u30b7\u30f3\u30dc\u30eb\u30c6\u30fc\u30d6\u30eb\u306e\u30a8\u30f3\u30c8\u30ea\u304c\u3042\u308a\u307e\u305b\u3093 / [en]-(No symbol table entry found for message {0}) j2woptUse00=binding\u5185\u306e\u9805\u76ee\u3067\u5229\u7528\u3067\u304d\u308b\u306e\u306f LITERAL \u304b ENCODED \u3067\u3059 / [en]-(The use of items in the binding, either LITERAL or ENCODED) j2woptBadUse00=use\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u5024\u306f LITERAL \u304b ENCODED \u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093 / [en]-(The value of the use option must be LITERAL or ENCODED) j2woptExtraClasses00=type\u30bb\u30af\u30b7\u30e7\u30f3\u3078\u8ffd\u52a0\u3055\u308c\u305f\u7a7a\u767d\u304b\u30ab\u30f3\u30de\u3067\u533a\u5207\u3089\u308c\u305f\u30af\u30e9\u30b9\u540d\u306e\u30ea\u30b9\u30c8 / [en]-(A space or comma separated list of class names to be added to the type section.) j2woptBadClass00=--extraClasses\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u4e0e\u3048\u3089\u308c\u305f\u7121\u52b9\u306a\u30af\u30e9\u30b9: {0} / [en]-(Invalid class provided for --extraClasses option: {0}) operationAlreadySet=setOperation()\u30e1\u30bd\u30c3\u30c9\u3067\u30bb\u30c3\u30c8\u3057\u305fOperationDesc\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u6301\u3064Call\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u8a2d\u5b9a\u306f\u4fee\u6b63\u3067\u304d\u307e\u305b\u3093 / [en]-(Can''t modify settings on a Call whose OperationDesc was set by setOperation()) illegalStateException00=IllegalStateException: unsupportedOperationException00=UnsupportedOperationException00: badIdType00=\u7121\u52b9\u306aId / [en]-(Invalid Id) badLanguage00=\u7121\u52b9\u306a\u8a00\u8a9e / [en]-(Invalid language) noContainerForAnonymousType=makeTypeElement()\u30e1\u30bd\u30c3\u30c9\u306f\u8981\u7d20\u3092\u542b\u307e\u306a\u3044\u3001type"{0}"\u3092\u751f\u6210\u3059\u308b\u3053\u3068\u306b\u4f7f\u308f\u308c\u307e\u3057\u305f / [en]-(makeTypeElement() was told to create a type "{0}", with no containing element) cantLoadByecode=\u30af\u30e9\u30b9"{0}"\u306b\u5bfe\u3059\u308b\u30d0\u30a4\u30c8\u30b3\u30fc\u30c9\u306e\u30ed\u30fc\u30c9\u304c\u3067\u304d\u307e\u305b\u3093 / [en]-(Unable to load bytecode for class "{0}") wsdlFileMissing=WSDL\u30d5\u30a1\u30a4\u30eb\u53c8\u306f\u30ea\u30bd\u30fc\u30b9{0}\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093 / [en]-(Unable to find WSDL file or resource {0}) nullEngine=SOAPService.setEngine()\u30e1\u30bd\u30c3\u30c9\u306b\u6e21\u3055\u308c\u308b\u30a8\u30f3\u30b8\u30f3\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304cNull\u3067\u3059\uff01 / [en]-(Null engine passed to SOAPService.setEngine()!) servletEngineWebInfError03=\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002\u30b5\u30fc\u30d6\u30ec\u30c3\u30c8\u30a8\u30f3\u30b8\u30f3\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u751f\u6210\u3057\u307e\u3059: {0} / [en]-(Unable to find config file. Creating new servlet engine config file: {0}) nsToPkgFileNotFound00=\u30a8\u30e9\u30fc: \u540d\u524d\u7a7a\u9593-\u30d1\u30c3\u30b1\u30fc\u30b8\u540d\u30de\u30c3\u30d4\u30f3\u30b0\u30d5\u30a1\u30a4\u30eb"{0}"\u3092\u958b\u3051\u307e\u305b\u3093 / [en]-(ERROR: Unable to open namespace-to-package mapping file "{0}".) nsToPkgFileLoaded00=\u60c5\u5831: \u540d\u524d\u7a7a\u9593-\u30d1\u30c3\u30b1\u30fc\u30b8\u540d\u30de\u30c3\u30d4\u30f3\u30b0\u30d5\u30a1\u30a4\u30eb"{0}"\u3092\u8aad\u8fbc\u307f\u307e\u3057\u305f / [en]-(INFO: Loaded namespace-to-package mapping file "{0}".) nsToPkgDefaultFileLoaded00=\u60c5\u5831: \u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u540d\u524d\u7a7a\u9593-\u30d1\u30c3\u30b1\u30fc\u30b8\u540d\u30de\u30c3\u30d4\u30f3\u30b0\u30d5\u30a1\u30a4\u30eb"{0}"\u3092java\u30ea\u30bd\u30fc\u30b9\u3068\u3057\u3066\u8aad\u8fbc\u307f\u307e\u3057\u305f / [en]-(INFO: Loaded default namespace-to-package mapping file "{0}" as java resource.) missingPortNameException=<port>\u8981\u7d20\u306b\u5bfe\u3059\u308b\u5b9a\u7fa9\u6e08\u306ename\u304c\u3042\u308a\u307e\u305b\u3093\u3002\u30d2\u30f3\u30c8: port\u5b9a\u7fa9\u306b"name"\u5c5e\u6027\u3092\u8ffd\u52a0\u3057\u3066\u4e0b\u3055\u3044\u3002(\u4f8b: <port name="...">) / [en]-(No name defined for <port> element. Hint: add an attribute "name" to the port definition, i.e. <port name="...">) missingBindingException=<port>\u8981\u7d20\u306b\u5bfe\u3059\u308b\u5b9a\u7fa9\u6e08\u306ebinding\u304c\u3042\u308a\u307e\u305b\u3093\u3002\u30d2\u30f3\u30c8: port\u5b9a\u7fa9\u306b"binding"\u5c5e\u6027\u3092\u8ffd\u52a0\u3057\u3066\u4e0b\u3055\u3044\u3002(\u4f8b: <port binding="...">) / [en]-(No binding defined for <port> element. Hint: add an attribute "binding" to he port definition, i.e. <port binding="...">) twoPortsWithSameName=\u540c\u4e00\u540d\u79f0"{0}"\u3067<port>\u8981\u7d20\u304c2\u3064\u898b\u3064\u304b\u308a\u307e\u3057\u305f\u3002\u30d2\u30f3\u30c8: WSDL\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u5185\u3067\u5168\u3066\u306eport\u8981\u7d20\u306e\u4e2d\u3067\u306f\u30e6\u30cb\u30fc\u30af\u306a\u540d\u79f0\u3092\u9078\u3093\u3067\u4e0b\u3055\u3044\u3002 / [en]-(Two <port> elements with the same name "{0}" found. Hint: choose unique names among all port elements in a WSDL document.) acUsage00=\u7ba1\u7406\u30b3\u30de\u30f3\u30c9\u7fa4\u306e\u51e6\u7406 / [en]-(Processes a set of administration commands.) acUsage01= acUsage02=\u6b21\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u5229\u7528\u53ef\u80fd\u3067\u3059: / [en]-(The following Options are available:) acUsage03= acUsage04=\t-l<url> AxisServlet\u306eURL\u3092\u30bb\u30c3\u30c8 / [en]-(\t-l<url> sets the AxisServlet URL) acUsage05=\t-h<hostName> AxisServlet\u306e\u30db\u30b9\u30c8\u540d\u3092\u30bb\u30c3\u30c8 / [en]-(\t-h<hostName> sets the AxisServlet host) acUsage06=\t-p<portNumber> AxisServlet\u306e\u30dd\u30fc\u30c8\u3092\u30bb\u30c3\u30c8 / [en]-(\t-p<portNumber> sets the AxisServlet port) acUsage07=\t-s<servletPath> AxisServlet\u3078\u306e\u30d1\u30b9\u3092\u30bb\u30c3\u30c8 / [en]-(\t-s<servletPath> sets the path to the AxisServlet) acUsage08=\t-f<fileName> \u4f7f\u7528\u3055\u308c\u308b\u3079\u304d\u5358\u4e00\u306e\u30d7\u30ed\u30c8\u30b3\u30eb\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a / [en]-(\t-f<fileName> specifies that a simple file protocol should be used) acUsage09=\t-u<username> \u30e6\u30fc\u30b6\u540d\u3092\u30bb\u30c3\u30c8 / [en]-(\t-u<username> sets the username) acUsage10=\t-w<password> \u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u30bb\u30c3\u30c8 / [en]-(\t-w<password> sets the password) acUsage11=\t-d \u30c7\u30d0\u30c3\u30b0\u30d5\u30e9\u30b0\u3092\u30bb\u30c3\u30c8(\u4f8b: -ddd\u306e\u5834\u54083\u306b\u30bb\u30c3\u30c8) / [en]-(\t-d sets the debug flag (for instance, -ddd would set it to 3)) acUsage12=\t-t<name> \u4f7f\u7528\u3059\u308b\u30c8\u30e9\u30f3\u30b9\u30dd\u30fc\u30c8\u30c1\u30a7\u30a4\u30f3\u3092\u30bb\u30c3\u30c8 / [en]-(\t-t<name> sets the transport chain to use) acUsage13= acUsage14=\u30b3\u30de\u30f3\u30c9: / [en]-(Commands:) acUsage15= acUsage16=\tlist \u73fe\u5728\u30c7\u30d7\u30ed\u30a4\u6e08\u306e\u30b5\u30fc\u30d3\u30b9\u4e00\u89a7 / [en]-(\tlist will list the currently deployed services) acUsage17=\tquit SimpleAxisServer\u3078\u306e\u7d42\u4e86\u30e1\u30c3\u30bb\u30fc\u30b8\u9001\u4fe1 / [en]-(\tquit will send a quit message to SimpleAxisServer) acUsage18=\tpasswd \u7ba1\u7406\u30d1\u30b9\u30ef\u30fc\u30c9\u5024\u5909\u66f4 / [en]-(\tpasswd value changes the admin password) acUsage19= acUsage20=Deployment Descriptor\u30d5\u30a1\u30a4\u30eb: / [en]-(Deployment Descriptor files:) acUsage21= acUsage22=<deployment-descriptor-files>\u306fAxis\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8\u3068 / [en]-(<deployment-descriptor-files> deploys or undeploys Axis components and) acUsage23=\u3053\u308c\u3089\u306e\u30d5\u30a1\u30a4\u30eb\u3067\u8a18\u8ff0\u3055\u308c\u305fWeb\u30b5\u30fc\u30d3\u30b9\u3092\u30c7\u30d7\u30ed\u30a4(\u30a2\u30f3\u30c7\u30d7\u30ed\u30a4\uff09\u3057\u307e\u3059 / [en]-(web services described in these files) acUsage24= acUsage25=-l, -h, -p, -s\u306e\u4f55\u308c\u304b\u304c\u30bb\u30c3\u30c8\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u3001AdminClient\u306f / [en]-(If -l or -h -p -s are not set, the AdminClient will invoke) acUsage26=http://localhost:8080/axis/servlet/AxisServlet \u3092\u547c\u3073\u51fa\u3057\u307e\u3059 / [en]-(http://localhost:8080/axis/servlet/AxisServlet) foundJWS00=\u3053\u3053\u306bWeb\u30b5\u30fc\u30d3\u30b9\u304c\u3042\u308a\u307e\u3059 / [en]-(There is a Web Service here) #NOTE in foundJWS01, do not translate WSDL foundJWS01=WSDL\u3092\u898b\u308b\u305f\u3081\u306b\u30af\u30ea\u30c3\u30af\u3057\u3066\u4e0b\u3055\u3044 / [en]-(Click to see the WSDL) noCharacterOrByteStream=InputSource\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306f\u6587\u5b57\u30b9\u30c8\u30ea\u30fc\u30e0\u3082\u30d0\u30a4\u30c8\u30b9\u30c8\u30ea\u30fc\u30e0\u3082\u6301\u3061\u307e\u305b\u3093 / [en]-(InputSource has neither character stream nor byte stream) couldNotReadFromCharStream=\u6587\u5b57\u30b9\u30c8\u30ea\u30fc\u30e0\u304b\u3089\u8aad\u8fbc\u307f\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f / [en]-(Could not read from character stream) errorGetDocFromSOAPEnvelope=SOAPEnvelope\u304b\u3089\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u53d6\u5f97\u306b\u5931\u6557\u3057\u307e\u3057\u305f / [en]-(Could not get document from SOAPEnvelope) badEjbHomeType=JNDI\u304b\u3089\u691c\u7d22\u3057\u305f\u30db\u30fc\u30e0\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306f\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u5185\u3067\u6307\u5b9a\u3055\u308c\u305f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3068\u3057\u3066\u540c\u3058\u578b\u3092\u6301\u3061\u307e\u305b\u3093 / [en]-(The home object retrieved from jndi does not have the same type as the one specified in the config file) badEncodingStyle=\u672a\u77e5\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u30b9\u30bf\u30a4\u30eb / [en]-(Unknown encoding style) badEncodingStyle1=\u672a\u77e5\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u30b9\u30bf\u30a4\u30eb: {0} / [en]-(Unknown encoding style : {0}) badSOAPHeader00=SOAPHeaer\u306f\u4e2d\u9593\u5b50\u30ce\u30fc\u30c9\u3068\u3057\u3066SOAPHeaderElement\u306e\u307f\u3092\u6301\u3063\u3066\u3044\u308b\u304b\u3082\u3057\u308c\u307e\u305b\u3093 / [en]-(a SOAPHeader may only have SOAPHeaderElement as its immediate children) noNamespace00=\u4e0d\u6b63\u306a(\u540d\u524d\u7a7a\u9593\u304c\u306a\u3044)QName\u306b\u5bfe\u3057\u3066\u30b9\u30ad\u30fc\u30de\u3092\u66f8\u8fbc\u3082\u3046\u3068\u3057\u307e\u3057\u305f: {0} / [en]-(Attempted to write schema for bad QName (no namespace) : {0}) charsInArray=\u30c7\u30b7\u30ea\u30a2\u30e9\u30a4\u30ba\u4e2d\u306b\u914d\u5217\u8981\u7d20\u5185\u90e8\u306b\u6587\u5b57\u30c7\u30fc\u30bf\u3092\u898b\u3064\u3051\u307e\u3057\u305f / [en]-(Found character data inside an array element while deserializing) seqHashMapConcurrentModificationException00=\u571f\u53f0\u3068\u306a\u3063\u3066\u3044\u308b\u30de\u30c3\u30d7\u5185\u3067\u4fee\u6b63\u304c\u767a\u751f\u3057\u3066\u3044\u307e\u3059 / [en]-(modification has occured in the underlying map) seqHashMapNoSuchElementException00=Iterator\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u5185\u306b\u3082\u3046\u8981\u7d20\u306f\u3042\u308a\u307e\u305b\u3093 / [en]-(there are no more elements in the iterator) seqHashMapBadIteratorType01=\u4e0d\u6b63\u306aIterator\u306e\u578b: {0} / [en]-(bad iterator type: {0}) seqHashMapIllegalStateException00=remove()\u30e1\u30bd\u30c3\u30c9\u306fnext()\u30e1\u30bd\u30c3\u30c9\u306b\u5f93\u308f\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093 / [en]-(remove() must follow next()) duplicateSchemaElement=\u91cd\u8907\u3059\u308b\u30b9\u30ad\u30fc\u30de\u306e\u8981\u7d20\u3092\u66f8\u8fbc\u3082\u3046\u3068\u3057\u307e\u3057\u305f: {0} / [en]-(Attempted to write duplicate schema element : {0}) autoRegServletInit00=WSDD\u30d5\u30a1\u30a4\u30eb\u3092\u81ea\u52d5\u767b\u9332 / [en]-(Auto registering WSDD files) autoRegServletLoaded01={0}\u306e\u30ed\u30fc\u30c9 / [en]-(Loaded {0}) autoRegServletApplyAndSaveSettings00=applyAndSaveSettings()\u30e1\u30bd\u30c3\u30c9 / [en]-(applyAndSaveSettings()) autoRegServletLoadFailed01={0}\u306e\u30ed\u30fc\u30c9\u5931\u6557 / [en]-(Failed to load {0}) happyClientNoAxis=Axis\u304c\u6a5f\u80fd\u3057\u307e\u305b\u3093 / [en]-(Axis will not work) happyClientNoAttachments=Attachments\u304c\u6a5f\u80fd\u3057\u307e\u305b\u3093 / [en]-(Attachments will not work) happyClientNoSecurity=XML Security\u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u305b\u3093 / [en]-(XML Security is not supported) happyClientNoHTTPS=HTTPS\u306f\u5229\u7528\u3067\u304d\u307e\u305b\u3093 / [en]-(HTTPS is not available) #note in happyClientNoLog4J do not translate Log4J happyClientNoLog4J=\u30ed\u30ae\u30f3\u30b0\u306bLog4J\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u305b\u3093 / [en]-(Logging will not use Log4J) #note, in happyClientRecommendXerces do not translate xerces, or the URL happyClientRecommendXerces=Axis\u3067\u306fXML\u30d1\u30fc\u30b5\u3068\u3057\u3066Xerces2 (http://xml.apache.org/xerces2-j) \u3092\u63a8\u5968\u3057\u307e\u3059 / [en]-(Axis recommends Xerces2 (http://xml.apache.org/xerces2-j) as the XML Parser) happyClientUnsupportedJVM=Axis\u306f\u3053\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u306eJava\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u305b\u3093 - \u66f4\u65b0\u3057\u3066\u4e0b\u3055\u3044 / [en]-(Axis does not support this version of Java -please upgrade) happyClientNoParser=XML\u30d1\u30fc\u30b5\u3092\u751f\u6210\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f / [en]-(Could not create an XML Parser) happyClientXMLinfo=XML\u30d1\u30fc\u30b5\u306f {1} \u304b\u3089 {0} \u3067\u3059 / [en]-(XML Parser is {0} from {1}) happyClientJSSEsources=jsse.jar\u3001Java1.4\u6216\u3044\u306f\u305d\u308c\u4ee5\u964d / [en]-(jsse.jar or Java1.4 or later) happyClientFoundDescriptionClassLocation={2}\u3067{0}({1})\u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f / [en]-(Found {0} ({1}) \n at {2}) happyClientFoundDescriptionClass={0}({1})\u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f / [en]-(Found {0} ({1})) happyClientWarning=\u30a8\u30e9\u30fc / [en]-(Error) happyClientError=\u8b66\u544a / [en]-(Warning) happyClientUnknownLocation=\u672a\u77e5\u306e\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3 / [en]-(an unknown location) happyClientNoResource=\u8b66\u544a: \u30ea\u30bd\u30fc\u30b9{0}\u3092\u898b\u3064\u3051\u3089\u308c\u307e\u305b\u3093\u3067\u3057\u305f / [en]-(Warning: could not find resource {0}) happyClientFoundResource=\u30ea\u30bd\u30fc\u30b9{0}\u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f / [en]-(Found resource {0}) happyClientHomepage=Web\u30da\u30fc\u30b8{0}\u3092\u95b2\u89a7\u3057\u3066\u4e0b\u3055\u3044 / [en]-(See the web page {0}) happyClientMissingClass={0}: \u30d5\u30a1\u30a4\u30eb{2}\u304b\u3089\u30af\u30e9\u30b9{1}\u3092\u898b\u3064\u3051\u3089\u308c\u307e\u305b\u3093\u3067\u3057\u305f / [en]-({0}: could not find class {1} from file {2}) happyClientNoDependency={0}\u306f\u30d5\u30a1\u30a4\u30eb{2}\u304b\u3089\u30af\u30e9\u30b9{1}\u306e\u4f9d\u5b58\u6027\u3092\u898b\u3064\u3051\u3089\u308c\u307e\u305b\u3093\u3067\u3057\u305f / [en]-({0} could not find a dependency of class {1} from file {2}) happyClientTitle=\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u8a2d\u5b9a\u306e\u691c\u8a3c / [en]-(Validating client configuration) happyClientNeeded=\u5fc5\u8981\u3068\u3059\u308b\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8 / [en]-(Needed components) happyClientOptional=\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8 / [en]-(Optional components) happyClientSummary=\u6982\u8981 / [en]-(Summary) happyClientCorePresent=\u30b3\u30a2Axis\u30e9\u30a4\u30d6\u30e9\u30ea\u306f\u5b58\u5728\u3057\u307e\u3059 / [en]-(The core Axis libraries are present) happyClientCoreMissing=Axis\u306f{0}\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8\u3092\u898b\u3064\u3051\u3089\u308c\u307e\u305b\u3093 / [en]-(Axis is missing {0} component(s)) happyClientOptionalPresent=\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8\u304c\u5b58\u5728\u3057\u307e\u3059. / [en]-(The optional components are present.) happyClientOptionalMissing=Axis\u306f{0}\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8\u3092\u898b\u3064\u3051\u3089\u308c\u307e\u305b\u3093 / [en]-(Axis is missing {0} component(s)) happyClientOptionalOK=\u4e0e\u3048\u3089\u308c\u305f\u4e0d\u660e\u306a\u6a5f\u80fd\u306f\u5fc5\u8981\u3068\u3055\u308c\u307e\u305b\u3093\u3001\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u306f\u6a5f\u80fd\u3059\u308b\u3067\u3057\u3087\u3046\u3002 / [en]-(Provided the missing functionality is not needed, the client will work) happyClientWarningMessageCount={0}\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u51fa\u529b\u3055\u308c\u307e\u3057\u305f / [en]-({0} warning message(s) were printed) noService10=\u30b5\u30fc\u30d3\u30b9\u540d{0}\u306f\u5229\u7528\u3067\u304d\u307e\u305b\u3093 / [en]-(No service named {0} is available) #note, in adminServiceNoWSDD, do not translate WSDD adminServiceNoWSDD=\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51e6\u7406\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f - \u6709\u52b9\u306aWSDD\u8a18\u8ff0\u5b50\u3067\u3059\u304b\uff1f / [en]-(Unable to process the message -was it a valid WSDD descriptor?) failedJMSConnectorShutdown=JMSConnector\u3067\u306e\u30b7\u30e3\u30c3\u30c8\u30c0\u30a6\u30f3\u5931\u6557 / [en]-(Shutdownfailure in JMSConnectorShutdown) clientNoTypemapping=\u30d5\u30a9\u30fc\u30eb\u30c8{0}\u306b\u5bfe\u3059\u308bJava\u30af\u30e9\u30b9\u306e\u578b\u30de\u30c3\u30d4\u30f3\u30b0\u304c\u3042\u308a\u307e\u305b\u3093 / [en]-(There is no Java class typemapping for the fault {0}) clientNoReturnClass=\u8fd4\u5374Java\u30af\u30e9\u30b9{0}\u306e\u30ed\u30fc\u30c9\u5931\u6557 / [en]-(Failed to load the Java return class {0}) noAppSession=application\u30bb\u30c3\u30b7\u30e7\u30f3\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u3042\u308a\u307e\u305b\u3093\uff01\u30c7\u30d5\u30a9\u30eb\u30c8\u306frequest\u30b9\u30b3\u30fc\u30d7\u3067\u3059... / [en]-(No application session object! Defaulting to request scope...) badMUVal=''{0}'' \u306f\u8981\u7d20{1}\u4e0a\u306emustUnderstand\u5c5e\u6027\u306b\u5bfe\u3057\u3066\u6709\u52b9\u306a\u5024\u3067\u306f\u3042\u308a\u307e\u305b\u3093 / [en]-(''{0}'' is not a valid value for the mustUnderstand attribute on element {1}) outputParamsUnavailable=output\u30d1\u30e9\u30e1\u30fc\u30bf\u306f\u547c\u51fa\u3055\u308c\u305finvoke()\u30e1\u30bd\u30c3\u30c9\u306e\u5f8c\u3067\u306e\u307f\u5229\u7528\u53ef\u80fd\u3067\u3059 / [en]-(output parameters are only available after invoke() has been called) serviceFactoryIllegalServiceInterface=serviceInterface\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306fNull\u3067\u3042\u3063\u3066\u306f\u306a\u308a\u307e\u305b\u3093 / [en]-(serviceInterface must not be null) serviceFactoryServiceInterfaceRequirement={0}\u306fjavax.xml.rpc.Service\u306e\u62e1\u5f35\u3092\u8981\u6c42\u3055\u308c\u3066\u3044\u307e\u3059 / [en]-({0} is required to extend javax.xml.rpc.Service) serviceFactoryServiceImplementationNotFound={0}\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093 / [en]-({0} is not found) serviceFactoryServiceImplementationRequirement={0}\u306forg.apache.axis.client.Service\u306e\u62e1\u5f35\u3092\u8981\u6c42\u3055\u308c\u3066\u3044\u307e\u3059 / [en]-({0} is required to extend org.apache.axis.client.Service) serviceFactoryInvalidServiceName=\u30b5\u30fc\u30d3\u30b9\u540d\u306fNull\u3067\u3042\u3063\u3066\u306f\u306a\u308a\u307e\u305b\u3093 / [en]-(Service name must not be null) ignoringNonFatalException00=\u81f4\u547d\u7684\u3067\u306a\u3044\u4f8b\u5916\u306f\u7121\u8996\u3057\u307e\u3059 / [en]-(Ignoring non-fatal exception) incompatibleSEI00=\u4e00\u81f4\u3057\u306a\u3044\u30b5\u30fc\u30d3\u30b9\u306e\u30a8\u30f3\u30c9\u30dd\u30a4\u30f3\u30c8\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9: {0} / [en]-(Incompatible service endpoint interface: {0}) indexOutOfBoundsException00=IndexOutOfBoundsException\u767a\u751f: / [en]-(IndexOutOfBoundsException:) saxToDomFailed00=SAX\u304b\u3089DOM\u3078\u306e\u5c5e\u6027\u5909\u63db\u4e2d\u306b\u4f8b\u5916\u3092\u30ad\u30e3\u30c3\u30c1\u3057\u307e\u3057\u305f / [en]-(Exception caught while converting attributes from SAX to DOM) cannotFindPartForOperation00=MIMEContent\u306etype [{2}] \u3092\u4f7f\u7528\u3059\u308boperation [{1}] \u306epart [{0}] \u3092\u898b\u3064\u3051\u3089\u308c\u307e\u305b\u3093 / [en]-(Cannot find part [{0}] for operation [{1}] using MIMEContent type [{2}]) Registrar.cantregister=commons-modeler\u30ec\u30b8\u30b9\u30c8\u30ea\u306e\u521d\u671f\u5316\u304c\u3067\u304d\u307e\u305b\u3093 / [en]-(Unable to initialize commons-modeler Registry.) handlerInfoChainNoClass00=''HandlerInfoChain'' \u30af\u30e9\u30b9\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f: ''{0}'' / [en]-(''HandlerInfoChain'' class not found: ''{0}'')

org/apache/axis/management/Registrar$ModelerBinding.class

                    package org.apache.axis.management;

                    synchronized 
                    class Registrar$ModelerBinding {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    Object 
                    registry;
    reflect.Method 
                    registerComponent;
    
                    public void Registrar$ModelerBinding();
    
                    public boolean 
                    canBind();
    
                    public boolean 
                    register(Object, String, String);
    
                    private boolean 
                    bindToModeler();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/management/Registrar.class

                    package org.apache.axis.management;

                    public 
                    synchronized 
                    class Registrar {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private 
                    static Registrar$ModelerBinding 
                    modelerBinding;
    
                    public void Registrar();
    
                    public 
                    static boolean 
                    register(Object, String, String);
    
                    public 
                    static boolean 
                    isBound();
    
                    private 
                    static void 
                    createModelerBinding();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/management/ServiceAdmin.class

                    package org.apache.axis.management;

                    public 
                    synchronized 
                    class ServiceAdmin {
    
                    private 
                    static org.apache.axis.server.AxisServer 
                    axisServer;
    
                    public void ServiceAdmin();
    
                    public 
                    static void 
                    startService(String) 
                    throws org.apache.axis.AxisFault, org.apache.axis.ConfigurationException;
    
                    public 
                    static void 
                    stopService(String) 
                    throws org.apache.axis.AxisFault, org.apache.axis.ConfigurationException;
    
                    public 
                    static String[] 
                    listServices() 
                    throws org.apache.axis.AxisFault, org.apache.axis.ConfigurationException;
    
                    public 
                    static org.apache.axis.server.AxisServer 
                    getEngine() 
                    throws org.apache.axis.AxisFault;
    
                    public 
                    static void 
                    setEngine(org.apache.axis.server.AxisServer, String);
    
                    public 
                    static void 
                    start();
    
                    public 
                    static void 
                    stop();
    
                    public 
                    static void 
                    restart();
    
                    public 
                    static void 
                    saveConfiguration();
    
                    private 
                    static org.apache.axis.WSDDEngineConfiguration 
                    getWSDDEngineConfiguration();
    
                    public 
                    static void 
                    setGlobalConfig(org.apache.axis.deployment.wsdd.WSDDGlobalConfiguration);
    
                    public 
                    static org.apache.axis.deployment.wsdd.WSDDGlobalConfiguration 
                    getGlobalConfig();
    
                    public 
                    static org.apache.axis.deployment.wsdd.WSDDHandler 
                    getHandler(javax.xml.namespace.QName);
    
                    public 
                    static org.apache.axis.deployment.wsdd.WSDDHandler[] 
                    getHandlers();
    
                    public 
                    static org.apache.axis.deployment.wsdd.WSDDService 
                    getService(javax.xml.namespace.QName);
    
                    public 
                    static org.apache.axis.deployment.wsdd.WSDDService[] 
                    getServices();
    
                    public 
                    static org.apache.axis.deployment.wsdd.WSDDTransport 
                    getTransport(javax.xml.namespace.QName);
    
                    public 
                    static org.apache.axis.deployment.wsdd.WSDDTransport[] 
                    getTransports();
    
                    public 
                    static void 
                    deployHandler(org.apache.axis.deployment.wsdd.WSDDHandler);
    
                    public 
                    static void 
                    deployService(org.apache.axis.deployment.wsdd.WSDDService);
    
                    public 
                    static void 
                    deployTransport(org.apache.axis.deployment.wsdd.WSDDTransport);
    
                    public 
                    static void 
                    undeployHandler(javax.xml.namespace.QName);
    
                    public 
                    static void 
                    undeployService(javax.xml.namespace.QName);
    
                    public 
                    static void 
                    undeployTransport(javax.xml.namespace.QName);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/management/jmx/DeploymentAdministrator.class

                    package org.apache.axis.management.jmx;

                    public 
                    synchronized 
                    class DeploymentAdministrator 
                    implements DeploymentAdministratorMBean {
    
                    public void DeploymentAdministrator();
    
                    public void 
                    saveConfiguration();
    
                    public void 
                    configureGlobalConfig(org.apache.axis.deployment.wsdd.WSDDGlobalConfiguration);
    
                    public void 
                    deployHandler(org.apache.axis.deployment.wsdd.WSDDHandler);
    
                    public void 
                    deployService(WSDDServiceWrapper);
    
                    public void 
                    deployTransport(WSDDTransportWrapper);
    
                    public void 
                    undeployHandler(String);
    
                    public void 
                    undeployService(String);
    
                    public void 
                    undeployTransport(String);
}

                

org/apache/axis/management/jmx/DeploymentAdministratorMBean.class

                    package org.apache.axis.management.jmx;

                    public 
                    abstract 
                    interface DeploymentAdministratorMBean {
    
                    public 
                    abstract void 
                    saveConfiguration();
    
                    public 
                    abstract void 
                    configureGlobalConfig(org.apache.axis.deployment.wsdd.WSDDGlobalConfiguration);
    
                    public 
                    abstract void 
                    deployHandler(org.apache.axis.deployment.wsdd.WSDDHandler);
    
                    public 
                    abstract void 
                    deployService(WSDDServiceWrapper);
    
                    public 
                    abstract void 
                    deployTransport(WSDDTransportWrapper);
    
                    public 
                    abstract void 
                    undeployHandler(String);
    
                    public 
                    abstract void 
                    undeployService(String);
    
                    public 
                    abstract void 
                    undeployTransport(String);
}

                

org/apache/axis/management/jmx/DeploymentQuery.class

                    package org.apache.axis.management.jmx;

                    public 
                    synchronized 
                    class DeploymentQuery 
                    implements DeploymentQueryMBean {
    
                    public void DeploymentQuery();
    
                    public org.apache.axis.deployment.wsdd.WSDDGlobalConfiguration 
                    findGlobalConfig();
    
                    public org.apache.axis.deployment.wsdd.WSDDHandler 
                    findHandler(String);
    
                    public org.apache.axis.deployment.wsdd.WSDDHandler[] 
                    findHandlers();
    
                    public org.apache.axis.deployment.wsdd.WSDDService 
                    findService(String);
    
                    public org.apache.axis.deployment.wsdd.WSDDService[] 
                    findServices();
    
                    public org.apache.axis.deployment.wsdd.WSDDTransport 
                    findTransport(String);
    
                    public org.apache.axis.deployment.wsdd.WSDDTransport[] 
                    findTransports();
    
                    public String[] 
                    listServices() 
                    throws org.apache.axis.AxisFault, org.apache.axis.ConfigurationException;
}

                

org/apache/axis/management/jmx/DeploymentQueryMBean.class

                    package org.apache.axis.management.jmx;

                    public 
                    abstract 
                    interface DeploymentQueryMBean {
    
                    public 
                    abstract org.apache.axis.deployment.wsdd.WSDDGlobalConfiguration 
                    findGlobalConfig();
    
                    public 
                    abstract org.apache.axis.deployment.wsdd.WSDDHandler 
                    findHandler(String);
    
                    public 
                    abstract org.apache.axis.deployment.wsdd.WSDDHandler[] 
                    findHandlers();
    
                    public 
                    abstract org.apache.axis.deployment.wsdd.WSDDService 
                    findService(String);
    
                    public 
                    abstract org.apache.axis.deployment.wsdd.WSDDService[] 
                    findServices();
    
                    public 
                    abstract org.apache.axis.deployment.wsdd.WSDDTransport 
                    findTransport(String);
    
                    public 
                    abstract org.apache.axis.deployment.wsdd.WSDDTransport[] 
                    findTransports();
    
                    public 
                    abstract String[] 
                    listServices() 
                    throws org.apache.axis.AxisFault, org.apache.axis.ConfigurationException;
}

                

org/apache/axis/management/jmx/ServiceAdministrator.class

                    package org.apache.axis.management.jmx;

                    public 
                    synchronized 
                    class ServiceAdministrator 
                    implements ServiceAdministratorMBean {
    
                    public void ServiceAdministrator();
    
                    public void 
                    start();
    
                    public void 
                    stop();
    
                    public void 
                    restart();
    
                    public void 
                    startService(String) 
                    throws org.apache.axis.AxisFault, org.apache.axis.ConfigurationException;
    
                    public void 
                    stopService(String) 
                    throws org.apache.axis.AxisFault, org.apache.axis.ConfigurationException;
    
                    public String 
                    getVersion();
}

                

org/apache/axis/management/jmx/ServiceAdministratorMBean.class

                    package org.apache.axis.management.jmx;

                    public 
                    abstract 
                    interface ServiceAdministratorMBean {
    
                    public 
                    abstract String 
                    getVersion();
    
                    public 
                    abstract void 
                    start();
    
                    public 
                    abstract void 
                    stop();
    
                    public 
                    abstract void 
                    restart();
    
                    public 
                    abstract void 
                    startService(String) 
                    throws org.apache.axis.AxisFault, org.apache.axis.ConfigurationException;
    
                    public 
                    abstract void 
                    stopService(String) 
                    throws org.apache.axis.AxisFault, org.apache.axis.ConfigurationException;
}

                

org/apache/axis/management/jmx/WSDDServiceWrapper.class

                    package org.apache.axis.management.jmx;

                    public 
                    synchronized 
                    class WSDDServiceWrapper {
    
                    private org.apache.axis.deployment.wsdd.WSDDService 
                    _wsddService;
    
                    public void WSDDServiceWrapper();
    
                    public org.apache.axis.deployment.wsdd.WSDDService 
                    getWSDDService();
    
                    public void 
                    setWSDDService(org.apache.axis.deployment.wsdd.WSDDService);
}

                

org/apache/axis/management/jmx/WSDDTransportWrapper.class

                    package org.apache.axis.management.jmx;

                    public 
                    synchronized 
                    class WSDDTransportWrapper {
    
                    private org.apache.axis.deployment.wsdd.WSDDTransport 
                    _wsddTransport;
    
                    public void WSDDTransportWrapper();
    
                    public org.apache.axis.deployment.wsdd.WSDDTransport 
                    getWSDDTransport();
    
                    public void 
                    setWSDDTransport(org.apache.axis.deployment.wsdd.WSDDTransport);
}

                

org/apache/axis/message/BodyBuilder.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class BodyBuilder 
                    extends SOAPHandler {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    boolean 
                    gotRPCElement;
    
                    private SOAPEnvelope 
                    envelope;
    void BodyBuilder(SOAPEnvelope);
    
                    public void 
                    startElement(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public MessageElement 
                    makeNewElement(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.apache.axis.AxisFault;
    
                    public SOAPHandler 
                    onStartChild(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    onEndChild(String, String, org.apache.axis.encoding.DeserializationContext);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/message/CDATAImpl.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class CDATAImpl 
                    extends Text 
                    implements org.w3c.dom.CDATASection {
    
                    static 
                    final String 
                    cdataUC = <![CDATA[;
    
                    static 
                    final String 
                    cdataLC = <![cdata[;
    
                    public void CDATAImpl(String);
    
                    public boolean 
                    isComment();
}

                

org/apache/axis/message/CommentImpl.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class CommentImpl 
                    extends Text 
                    implements javax.xml.soap.Text, org.w3c.dom.Comment {
    
                    public void CommentImpl(String);
    
                    public boolean 
                    isComment();
    
                    public org.w3c.dom.Text 
                    splitText(int) 
                    throws org.w3c.dom.DOMException;
}

                

org/apache/axis/message/Detail.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class Detail 
                    extends SOAPFaultElement 
                    implements javax.xml.soap.Detail {
    
                    public void Detail();
    
                    public javax.xml.soap.DetailEntry 
                    addDetailEntry(javax.xml.soap.Name) 
                    throws javax.xml.soap.SOAPException;
    
                    public java.util.Iterator 
                    getDetailEntries();
}

                

org/apache/axis/message/DetailEntry.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class DetailEntry 
                    extends MessageElement 
                    implements javax.xml.soap.DetailEntry {
    
                    public void DetailEntry(javax.xml.soap.Name);
}

                

org/apache/axis/message/EnvelopeBuilder.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class EnvelopeBuilder 
                    extends SOAPHandler {
    
                    private SOAPEnvelope 
                    envelope;
    
                    private org.apache.axis.soap.SOAPConstants 
                    soapConstants;
    
                    private boolean 
                    gotHeader;
    
                    private boolean 
                    gotBody;
    
                    public void EnvelopeBuilder(String, org.apache.axis.soap.SOAPConstants);
    
                    public void EnvelopeBuilder(SOAPEnvelope, String);
    
                    public SOAPEnvelope 
                    getEnvelope();
    
                    public void 
                    startElement(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public SOAPHandler 
                    onStartChild(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    onEndChild(String, String, org.apache.axis.encoding.DeserializationContext);
    
                    public void 
                    endElement(String, String, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
}

                

org/apache/axis/message/EnvelopeHandler.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class EnvelopeHandler 
                    extends SOAPHandler {
    SOAPHandler 
                    realHandler;
    
                    public void EnvelopeHandler(SOAPHandler);
    
                    public SOAPHandler 
                    onStartChild(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
}

                

org/apache/axis/message/HeaderBuilder.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class HeaderBuilder 
                    extends SOAPHandler {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private SOAPHeaderElement 
                    header;
    
                    private SOAPEnvelope 
                    envelope;
    void HeaderBuilder(SOAPEnvelope);
    
                    public void 
                    startElement(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public SOAPHandler 
                    onStartChild(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    onEndChild(String, String, org.apache.axis.encoding.DeserializationContext);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/message/IDResolver.class

                    package org.apache.axis.message;

                    public 
                    abstract 
                    interface IDResolver {
    
                    public 
                    abstract Object 
                    getReferencedObject(String);
    
                    public 
                    abstract void 
                    addReferencedObject(String, Object);
}

                

org/apache/axis/message/InputStreamBody.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class InputStreamBody 
                    extends SOAPBodyElement {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    protected java.io.InputStream 
                    inputStream;
    
                    public void InputStreamBody(java.io.InputStream);
    
                    public void 
                    outputImpl(org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/message/MessageElement$QNameAttr.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class MessageElement$QNameAttr {
    
                    public javax.xml.namespace.QName 
                    name;
    
                    public javax.xml.namespace.QName 
                    value;
    
                    protected void MessageElement$QNameAttr();
}

                

org/apache/axis/message/MessageElement.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class MessageElement 
                    extends NodeImpl 
                    implements javax.xml.soap.SOAPElement, java.io.Serializable, org.w3c.dom.NodeList, Cloneable {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private 
                    static 
                    final org.apache.axis.utils.Mapping 
                    enc11Mapping;
    
                    private 
                    static 
                    final org.apache.axis.utils.Mapping 
                    enc12Mapping;
    
                    protected String 
                    id;
    
                    protected String 
                    href;
    
                    protected boolean 
                    _isRoot;
    
                    protected SOAPEnvelope 
                    message;
    
                    protected 
                    transient org.apache.axis.encoding.DeserializationContext 
                    context;
    
                    protected 
                    transient javax.xml.namespace.QName 
                    typeQName;
    
                    protected java.util.Vector 
                    qNameAttrs;
    
                    protected 
                    transient SAX2EventRecorder 
                    recorder;
    
                    protected int 
                    startEventIndex;
    
                    protected int 
                    startContentsIndex;
    
                    protected int 
                    endEventIndex;
    
                    public java.util.ArrayList 
                    namespaces;
    
                    protected String 
                    encodingStyle;
    
                    private Object 
                    objectValue;
    
                    protected org.apache.axis.encoding.Deserializer 
                    fixupDeserializer;
    
                    public void MessageElement();
    
                    public void MessageElement(String, String);
    
                    public void MessageElement(String, String, String);
    
                    public void MessageElement(javax.xml.soap.Name);
    
                    public void MessageElement(String, String, Object);
    
                    public void MessageElement(javax.xml.namespace.QName);
    
                    public void MessageElement(javax.xml.namespace.QName, Object);
    
                    public void MessageElement(org.w3c.dom.Element);
    
                    public void MessageElement(org.w3c.dom.CharacterData);
    
                    public void MessageElement(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.apache.axis.AxisFault;
    
                    public org.apache.axis.encoding.DeserializationContext 
                    getDeserializationContext();
    
                    public void 
                    setFixupDeserializer(org.apache.axis.encoding.Deserializer);
    
                    public org.apache.axis.encoding.Deserializer 
                    getFixupDeserializer();
    
                    public void 
                    setEndIndex(int);
    
                    public boolean 
                    isRoot();
    
                    public String 
                    getID();
    
                    public String 
                    getHref();
    
                    public org.xml.sax.Attributes 
                    getAttributesEx();
    
                    public org.w3c.dom.Node 
                    cloneNode(boolean);
    
                    protected void 
                    childDeepCloned(NodeImpl, NodeImpl);
    
                    protected Object 
                    cloning() 
                    throws CloneNotSupportedException;
    
                    public void 
                    setAllAttributes(org.xml.sax.Attributes);
    
                    public void 
                    detachAllChildren();
    
                    public org.xml.sax.Attributes 
                    getCompleteAttributes();
    
                    public String 
                    getName();
    
                    public void 
                    setName(String);
    
                    public javax.xml.namespace.QName 
                    getQName();
    
                    public void 
                    setQName(javax.xml.namespace.QName);
    
                    public void 
                    setNamespaceURI(String);
    
                    public javax.xml.namespace.QName 
                    getType();
    
                    public void 
                    setType(javax.xml.namespace.QName);
    
                    public SAX2EventRecorder 
                    getRecorder();
    
                    public void 
                    setRecorder(SAX2EventRecorder);
    
                    public String 
                    getEncodingStyle();
    
                    public void 
                    removeContents();
    
                    public java.util.Iterator 
                    getVisibleNamespacePrefixes();
    
                    public void 
                    setEncodingStyle(String) 
                    throws javax.xml.soap.SOAPException;
    
                    public void 
                    addChild(MessageElement) 
                    throws javax.xml.soap.SOAPException;
    
                    public java.util.List 
                    getChildren();
    
                    public void 
                    setContentsIndex(int);
    
                    public void 
                    setNSMappings(java.util.ArrayList);
    
                    public String 
                    getPrefix(String);
    
                    public String 
                    getNamespaceURI(String);
    
                    public Object 
                    getObjectValue();
    
                    public Object 
                    getObjectValue(Class) 
                    throws Exception;
    
                    public void 
                    setObjectValue(Object) 
                    throws javax.xml.soap.SOAPException;
    
                    public Object 
                    getValueAsType(javax.xml.namespace.QName) 
                    throws Exception;
    
                    public Object 
                    getValueAsType(javax.xml.namespace.QName, Class) 
                    throws Exception;
    
                    public void 
                    addAttribute(String, String, javax.xml.namespace.QName);
    
                    public void 
                    addAttribute(String, String, String);
    
                    public void 
                    addAttribute(String, String, String, String);
    
                    public void 
                    setAttribute(String, String, String);
    
                    public String 
                    getAttributeValue(String);
    
                    public void 
                    setEnvelope(SOAPEnvelope);
    
                    public SOAPEnvelope 
                    getEnvelope();
    
                    public MessageElement 
                    getRealElement();
    
                    public org.w3c.dom.Document 
                    getAsDocument() 
                    throws Exception;
    
                    public String 
                    getAsString() 
                    throws Exception;
    
                    public org.w3c.dom.Element 
                    getAsDOM() 
                    throws Exception;
    
                    public void 
                    publishToHandler(org.xml.sax.ContentHandler) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    publishContents(org.xml.sax.ContentHandler) 
                    throws org.xml.sax.SAXException;
    
                    public 
                    final void 
                    output(org.apache.axis.encoding.SerializationContext) 
                    throws Exception;
    
                    protected void 
                    outputImpl(org.apache.axis.encoding.SerializationContext) 
                    throws Exception;
    
                    public String 
                    toString();
    
                    public void 
                    addMapping(org.apache.axis.utils.Mapping);
    
                    public javax.xml.soap.SOAPElement 
                    addChildElement(javax.xml.soap.Name) 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.SOAPElement 
                    addChildElement(String) 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.SOAPElement 
                    addChildElement(String, String) 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.SOAPElement 
                    addChildElement(String, String, String) 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.SOAPElement 
                    addChildElement(javax.xml.soap.SOAPElement) 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.SOAPElement 
                    addTextNode(String) 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.SOAPElement 
                    addAttribute(javax.xml.soap.Name, String) 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.SOAPElement 
                    addNamespaceDeclaration(String, String) 
                    throws javax.xml.soap.SOAPException;
    
                    public String 
                    getAttributeValue(javax.xml.soap.Name);
    
                    public java.util.Iterator 
                    getAllAttributes();
    
                    public java.util.Iterator 
                    getNamespacePrefixes();
    
                    public javax.xml.soap.Name 
                    getElementName();
    
                    public boolean 
                    removeAttribute(javax.xml.soap.Name);
    
                    public boolean 
                    removeNamespaceDeclaration(String);
    
                    public java.util.Iterator 
                    getChildElements();
    
                    public MessageElement 
                    getChildElement(javax.xml.namespace.QName);
    
                    public java.util.Iterator 
                    getChildElements(javax.xml.namespace.QName);
    
                    public java.util.Iterator 
                    getChildElements(javax.xml.soap.Name);
    
                    public String 
                    getTagName();
    
                    public void 
                    removeAttribute(String) 
                    throws org.w3c.dom.DOMException;
    
                    public boolean 
                    hasAttribute(String);
    
                    public String 
                    getAttribute(String);
    
                    public void 
                    removeAttributeNS(String, String) 
                    throws org.w3c.dom.DOMException;
    
                    public void 
                    setAttribute(String, String) 
                    throws org.w3c.dom.DOMException;
    
                    public boolean 
                    hasAttributeNS(String, String);
    
                    public org.w3c.dom.Attr 
                    getAttributeNode(String);
    
                    public org.w3c.dom.Attr 
                    removeAttributeNode(org.w3c.dom.Attr) 
                    throws org.w3c.dom.DOMException;
    
                    public org.w3c.dom.Attr 
                    setAttributeNode(org.w3c.dom.Attr) 
                    throws org.w3c.dom.DOMException;
    
                    public org.w3c.dom.Attr 
                    setAttributeNodeNS(org.w3c.dom.Attr) 
                    throws org.w3c.dom.DOMException;
    
                    public org.w3c.dom.NodeList 
                    getElementsByTagName(String);
    
                    public String 
                    getAttributeNS(String, String);
    
                    public void 
                    setAttributeNS(String, String, String) 
                    throws org.w3c.dom.DOMException;
    
                    public org.w3c.dom.Attr 
                    getAttributeNodeNS(String, String);
    
                    public org.w3c.dom.NodeList 
                    getElementsByTagNameNS(String, String);
    
                    protected org.w3c.dom.NodeList 
                    getElementsNS(org.w3c.dom.Element, String, String);
    
                    public org.w3c.dom.Node 
                    item(int);
    
                    public int 
                    getLength();
    
                    protected MessageElement 
                    findElement(java.util.Vector, String, String);
    
                    public boolean 
                    equals(Object);
    
                    private void 
                    copyNode(org.w3c.dom.Node);
    
                    private void 
                    copyNode(MessageElement, org.w3c.dom.Node);
    
                    public String 
                    getValue();
    
                    protected String 
                    getValueDOM();
    
                    public void 
                    setValue(String);
    
                    public org.w3c.dom.Document 
                    getOwnerDocument();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/message/MessageWithAttachments.class

                    package org.apache.axis.message;

                    public 
                    abstract 
                    interface MessageWithAttachments {
    
                    public 
                    abstract boolean 
                    hasAttachments();
    
                    public 
                    abstract java.util.Hashtable 
                    getAttachments();
    
                    public 
                    abstract Object 
                    getAttachment(String);
    
                    public 
                    abstract Object 
                    getAttachment(int);
}

                

org/apache/axis/message/MimeHeaders.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class MimeHeaders 
                    extends javax.xml.soap.MimeHeaders 
                    implements java.io.Externalizable {
    
                    public void MimeHeaders();
    
                    public void MimeHeaders(javax.xml.soap.MimeHeaders);
    
                    public void 
                    readExternal(java.io.ObjectInput) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    public void 
                    writeExternal(java.io.ObjectOutput) 
                    throws java.io.IOException;
    
                    private int 
                    getHeaderSize();
}

                

org/apache/axis/message/NamedNodeMapImpl.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class NamedNodeMapImpl 
                    implements org.w3c.dom.NamedNodeMap {
    
                    protected java.util.Vector 
                    nodes;
    
                    private 
                    static org.w3c.dom.Document 
                    doc;
    
                    public void NamedNodeMapImpl();
    
                    public org.w3c.dom.Node 
                    getNamedItem(String);
    
                    public org.w3c.dom.Node 
                    setNamedItem(org.w3c.dom.Node) 
                    throws org.w3c.dom.DOMException;
    
                    public org.w3c.dom.Node 
                    removeNamedItem(String) 
                    throws org.w3c.dom.DOMException;
    
                    public org.w3c.dom.Node 
                    item(int);
    
                    public int 
                    getLength();
    
                    public org.w3c.dom.Node 
                    getNamedItemNS(String, String);
    
                    public org.w3c.dom.Node 
                    setNamedItemNS(org.w3c.dom.Node) 
                    throws org.w3c.dom.DOMException;
    
                    public org.w3c.dom.Node 
                    removeNamedItemNS(String, String) 
                    throws org.w3c.dom.DOMException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/message/NodeImpl.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class NodeImpl 
                    implements org.w3c.dom.Node, javax.xml.soap.Node, java.io.Serializable, Cloneable {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    protected String 
                    name;
    
                    protected String 
                    prefix;
    
                    protected String 
                    namespaceURI;
    
                    protected 
                    transient org.xml.sax.Attributes 
                    attributes;
    
                    protected org.w3c.dom.Document 
                    document;
    
                    protected NodeImpl 
                    parent;
    
                    protected java.util.ArrayList 
                    children;
    
                    protected org.w3c.dom.CharacterData 
                    textRep;
    
                    protected boolean 
                    _isDirty;
    
                    private 
                    static 
                    final String 
                    NULL_URI_NAME = intentionalNullURI;
    
                    public void NodeImpl();
    
                    public void NodeImpl(org.w3c.dom.CharacterData);
    
                    public short 
                    getNodeType();
    
                    public void 
                    normalize();
    
                    public boolean 
                    hasAttributes();
    
                    public boolean 
                    hasChildNodes();
    
                    public String 
                    getLocalName();
    
                    public String 
                    getNamespaceURI();
    
                    public String 
                    getNodeName();
    
                    public String 
                    getNodeValue() 
                    throws org.w3c.dom.DOMException;
    
                    public String 
                    getPrefix();
    
                    public void 
                    setNodeValue(String) 
                    throws org.w3c.dom.DOMException;
    
                    public void 
                    setPrefix(String);
    
                    public void 
                    setOwnerDocument(org.w3c.dom.Document);
    
                    public org.w3c.dom.Document 
                    getOwnerDocument();
    
                    public org.w3c.dom.NamedNodeMap 
                    getAttributes();
    
                    public org.w3c.dom.Node 
                    getFirstChild();
    
                    public org.w3c.dom.Node 
                    getLastChild();
    
                    public org.w3c.dom.Node 
                    getNextSibling();
    
                    public org.w3c.dom.Node 
                    getParentNode();
    
                    public org.w3c.dom.Node 
                    getPreviousSibling();
    
                    public org.w3c.dom.Node 
                    cloneNode(boolean);
    
                    public org.w3c.dom.NodeList 
                    getChildNodes();
    
                    public boolean 
                    isSupported(String, String);
    
                    public org.w3c.dom.Node 
                    appendChild(org.w3c.dom.Node) 
                    throws org.w3c.dom.DOMException;
    
                    public org.w3c.dom.Node 
                    removeChild(org.w3c.dom.Node) 
                    throws org.w3c.dom.DOMException;
    
                    private boolean 
                    removeNodeFromChildList(NodeImpl);
    
                    public org.w3c.dom.Node 
                    insertBefore(org.w3c.dom.Node, org.w3c.dom.Node) 
                    throws org.w3c.dom.DOMException;
    
                    public org.w3c.dom.Node 
                    replaceChild(org.w3c.dom.Node, org.w3c.dom.Node) 
                    throws org.w3c.dom.DOMException;
    
                    public String 
                    getValue();
    
                    public void 
                    setParentElement(javax.xml.soap.SOAPElement) 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.SOAPElement 
                    getParentElement();
    
                    public void 
                    detachNode();
    
                    public void 
                    recycleNode();
    
                    public void 
                    setValue(String);
    
                    protected org.xml.sax.helpers.AttributesImpl 
                    makeAttributesEditable();
    
                    protected org.w3c.dom.NamedNodeMap 
                    convertAttrSAXtoDOM(org.xml.sax.Attributes);
    
                    protected void 
                    initializeChildren();
    
                    protected NodeImpl 
                    getParent();
    
                    protected void 
                    setParent(NodeImpl) 
                    throws javax.xml.soap.SOAPException;
    
                    public void 
                    output(org.apache.axis.encoding.SerializationContext) 
                    throws Exception;
    
                    public boolean 
                    isDirty();
    
                    public void 
                    setDirty(boolean);
    
                    public void 
                    setDirty();
    
                    public void 
                    reset();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/message/NodeListImpl.class

                    package org.apache.axis.message;

                    synchronized 
                    class NodeListImpl 
                    implements org.w3c.dom.NodeList {
    java.util.List 
                    mNodes;
    
                    public 
                    static 
                    final org.w3c.dom.NodeList 
                    EMPTY_NODELIST;
    void NodeListImpl();
    void NodeListImpl(java.util.List);
    void 
                    addNode(org.w3c.dom.Node);
    void 
                    addNodeList(org.w3c.dom.NodeList);
    
                    public org.w3c.dom.Node 
                    item(int);
    
                    public int 
                    getLength();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/message/NullAttributes.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class NullAttributes 
                    implements org.xml.sax.Attributes {
    
                    public 
                    static 
                    final NullAttributes 
                    singleton;
    
                    public void NullAttributes();
    
                    public int 
                    getLength();
    
                    public String 
                    getURI(int);
    
                    public String 
                    getLocalName(int);
    
                    public String 
                    getQName(int);
    
                    public String 
                    getType(int);
    
                    public String 
                    getValue(int);
    
                    public int 
                    getIndex(String, String);
    
                    public int 
                    getIndex(String);
    
                    public String 
                    getType(String, String);
    
                    public String 
                    getType(String);
    
                    public String 
                    getValue(String, String);
    
                    public String 
                    getValue(String);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/message/PrefixedQName.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class PrefixedQName 
                    implements javax.xml.soap.Name {
    
                    private 
                    static 
                    final String 
                    emptyString;
    
                    private String 
                    prefix;
    
                    private javax.xml.namespace.QName 
                    qName;
    
                    public void PrefixedQName(String, String, String);
    
                    public void PrefixedQName(javax.xml.namespace.QName);
    
                    public String 
                    getLocalName();
    
                    public String 
                    getQualifiedName();
    
                    public String 
                    getURI();
    
                    public String 
                    getPrefix();
    
                    public boolean 
                    equals(Object);
    
                    public int 
                    hashCode();
    
                    public String 
                    toString();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/message/RPCElement.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class RPCElement 
                    extends SOAPBodyElement {
    
                    protected boolean 
                    needDeser;
    org.apache.axis.description.OperationDesc[] 
                    operations;
    
                    public void RPCElement(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext, org.apache.axis.description.OperationDesc[]) 
                    throws org.apache.axis.AxisFault;
    
                    public void RPCElement(String, String, Object[]);
    
                    public void RPCElement(String);
    
                    public void 
                    updateOperationsByName() 
                    throws org.apache.axis.AxisFault;
    
                    public void 
                    updateOperationsByQName() 
                    throws org.apache.axis.AxisFault;
    
                    public org.apache.axis.description.OperationDesc[] 
                    getOperations();
    
                    public String 
                    getMethodName();
    
                    public void 
                    setNeedDeser(boolean);
    
                    public void 
                    deserialize() 
                    throws org.xml.sax.SAXException;
    
                    private java.util.List 
                    getParams2();
    
                    private java.util.List 
                    getParams(java.util.List);
    
                    public RPCParam 
                    getParam(String) 
                    throws org.xml.sax.SAXException;
    
                    public java.util.Vector 
                    getParams() 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    addParam(RPCParam);
    
                    protected void 
                    outputImpl(org.apache.axis.encoding.SerializationContext) 
                    throws Exception;
    
                    private boolean 
                    needHeaderProcessing(org.apache.axis.description.OperationDesc, boolean);
    
                    private void 
                    processHeaders(org.apache.axis.description.OperationDesc, boolean, org.apache.axis.encoding.DeserializationContext, RPCHandler) 
                    throws org.apache.axis.AxisFault, org.xml.sax.SAXException;
}

                

org/apache/axis/message/RPCHandler.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class RPCHandler 
                    extends SOAPHandler {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private RPCElement 
                    rpcElem;
    
                    private RPCParam 
                    currentParam;
    
                    private boolean 
                    isResponse;
    
                    private org.apache.axis.description.OperationDesc 
                    operation;
    
                    private boolean 
                    isHeaderElement;
    
                    public void RPCHandler(RPCElement, boolean) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    setOperation(org.apache.axis.description.OperationDesc);
    
                    public void 
                    setHeaderElement(boolean);
    
                    public void 
                    startElement(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public SOAPHandler 
                    onStartChild(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    endElement(String, String, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/message/RPCHeaderParam.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class RPCHeaderParam 
                    extends SOAPHeaderElement {
    
                    public void RPCHeaderParam(RPCParam);
    
                    protected void 
                    outputImpl(org.apache.axis.encoding.SerializationContext) 
                    throws Exception;
}

                

org/apache/axis/message/RPCParam.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class RPCParam 
                    extends MessageElement 
                    implements java.io.Serializable {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private Object 
                    value;
    
                    private int 
                    countSetCalls;
    
                    private org.apache.axis.description.ParameterDesc 
                    paramDesc;
    
                    private Boolean 
                    wantXSIType;
    
                    private 
                    static reflect.Method 
                    valueSetMethod;
    
                    public void RPCParam(String, Object);
    
                    public void RPCParam(javax.xml.namespace.QName, Object);
    
                    public void RPCParam(String, String, Object);
    
                    public void 
                    setRPCCall(RPCElement);
    
                    public Object 
                    getObjectValue();
    
                    public void 
                    setObjectValue(Object);
    
                    public void 
                    set(Object);
    
                    public 
                    static reflect.Method 
                    getValueSetMethod();
    
                    public org.apache.axis.description.ParameterDesc 
                    getParamDesc();
    
                    public void 
                    setParamDesc(org.apache.axis.description.ParameterDesc);
    
                    public void 
                    setXSITypeGeneration(Boolean);
    
                    public Boolean 
                    getXSITypeGeneration();
    
                    public void 
                    serialize(org.apache.axis.encoding.SerializationContext) 
                    throws java.io.IOException;
    
                    private void 
                    writeObject(java.io.ObjectOutputStream) 
                    throws java.io.IOException;
    
                    private void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    protected void 
                    outputImpl(org.apache.axis.encoding.SerializationContext) 
                    throws Exception;
    
                    public String 
                    getValue();
    
                    public javax.xml.soap.SOAPElement 
                    addTextNode(String) 
                    throws javax.xml.soap.SOAPException;
    
                    public void 
                    setValue(String);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/message/RPCParamTarget.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class RPCParamTarget 
                    implements org.apache.axis.encoding.Target {
    
                    private RPCParam 
                    param;
    
                    public void RPCParamTarget(RPCParam);
    
                    public void 
                    set(Object) 
                    throws org.xml.sax.SAXException;
}

                

org/apache/axis/message/SAX2EventRecorder$objArrayVector.class

                    package org.apache.axis.message;

                    synchronized 
                    class SAX2EventRecorder$objArrayVector {
    
                    private int 
                    RECORD_SIZE;
    
                    private int 
                    currentSize;
    
                    private Object[] 
                    objarray;
    void SAX2EventRecorder$objArrayVector(SAX2EventRecorder);
    
                    public int 
                    add(Object, Object, Object, Object, Object);
    
                    public Object 
                    get(int, int);
    
                    public int 
                    getLength();
}

                

org/apache/axis/message/SAX2EventRecorder.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class SAX2EventRecorder {
    
                    private 
                    static 
                    final Integer 
                    Z;
    
                    private 
                    static 
                    final Integer 
                    STATE_SET_DOCUMENT_LOCATOR;
    
                    private 
                    static 
                    final Integer 
                    STATE_START_DOCUMENT;
    
                    private 
                    static 
                    final Integer 
                    STATE_END_DOCUMENT;
    
                    private 
                    static 
                    final Integer 
                    STATE_START_PREFIX_MAPPING;
    
                    private 
                    static 
                    final Integer 
                    STATE_END_PREFIX_MAPPING;
    
                    private 
                    static 
                    final Integer 
                    STATE_START_ELEMENT;
    
                    private 
                    static 
                    final Integer 
                    STATE_END_ELEMENT;
    
                    private 
                    static 
                    final Integer 
                    STATE_CHARACTERS;
    
                    private 
                    static 
                    final Integer 
                    STATE_IGNORABLE_WHITESPACE;
    
                    private 
                    static 
                    final Integer 
                    STATE_PROCESSING_INSTRUCTION;
    
                    private 
                    static 
                    final Integer 
                    STATE_SKIPPED_ENTITY;
    
                    private 
                    static 
                    final Integer 
                    STATE_NEWELEMENT;
    
                    private 
                    static 
                    final Integer 
                    STATE_START_DTD;
    
                    private 
                    static 
                    final Integer 
                    STATE_END_DTD;
    
                    private 
                    static 
                    final Integer 
                    STATE_START_ENTITY;
    
                    private 
                    static 
                    final Integer 
                    STATE_END_ENTITY;
    
                    private 
                    static 
                    final Integer 
                    STATE_START_CDATA;
    
                    private 
                    static 
                    final Integer 
                    STATE_END_CDATA;
    
                    private 
                    static 
                    final Integer 
                    STATE_COMMENT;
    org.xml.sax.Locator 
                    locator;
    SAX2EventRecorder$objArrayVector 
                    events;
    
                    public void SAX2EventRecorder();
    
                    public void 
                    clear();
    
                    public int 
                    getLength();
    
                    public int 
                    setDocumentLocator(org.xml.sax.Locator);
    
                    public int 
                    startDocument();
    
                    public int 
                    endDocument();
    
                    public int 
                    startPrefixMapping(String, String);
    
                    public int 
                    endPrefixMapping(String);
    
                    public int 
                    startElement(String, String, String, org.xml.sax.Attributes);
    
                    public int 
                    endElement(String, String, String);
    
                    public int 
                    characters(char[], int, int);
    
                    public int 
                    ignorableWhitespace(char[], int, int);
    
                    public int 
                    processingInstruction(String, String);
    
                    public int 
                    skippedEntity(String);
    
                    public void 
                    startDTD(String, String, String);
    
                    public void 
                    endDTD();
    
                    public void 
                    startEntity(String);
    
                    public void 
                    endEntity(String);
    
                    public void 
                    startCDATA();
    
                    public void 
                    endCDATA();
    
                    public void 
                    comment(char[], int, int);
    
                    public int 
                    newElement(MessageElement);
    
                    public void 
                    replay(org.xml.sax.ContentHandler) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    replay(int, int, org.xml.sax.ContentHandler) 
                    throws org.xml.sax.SAXException;
    
                    private 
                    static char[] 
                    clone(char[], int, int);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/message/SAXOutputter.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class SAXOutputter 
                    extends org.xml.sax.helpers.DefaultHandler 
                    implements org.xml.sax.ext.LexicalHandler {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    org.apache.axis.encoding.SerializationContext 
                    context;
    boolean 
                    isCDATA;
    
                    public void SAXOutputter(org.apache.axis.encoding.SerializationContext);
    
                    public void 
                    startDocument() 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    endDocument() 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    startPrefixMapping(String, String) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    endPrefixMapping(String) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    characters(char[], int, int) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    ignorableWhitespace(char[], int, int) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    skippedEntity(String) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    startElement(String, String, String, org.xml.sax.Attributes) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    endElement(String, String, String) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    startDTD(String, String, String) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    endDTD() 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    startEntity(String) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    endEntity(String) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    startCDATA() 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    endCDATA() 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    comment(char[], int, int) 
                    throws org.xml.sax.SAXException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/message/SOAPBody.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class SOAPBody 
                    extends MessageElement 
                    implements javax.xml.soap.SOAPBody {
    
                    private 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private org.apache.axis.soap.SOAPConstants 
                    soapConstants;
    
                    private boolean 
                    disableFormatting;
    
                    private boolean 
                    doSAAJEncodingCompliance;
    
                    private 
                    static java.util.ArrayList 
                    knownEncodingStyles;
    void SOAPBody(SOAPEnvelope, org.apache.axis.soap.SOAPConstants);
    
                    public void SOAPBody(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext, org.apache.axis.soap.SOAPConstants) 
                    throws org.apache.axis.AxisFault;
    
                    public void 
                    setParentElement(javax.xml.soap.SOAPElement) 
                    throws javax.xml.soap.SOAPException;
    
                    public void 
                    disableFormatting();
    
                    public void 
                    setEncodingStyle(String) 
                    throws javax.xml.soap.SOAPException;
    
                    protected void 
                    outputImpl(org.apache.axis.encoding.SerializationContext) 
                    throws Exception;
    java.util.Vector 
                    getBodyElements() 
                    throws org.apache.axis.AxisFault;
    SOAPBodyElement 
                    getFirstBody() 
                    throws org.apache.axis.AxisFault;
    void 
                    addBodyElement(SOAPBodyElement);
    void 
                    removeBodyElement(SOAPBodyElement);
    void 
                    clearBody();
    SOAPBodyElement 
                    getBodyByName(String, String) 
                    throws org.apache.axis.AxisFault;
    
                    public javax.xml.soap.SOAPBodyElement 
                    addBodyElement(javax.xml.soap.Name) 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.SOAPFault 
                    addFault(javax.xml.soap.Name, String, java.util.Locale) 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.SOAPFault 
                    addFault(javax.xml.soap.Name, String) 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.SOAPBodyElement 
                    addDocument(org.w3c.dom.Document) 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.SOAPFault 
                    addFault() 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.SOAPFault 
                    getFault();
    
                    public boolean 
                    hasFault();
    
                    public void 
                    addChild(MessageElement) 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.SOAPElement 
                    addChildElement(javax.xml.soap.SOAPElement) 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.SOAPElement 
                    addChildElement(javax.xml.soap.Name) 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.SOAPElement 
                    addChildElement(String) 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.SOAPElement 
                    addChildElement(String, String) 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.SOAPElement 
                    addChildElement(String, String, String) 
                    throws javax.xml.soap.SOAPException;
    
                    public void 
                    setSAAJEncodingCompliance(boolean);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/message/SOAPBodyElement.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class SOAPBodyElement 
                    extends MessageElement 
                    implements javax.xml.soap.SOAPBodyElement {
    
                    private 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void SOAPBodyElement(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.apache.axis.AxisFault;
    
                    public void SOAPBodyElement(javax.xml.soap.Name);
    
                    public void SOAPBodyElement(javax.xml.namespace.QName);
    
                    public void SOAPBodyElement(javax.xml.namespace.QName, Object);
    
                    public void SOAPBodyElement(org.w3c.dom.Element);
    
                    public void SOAPBodyElement();
    
                    public void SOAPBodyElement(java.io.InputStream);
    
                    public void SOAPBodyElement(String, String);
    
                    private 
                    static org.w3c.dom.Element 
                    getDocumentElement(java.io.InputStream);
    
                    public void 
                    setParentElement(javax.xml.soap.SOAPElement) 
                    throws javax.xml.soap.SOAPException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/message/SOAPDocumentImpl.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class SOAPDocumentImpl 
                    implements org.w3c.dom.Document, java.io.Serializable {
    
                    protected org.w3c.dom.Document 
                    delegate;
    
                    protected org.apache.axis.SOAPPart 
                    soapPart;
    
                    private String[] 
                    features;
    
                    private String 
                    version;
    
                    public void SOAPDocumentImpl(org.apache.axis.SOAPPart);
    
                    public org.w3c.dom.DocumentType 
                    getDoctype();
    
                    public org.w3c.dom.DOMImplementation 
                    getImplementation();
    
                    public org.w3c.dom.Element 
                    getDocumentElement();
    
                    public org.w3c.dom.Element 
                    createElement(String) 
                    throws org.w3c.dom.DOMException;
    
                    public org.w3c.dom.DocumentFragment 
                    createDocumentFragment();
    
                    public org.w3c.dom.Text 
                    createTextNode(String);
    
                    public org.w3c.dom.Comment 
                    createComment(String);
    
                    public org.w3c.dom.CDATASection 
                    createCDATASection(String) 
                    throws org.w3c.dom.DOMException;
    
                    public org.w3c.dom.ProcessingInstruction 
                    createProcessingInstruction(String, String) 
                    throws org.w3c.dom.DOMException;
    
                    public org.w3c.dom.Attr 
                    createAttribute(String) 
                    throws org.w3c.dom.DOMException;
    
                    public org.w3c.dom.EntityReference 
                    createEntityReference(String) 
                    throws org.w3c.dom.DOMException;
    
                    public org.w3c.dom.Node 
                    importNode(org.w3c.dom.Node, boolean) 
                    throws org.w3c.dom.DOMException;
    
                    public org.w3c.dom.Element 
                    createElementNS(String, String) 
                    throws org.w3c.dom.DOMException;
    
                    public org.w3c.dom.Attr 
                    createAttributeNS(String, String) 
                    throws org.w3c.dom.DOMException;
    
                    public org.w3c.dom.NodeList 
                    getElementsByTagNameNS(String, String);
    
                    public org.w3c.dom.NodeList 
                    getElementsByTagName(String);
    
                    public org.w3c.dom.Element 
                    getElementById(String);
    
                    public String 
                    getNodeName();
    
                    public String 
                    getNodeValue() 
                    throws org.w3c.dom.DOMException;
    
                    public void 
                    setNodeValue(String) 
                    throws org.w3c.dom.DOMException;
    
                    public short 
                    getNodeType();
    
                    public org.w3c.dom.Node 
                    getParentNode();
    
                    public org.w3c.dom.NodeList 
                    getChildNodes();
    
                    public org.w3c.dom.Node 
                    getFirstChild();
    
                    public org.w3c.dom.Node 
                    getLastChild();
    
                    public org.w3c.dom.Node 
                    getPreviousSibling();
    
                    public org.w3c.dom.Node 
                    getNextSibling();
    
                    public org.w3c.dom.NamedNodeMap 
                    getAttributes();
    
                    public org.w3c.dom.Document 
                    getOwnerDocument();
    
                    public org.w3c.dom.Node 
                    insertBefore(org.w3c.dom.Node, org.w3c.dom.Node) 
                    throws org.w3c.dom.DOMException;
    
                    public org.w3c.dom.Node 
                    replaceChild(org.w3c.dom.Node, org.w3c.dom.Node) 
                    throws org.w3c.dom.DOMException;
    
                    public org.w3c.dom.Node 
                    removeChild(org.w3c.dom.Node) 
                    throws org.w3c.dom.DOMException;
    
                    public org.w3c.dom.Node 
                    appendChild(org.w3c.dom.Node) 
                    throws org.w3c.dom.DOMException;
    
                    public boolean 
                    hasChildNodes();
    
                    public org.w3c.dom.Node 
                    cloneNode(boolean);
    
                    public void 
                    normalize();
    
                    public boolean 
                    isSupported(String, String);
    
                    public String 
                    getPrefix();
    
                    public void 
                    setPrefix(String);
    
                    public String 
                    getNamespaceURI();
    
                    public void 
                    setNamespaceURI(String);
    
                    public String 
                    getLocalName();
    
                    public boolean 
                    hasAttributes();
}

                

org/apache/axis/message/SOAPEnvelope.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class SOAPEnvelope 
                    extends MessageElement 
                    implements javax.xml.soap.SOAPEnvelope {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private SOAPHeader 
                    header;
    
                    private SOAPBody 
                    body;
    
                    public java.util.Vector 
                    trailers;
    
                    private org.apache.axis.soap.SOAPConstants 
                    soapConstants;
    
                    private org.apache.axis.schema.SchemaVersion 
                    schemaVersion;
    
                    public String 
                    messageType;
    
                    private boolean 
                    recorded;
    
                    public void SOAPEnvelope();
    
                    public void SOAPEnvelope(org.apache.axis.soap.SOAPConstants);
    
                    public void SOAPEnvelope(org.apache.axis.soap.SOAPConstants, org.apache.axis.schema.SchemaVersion);
    
                    public void SOAPEnvelope(boolean, org.apache.axis.soap.SOAPConstants);
    
                    public void SOAPEnvelope(boolean, org.apache.axis.soap.SOAPConstants, org.apache.axis.schema.SchemaVersion);
    
                    public void SOAPEnvelope(java.io.InputStream) 
                    throws org.xml.sax.SAXException;
    
                    public String 
                    getMessageType();
    
                    public void 
                    setMessageType(String);
    
                    public java.util.Vector 
                    getBodyElements() 
                    throws org.apache.axis.AxisFault;
    
                    public java.util.Vector 
                    getTrailers();
    
                    public SOAPBodyElement 
                    getFirstBody() 
                    throws org.apache.axis.AxisFault;
    
                    public java.util.Vector 
                    getHeaders() 
                    throws org.apache.axis.AxisFault;
    
                    public java.util.Vector 
                    getHeadersByActor(java.util.ArrayList);
    
                    public void 
                    addHeader(SOAPHeaderElement);
    
                    public void 
                    addBodyElement(SOAPBodyElement);
    
                    public void 
                    removeHeaders();
    
                    public void 
                    setHeader(SOAPHeader);
    
                    public void 
                    removeHeader(SOAPHeaderElement);
    
                    public void 
                    removeBody();
    
                    public void 
                    setBody(SOAPBody);
    
                    public void 
                    removeBodyElement(SOAPBodyElement);
    
                    public void 
                    removeTrailer(MessageElement);
    
                    public void 
                    clearBody();
    
                    public void 
                    addTrailer(MessageElement);
    
                    public SOAPHeaderElement 
                    getHeaderByName(String, String) 
                    throws org.apache.axis.AxisFault;
    
                    public SOAPHeaderElement 
                    getHeaderByName(String, String, boolean) 
                    throws org.apache.axis.AxisFault;
    
                    public SOAPBodyElement 
                    getBodyByName(String, String) 
                    throws org.apache.axis.AxisFault;
    
                    public java.util.Enumeration 
                    getHeadersByName(String, String) 
                    throws org.apache.axis.AxisFault;
    
                    public java.util.Enumeration 
                    getHeadersByName(String, String, boolean) 
                    throws org.apache.axis.AxisFault;
    
                    public void 
                    outputImpl(org.apache.axis.encoding.SerializationContext) 
                    throws Exception;
    
                    public org.apache.axis.soap.SOAPConstants 
                    getSOAPConstants();
    
                    public void 
                    setSoapConstants(org.apache.axis.soap.SOAPConstants);
    
                    public org.apache.axis.schema.SchemaVersion 
                    getSchemaVersion();
    
                    public void 
                    setSchemaVersion(org.apache.axis.schema.SchemaVersion);
    
                    public javax.xml.soap.SOAPBody 
                    addBody() 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.SOAPHeader 
                    addHeader() 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.Name 
                    createName(String) 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.Name 
                    createName(String, String, String) 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.SOAPBody 
                    getBody() 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.SOAPHeader 
                    getHeader() 
                    throws javax.xml.soap.SOAPException;
    
                    public void 
                    setSAAJEncodingCompliance(boolean);
    
                    public org.w3c.dom.Node 
                    removeChild(org.w3c.dom.Node) 
                    throws org.w3c.dom.DOMException;
    
                    public org.w3c.dom.Node 
                    cloneNode(boolean);
    
                    protected void 
                    childDeepCloned(NodeImpl, NodeImpl);
    
                    public void 
                    setOwnerDocument(org.apache.axis.SOAPPart);
    
                    private void 
                    setOwnerDocumentForChildren(java.util.List, org.apache.axis.SOAPPart);
    
                    public void 
                    setRecorded(boolean);
    
                    public boolean 
                    isRecorded();
    
                    public void 
                    setDirty(boolean);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/message/SOAPFault.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class SOAPFault 
                    extends SOAPBodyElement 
                    implements javax.xml.soap.SOAPFault {
    
                    protected org.apache.axis.AxisFault 
                    fault;
    
                    protected String 
                    prefix;
    
                    private java.util.Locale 
                    locale;
    
                    protected Detail 
                    detail;
    
                    public void SOAPFault(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.apache.axis.AxisFault;
    
                    public void SOAPFault(org.apache.axis.AxisFault);
    
                    public void 
                    outputImpl(org.apache.axis.encoding.SerializationContext) 
                    throws Exception;
    
                    private javax.xml.namespace.QName 
                    getFaultQName(Class, org.apache.axis.encoding.SerializationContext);
    
                    public org.apache.axis.AxisFault 
                    getFault();
    
                    public void 
                    setFault(org.apache.axis.AxisFault);
    
                    public void 
                    setFaultCode(String) 
                    throws javax.xml.soap.SOAPException;
    
                    public String 
                    getFaultCode();
    
                    public void 
                    setFaultActor(String) 
                    throws javax.xml.soap.SOAPException;
    
                    public String 
                    getFaultActor();
    
                    public void 
                    setFaultString(String) 
                    throws javax.xml.soap.SOAPException;
    
                    public String 
                    getFaultString();
    
                    public javax.xml.soap.Detail 
                    getDetail();
    
                    public javax.xml.soap.Detail 
                    addDetail() 
                    throws javax.xml.soap.SOAPException;
    
                    public void 
                    setFaultCode(javax.xml.soap.Name) 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.Name 
                    getFaultCodeAsName();
    
                    public void 
                    setFaultString(String, java.util.Locale) 
                    throws javax.xml.soap.SOAPException;
    
                    public java.util.Locale 
                    getFaultStringLocale();
    
                    private Detail 
                    convertToDetail(org.apache.axis.AxisFault) 
                    throws javax.xml.soap.SOAPException;
    
                    private 
                    static void 
                    copyChildren(javax.xml.soap.SOAPElement, org.w3c.dom.Element) 
                    throws javax.xml.soap.SOAPException;
}

                

org/apache/axis/message/SOAPFaultBuilder.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class SOAPFaultBuilder 
                    extends SOAPHandler 
                    implements org.apache.axis.encoding.Callback {
    boolean 
                    waiting;
    boolean 
                    passedEnd;
    
                    protected SOAPFault 
                    element;
    
                    protected org.apache.axis.encoding.DeserializationContext 
                    context;
    
                    static java.util.HashMap 
                    fields_soap11;
    
                    static java.util.HashMap 
                    fields_soap12;
    
                    protected javax.xml.namespace.QName 
                    faultCode;
    
                    protected javax.xml.namespace.QName[] 
                    faultSubCode;
    
                    protected String 
                    faultString;
    
                    protected String 
                    faultActor;
    
                    protected org.w3c.dom.Element[] 
                    faultDetails;
    
                    protected String 
                    faultNode;
    
                    protected SOAPFaultCodeBuilder 
                    code;
    
                    protected Class 
                    faultClass;
    
                    protected Object 
                    faultData;
    
                    private 
                    static java.util.HashMap 
                    TYPES;
    
                    public void SOAPFaultBuilder(SOAPFault, org.apache.axis.encoding.DeserializationContext);
    
                    public void 
                    startElement(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    void 
                    setFaultData(Object);
    
                    public void 
                    setFaultClass(Class);
    
                    public void 
                    endElement(String, String, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    void 
                    setWaiting(boolean);
    
                    private void 
                    createFault();
    
                    public SOAPHandler 
                    onStartChild(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    onEndChild(String, String, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    setValue(Object, Object);
    
                    private Class 
                    ConvertWrapper(Class);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/message/SOAPFaultCodeBuilder.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class SOAPFaultCodeBuilder 
                    extends SOAPHandler 
                    implements org.apache.axis.encoding.Callback {
    
                    protected javax.xml.namespace.QName 
                    faultCode;
    
                    protected SOAPFaultCodeBuilder 
                    next;
    
                    public void SOAPFaultCodeBuilder();
    
                    public javax.xml.namespace.QName 
                    getFaultCode();
    
                    public SOAPFaultCodeBuilder 
                    getNext();
    
                    public SOAPHandler 
                    onStartChild(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    setValue(Object, Object);
}

                

org/apache/axis/message/SOAPFaultDetailsBuilder.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class SOAPFaultDetailsBuilder 
                    extends SOAPHandler 
                    implements org.apache.axis.encoding.Callback {
    
                    protected SOAPFaultBuilder 
                    builder;
    
                    public void SOAPFaultDetailsBuilder(SOAPFaultBuilder);
    
                    public void 
                    startElement(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public SOAPHandler 
                    onStartChild(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    setValue(Object, Object);
}

                

org/apache/axis/message/SOAPFaultElement.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class SOAPFaultElement 
                    extends MessageElement 
                    implements javax.xml.soap.SOAPFaultElement {
    
                    public void SOAPFaultElement();
}

                

org/apache/axis/message/SOAPFaultReasonBuilder.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class SOAPFaultReasonBuilder 
                    extends SOAPHandler 
                    implements org.apache.axis.encoding.Callback {
    
                    private java.util.ArrayList 
                    text;
    
                    private SOAPFaultBuilder 
                    faultBuilder;
    
                    public void SOAPFaultReasonBuilder(SOAPFaultBuilder);
    
                    public SOAPHandler 
                    onStartChild(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    setValue(Object, Object);
    
                    public java.util.ArrayList 
                    getText();
}

                

org/apache/axis/message/SOAPHandler.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class SOAPHandler 
                    extends org.xml.sax.helpers.DefaultHandler {
    
                    public MessageElement 
                    myElement;
    
                    private MessageElement[] 
                    myElements;
    
                    private int 
                    myIndex;
    
                    private java.io.CharArrayWriter 
                    val;
    
                    public void SOAPHandler();
    
                    public void SOAPHandler(MessageElement[], int);
    
                    public void 
                    startElement(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public MessageElement 
                    makeNewElement(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.apache.axis.AxisFault;
    
                    public void 
                    endElement(String, String, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public SOAPHandler 
                    onStartChild(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    private void 
                    addTextNode() 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    onEndChild(String, String, org.apache.axis.encoding.DeserializationContext) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    characters(char[], int, int) 
                    throws org.xml.sax.SAXException;
}

                

org/apache/axis/message/SOAPHeader.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class SOAPHeader 
                    extends MessageElement 
                    implements javax.xml.soap.SOAPHeader {
    
                    private 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private org.apache.axis.soap.SOAPConstants 
                    soapConstants;
    void SOAPHeader(SOAPEnvelope, org.apache.axis.soap.SOAPConstants);
    
                    public void SOAPHeader(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext, org.apache.axis.soap.SOAPConstants) 
                    throws org.apache.axis.AxisFault;
    
                    public void 
                    setParentElement(javax.xml.soap.SOAPElement) 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.SOAPHeaderElement 
                    addHeaderElement(javax.xml.soap.Name) 
                    throws javax.xml.soap.SOAPException;
    
                    private java.util.Vector 
                    findHeaderElements(String);
    
                    public java.util.Iterator 
                    examineHeaderElements(String);
    
                    public java.util.Iterator 
                    extractHeaderElements(String);
    
                    public java.util.Iterator 
                    examineMustUnderstandHeaderElements(String);
    
                    public java.util.Iterator 
                    examineAllHeaderElements();
    
                    public java.util.Iterator 
                    extractAllHeaderElements();
    java.util.Vector 
                    getHeaders();
    java.util.Vector 
                    getHeadersByActor(java.util.ArrayList);
    void 
                    addHeader(SOAPHeaderElement);
    void 
                    removeHeader(SOAPHeaderElement);
    SOAPHeaderElement 
                    getHeaderByName(String, String, boolean);
    java.util.Enumeration 
                    getHeadersByName(String, String, boolean);
    
                    protected void 
                    outputImpl(org.apache.axis.encoding.SerializationContext) 
                    throws Exception;
    
                    public void 
                    addChild(MessageElement) 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.SOAPElement 
                    addChildElement(javax.xml.soap.SOAPElement) 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.SOAPElement 
                    addChildElement(javax.xml.soap.Name) 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.SOAPElement 
                    addChildElement(String) 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.SOAPElement 
                    addChildElement(String, String) 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.SOAPElement 
                    addChildElement(String, String, String) 
                    throws javax.xml.soap.SOAPException;
    
                    public org.w3c.dom.Node 
                    appendChild(org.w3c.dom.Node) 
                    throws org.w3c.dom.DOMException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/message/SOAPHeaderElement.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class SOAPHeaderElement 
                    extends MessageElement 
                    implements javax.xml.soap.SOAPHeaderElement {
    
                    protected boolean 
                    processed;
    
                    protected String 
                    actor;
    
                    protected boolean 
                    mustUnderstand;
    
                    protected boolean 
                    relay;
    boolean 
                    alreadySerialized;
    
                    public void SOAPHeaderElement(String, String);
    
                    public void SOAPHeaderElement(javax.xml.soap.Name);
    
                    public void SOAPHeaderElement(javax.xml.namespace.QName);
    
                    public void SOAPHeaderElement(String, String, Object);
    
                    public void SOAPHeaderElement(javax.xml.namespace.QName, Object);
    
                    public void SOAPHeaderElement(org.w3c.dom.Element);
    
                    public void 
                    setParentElement(javax.xml.soap.SOAPElement) 
                    throws javax.xml.soap.SOAPException;
    
                    public void SOAPHeaderElement(String, String, String, org.xml.sax.Attributes, org.apache.axis.encoding.DeserializationContext) 
                    throws org.apache.axis.AxisFault;
    
                    private void 
                    setMustUnderstandFromString(String, boolean) 
                    throws org.apache.axis.AxisFault;
    
                    public boolean 
                    getMustUnderstand();
    
                    public void 
                    setMustUnderstand(boolean);
    
                    public String 
                    getActor();
    
                    public void 
                    setActor(String);
    
                    public String 
                    getRole();
    
                    public void 
                    setRole(String);
    
                    public boolean 
                    getRelay();
    
                    public void 
                    setRelay(boolean);
    
                    public void 
                    setProcessed(boolean);
    
                    public boolean 
                    isProcessed();
    
                    protected void 
                    outputImpl(org.apache.axis.encoding.SerializationContext) 
                    throws Exception;
    
                    public org.w3c.dom.NamedNodeMap 
                    getAttributes();
    
                    private org.apache.axis.soap.SOAPConstants 
                    getSOAPConstants();
}

                

org/apache/axis/message/Text.class

                    package org.apache.axis.message;

                    public 
                    synchronized 
                    class Text 
                    extends NodeImpl 
                    implements javax.xml.soap.Text {
    
                    public void Text(org.w3c.dom.CharacterData);
    
                    public void Text(String);
    
                    public void Text();
    
                    public boolean 
                    isComment();
    
                    public String 
                    getNodeValue() 
                    throws org.w3c.dom.DOMException;
    
                    public void 
                    setNodeValue(String) 
                    throws org.w3c.dom.DOMException;
    
                    public org.w3c.dom.Text 
                    splitText(int) 
                    throws org.w3c.dom.DOMException;
    
                    public String 
                    getData() 
                    throws org.w3c.dom.DOMException;
    
                    public void 
                    setData(String) 
                    throws org.w3c.dom.DOMException;
    
                    public int 
                    getLength();
    
                    public String 
                    substringData(int, int) 
                    throws org.w3c.dom.DOMException;
    
                    public void 
                    appendData(String) 
                    throws org.w3c.dom.DOMException;
    
                    public void 
                    insertData(int, String) 
                    throws org.w3c.dom.DOMException;
    
                    public void 
                    replaceData(int, int, String) 
                    throws org.w3c.dom.DOMException;
    
                    public void 
                    deleteData(int, int) 
                    throws org.w3c.dom.DOMException;
    
                    public String 
                    toString();
    
                    public boolean 
                    equals(Object);
    
                    public int 
                    hashCode();
}

                

org/apache/axis/monitor/SOAPMonitorConstants.class

                    package org.apache.axis.monitor;

                    public 
                    synchronized 
                    class SOAPMonitorConstants {
    
                    public 
                    static 
                    final int 
                    SOAP_MONITOR_REQUEST = 0;
    
                    public 
                    static 
                    final int 
                    SOAP_MONITOR_RESPONSE = 1;
    
                    public 
                    static 
                    final String 
                    SOAP_MONITOR_PORT = SOAPMonitorPort;
    
                    public 
                    static 
                    final String 
                    SOAP_MONITOR_ID = SOAPMonitorId;
    
                    public void SOAPMonitorConstants();
}

                

org/apache/axis/monitor/SOAPMonitorService$ConnectionThread.class

                    package org.apache.axis.monitor;

                    synchronized 
                    class SOAPMonitorService$ConnectionThread 
                    implements Runnable {
    
                    private java.net.Socket 
                    socket;
    
                    private java.io.ObjectInputStream 
                    in;
    
                    private java.io.ObjectOutputStream 
                    out;
    
                    private boolean 
                    closed;
    
                    public void SOAPMonitorService$ConnectionThread(SOAPMonitorService, java.net.Socket);
    
                    public void 
                    close();
    
                    public void 
                    run();
    
                    public 
                    synchronized void 
                    publishMessage(Long, Integer, String, String);
}

                

org/apache/axis/monitor/SOAPMonitorService$ServerSocketThread.class

                    package org.apache.axis.monitor;

                    synchronized 
                    class SOAPMonitorService$ServerSocketThread 
                    implements Runnable {
    void SOAPMonitorService$ServerSocketThread(SOAPMonitorService);
    
                    public void 
                    run();
}

                

org/apache/axis/monitor/SOAPMonitorService.class

                    package org.apache.axis.monitor;

                    public 
                    synchronized 
                    class SOAPMonitorService 
                    extends javax.servlet.http.HttpServlet {
    
                    private 
                    static java.net.ServerSocket 
                    server_socket;
    
                    private 
                    static java.util.Vector 
                    connections;
    
                    public void SOAPMonitorService();
    
                    public 
                    static void 
                    publishMessage(Long, Integer, String, String);
    
                    public void 
                    init() 
                    throws javax.servlet.ServletException;
    
                    public void 
                    destroy();
    
                    public void 
                    doGet(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse) 
                    throws java.io.IOException, javax.servlet.ServletException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/providers/BSFProvider.class

                    package org.apache.axis.providers;

                    public 
                    synchronized 
                    class BSFProvider 
                    extends BasicProvider {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public 
                    static 
                    final String 
                    OPTION_LANGUAGE = language;
    
                    public 
                    static 
                    final String 
                    OPTION_SRC = src;
    
                    public 
                    static 
                    final String 
                    OPTION_SCRIPT = script;
    
                    public void BSFProvider();
    
                    public void 
                    invoke(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    public void 
                    initServiceDesc(org.apache.axis.handlers.soap.SOAPService, org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/providers/BasicProvider.class

                    package org.apache.axis.providers;

                    public 
                    abstract 
                    synchronized 
                    class BasicProvider 
                    extends org.apache.axis.handlers.BasicHandler {
    
                    public 
                    static 
                    final String 
                    OPTION_WSDL_PORTTYPE = wsdlPortType;
    
                    public 
                    static 
                    final String 
                    OPTION_WSDL_SERVICEELEMENT = wsdlServiceElement;
    
                    public 
                    static 
                    final String 
                    OPTION_WSDL_SERVICEPORT = wsdlServicePort;
    
                    public 
                    static 
                    final String 
                    OPTION_WSDL_TARGETNAMESPACE = wsdlTargetNamespace;
    
                    public 
                    static 
                    final String 
                    OPTION_WSDL_INPUTSCHEMA = wsdlInputSchema;
    
                    public 
                    static 
                    final String 
                    OPTION_WSDL_SOAPACTION_MODE = wsdlSoapActionMode;
    
                    public 
                    static 
                    final String 
                    OPTION_EXTRACLASSES = extraClasses;
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    protected 
                    static org.apache.commons.logging.Log 
                    entLog;
    
                    public void BasicProvider();
    
                    public 
                    abstract void 
                    initServiceDesc(org.apache.axis.handlers.soap.SOAPService, org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    public void 
                    addOperation(String, javax.xml.namespace.QName);
    
                    public String 
                    getOperationName(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName[] 
                    getOperationQNames();
    
                    public String[] 
                    getOperationNames();
    
                    public void 
                    generateWSDL(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/providers/java/CORBAProvider.class

                    package org.apache.axis.providers.java;

                    public 
                    synchronized 
                    class CORBAProvider 
                    extends RPCProvider {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private 
                    static 
                    final String 
                    DEFAULT_ORB_INITIAL_HOST = localhost;
    
                    private 
                    static 
                    final String 
                    DEFAULT_ORB_INITIAL_PORT = 900;
    
                    protected 
                    static org.apache.commons.logging.Log 
                    entLog;
    
                    public 
                    static 
                    final String 
                    OPTION_ORB_INITIAL_HOST = ORBInitialHost;
    
                    public 
                    static 
                    final String 
                    OPTION_ORB_INITIAL_PORT = ORBInitialPort;
    
                    public 
                    static 
                    final String 
                    OPTION_NAME_ID = NameID;
    
                    public 
                    static 
                    final String 
                    OPTION_NAME_KIND = NameKind;
    
                    public 
                    static 
                    final String 
                    OPTION_INTERFACE_CLASSNAME = InterfaceClassName;
    
                    public 
                    static 
                    final String 
                    OPTION_HELPER_CLASSNAME = HelperClassName;
    
                    private 
                    static 
                    final Class[] 
                    CORBA_OBJECT_CLASS;
    
                    public void CORBAProvider();
    
                    protected Object 
                    makeNewServiceObject(org.apache.axis.MessageContext, String) 
                    throws Exception;
    
                    protected String 
                    getServiceClassNameOptionName();
    
                    protected String 
                    getStrOption(String, org.apache.axis.Handler);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/providers/java/EJBProvider.class

                    package org.apache.axis.providers.java;

                    public 
                    synchronized 
                    class EJBProvider 
                    extends RPCProvider {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    protected 
                    static org.apache.commons.logging.Log 
                    entLog;
    
                    public 
                    static 
                    final String 
                    OPTION_BEANNAME = beanJndiName;
    
                    public 
                    static 
                    final String 
                    OPTION_HOMEINTERFACENAME = homeInterfaceName;
    
                    public 
                    static 
                    final String 
                    OPTION_REMOTEINTERFACENAME = remoteInterfaceName;
    
                    public 
                    static 
                    final String 
                    OPTION_LOCALHOMEINTERFACENAME = localHomeInterfaceName;
    
                    public 
                    static 
                    final String 
                    OPTION_LOCALINTERFACENAME = localInterfaceName;
    
                    public 
                    static 
                    final String 
                    jndiContextClass = jndiContextClass;
    
                    public 
                    static 
                    final String 
                    jndiURL = jndiURL;
    
                    public 
                    static 
                    final String 
                    jndiUsername = jndiUser;
    
                    public 
                    static 
                    final String 
                    jndiPassword = jndiPassword;
    
                    protected 
                    static 
                    final Class[] 
                    empty_class_array;
    
                    protected 
                    static 
                    final Object[] 
                    empty_object_array;
    
                    private 
                    static javax.naming.InitialContext 
                    cached_context;
    
                    public void EJBProvider();
    
                    protected Object 
                    makeNewServiceObject(org.apache.axis.MessageContext, String) 
                    throws Exception;
    
                    private Object 
                    createRemoteEJB(org.apache.axis.MessageContext, String, Class) 
                    throws Exception;
    
                    private Object 
                    createLocalEJB(org.apache.axis.MessageContext, String, Class) 
                    throws Exception;
    
                    private boolean 
                    isRemoteEjb(org.apache.axis.handlers.soap.SOAPService);
    
                    private boolean 
                    isLocalEjb(org.apache.axis.handlers.soap.SOAPService);
    
                    protected String 
                    getServiceClassNameOptionName();
    
                    protected String 
                    getStrOption(String, org.apache.axis.Handler);
    
                    private Class 
                    getRemoteInterfaceClassFromHome(String, org.apache.axis.handlers.soap.SOAPService, org.apache.axis.MessageContext) 
                    throws Exception;
    
                    protected Class 
                    getServiceClass(String, org.apache.axis.handlers.soap.SOAPService, org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    private Object 
                    getEJBHome(org.apache.axis.handlers.soap.SOAPService, org.apache.axis.MessageContext, String) 
                    throws org.apache.axis.AxisFault;
    
                    protected javax.naming.InitialContext 
                    getCachedContext() 
                    throws javax.naming.NamingException;
    
                    protected javax.naming.InitialContext 
                    getContext(java.util.Properties) 
                    throws org.apache.axis.AxisFault, javax.naming.NamingException;
    
                    protected Object 
                    getEJBHome(javax.naming.InitialContext, String) 
                    throws org.apache.axis.AxisFault, javax.naming.NamingException;
    
                    protected Object 
                    invokeMethod(org.apache.axis.MessageContext, reflect.Method, Object, Object[]) 
                    throws Exception;
    
                    private Throwable 
                    getCause(Throwable);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/providers/java/JavaProvider$LockObject.class

                    package org.apache.axis.providers.java;

                    synchronized 
                    class JavaProvider$LockObject 
                    implements java.io.Serializable {
    
                    private boolean 
                    completed;
    void JavaProvider$LockObject(JavaProvider);
    
                    synchronized void 
                    waitUntilComplete() 
                    throws InterruptedException;
    
                    synchronized void 
                    complete();
}

                

org/apache/axis/providers/java/JavaProvider.class

                    package org.apache.axis.providers.java;

                    public 
                    abstract 
                    synchronized 
                    class JavaProvider 
                    extends org.apache.axis.providers.BasicProvider {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    protected 
                    static org.apache.commons.logging.Log 
                    entLog;
    
                    public 
                    static 
                    final String 
                    OPTION_CLASSNAME = className;
    
                    public 
                    static 
                    final String 
                    OPTION_ALLOWEDMETHODS = allowedMethods;
    
                    public 
                    static 
                    final String 
                    OPTION_SCOPE = scope;
    
                    public void JavaProvider();
    
                    public Object 
                    getServiceObject(org.apache.axis.MessageContext, org.apache.axis.Handler, String, javax.xml.rpc.holders.IntHolder) 
                    throws Exception;
    
                    private Object 
                    getApplicationScopedObject(org.apache.axis.MessageContext, String, String, javax.xml.rpc.holders.IntHolder) 
                    throws Exception;
    
                    private Object 
                    getSessionServiceObject(org.apache.axis.session.Session, String, org.apache.axis.MessageContext, String) 
                    throws Exception;
    
                    private Object 
                    getNewServiceObject(org.apache.axis.MessageContext, String) 
                    throws Exception;
    
                    public 
                    abstract void 
                    processMessage(org.apache.axis.MessageContext, org.apache.axis.message.SOAPEnvelope, org.apache.axis.message.SOAPEnvelope, Object) 
                    throws Exception;
    
                    public void 
                    invoke(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    private String 
                    getAllowedMethods(org.apache.axis.Handler);
    
                    protected Object 
                    makeNewServiceObject(org.apache.axis.MessageContext, String) 
                    throws Exception;
    
                    protected String 
                    getServiceClassName(org.apache.axis.Handler);
    
                    protected String 
                    getServiceClassNameOptionName();
    
                    protected Class 
                    getServiceClass(String, org.apache.axis.handlers.soap.SOAPService, org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    public void 
                    initServiceDesc(org.apache.axis.handlers.soap.SOAPService, org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/providers/java/MsgProvider.class

                    package org.apache.axis.providers.java;

                    public 
                    synchronized 
                    class MsgProvider 
                    extends JavaProvider {
    
                    public void MsgProvider();
    
                    public void 
                    processMessage(org.apache.axis.MessageContext, org.apache.axis.message.SOAPEnvelope, org.apache.axis.message.SOAPEnvelope, Object) 
                    throws Exception;
}

                

org/apache/axis/providers/java/RMIProvider.class

                    package org.apache.axis.providers.java;

                    public 
                    synchronized 
                    class RMIProvider 
                    extends RPCProvider {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    protected 
                    static org.apache.commons.logging.Log 
                    entLog;
    
                    public 
                    static 
                    final String 
                    OPTION_NAMING_LOOKUP = NamingLookup;
    
                    public 
                    static 
                    final String 
                    OPTION_INTERFACE_CLASSNAME = InterfaceClassName;
    
                    public void RMIProvider();
    
                    protected Object 
                    makeNewServiceObject(org.apache.axis.MessageContext, String) 
                    throws Exception;
    
                    protected String 
                    getServiceClassNameOptionName();
    
                    protected String 
                    getStrOption(String, org.apache.axis.Handler);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/providers/java/RPCProvider.class

                    package org.apache.axis.providers.java;

                    public 
                    synchronized 
                    class RPCProvider 
                    extends JavaProvider {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void RPCProvider();
    
                    public void 
                    processMessage(org.apache.axis.MessageContext, org.apache.axis.message.SOAPEnvelope, org.apache.axis.message.SOAPEnvelope, Object) 
                    throws Exception;
    
                    protected org.apache.axis.message.RPCElement 
                    getBody(org.apache.axis.message.SOAPEnvelope, org.apache.axis.MessageContext) 
                    throws Exception;
    
                    protected org.apache.axis.description.OperationDesc 
                    getOperationDesc(org.apache.axis.MessageContext, org.apache.axis.message.RPCElement) 
                    throws org.xml.sax.SAXException, org.apache.axis.AxisFault;
    
                    protected org.apache.axis.message.RPCElement 
                    createResponseBody(org.apache.axis.message.RPCElement, org.apache.axis.MessageContext, org.apache.axis.description.OperationDesc, org.apache.axis.description.ServiceDesc, Object, org.apache.axis.message.SOAPEnvelope, java.util.ArrayList) 
                    throws Exception;
    
                    protected Object 
                    invokeMethod(org.apache.axis.MessageContext, reflect.Method, Object, Object[]) 
                    throws Exception;
    
                    protected void 
                    checkMethodName(org.apache.axis.MessageContext, String, String) 
                    throws Exception;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/schema/SchemaVersion.class

                    package org.apache.axis.schema;

                    public 
                    abstract 
                    interface SchemaVersion 
                    extends java.io.Serializable {
    
                    public 
                    static 
                    final SchemaVersion 
                    SCHEMA_1999;
    
                    public 
                    static 
                    final SchemaVersion 
                    SCHEMA_2000;
    
                    public 
                    static 
                    final SchemaVersion 
                    SCHEMA_2001;
    
                    public 
                    abstract javax.xml.namespace.QName 
                    getNilQName();
    
                    public 
                    abstract String 
                    getXsiURI();
    
                    public 
                    abstract String 
                    getXsdURI();
    
                    public 
                    abstract void 
                    registerSchemaSpecificTypes(org.apache.axis.encoding.TypeMappingImpl);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/schema/SchemaVersion1999.class

                    package org.apache.axis.schema;

                    public 
                    synchronized 
                    class SchemaVersion1999 
                    implements SchemaVersion {
    
                    public 
                    static javax.xml.namespace.QName 
                    QNAME_NIL;
    void SchemaVersion1999();
    
                    public javax.xml.namespace.QName 
                    getNilQName();
    
                    public String 
                    getXsiURI();
    
                    public String 
                    getXsdURI();
    
                    public void 
                    registerSchemaSpecificTypes(org.apache.axis.encoding.TypeMappingImpl);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/schema/SchemaVersion2000.class

                    package org.apache.axis.schema;

                    public 
                    synchronized 
                    class SchemaVersion2000 
                    implements SchemaVersion {
    
                    public 
                    static javax.xml.namespace.QName 
                    QNAME_NIL;
    void SchemaVersion2000();
    
                    public javax.xml.namespace.QName 
                    getNilQName();
    
                    public String 
                    getXsiURI();
    
                    public String 
                    getXsdURI();
    
                    public void 
                    registerSchemaSpecificTypes(org.apache.axis.encoding.TypeMappingImpl);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/schema/SchemaVersion2001.class

                    package org.apache.axis.schema;

                    public 
                    synchronized 
                    class SchemaVersion2001 
                    implements SchemaVersion {
    
                    public 
                    static javax.xml.namespace.QName 
                    QNAME_NIL;
    void SchemaVersion2001();
    
                    public javax.xml.namespace.QName 
                    getNilQName();
    
                    public String 
                    getXsiURI();
    
                    public String 
                    getXsdURI();
    
                    public void 
                    registerSchemaSpecificTypes(org.apache.axis.encoding.TypeMappingImpl);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/security/AuthenticatedUser.class

                    package org.apache.axis.security;

                    public 
                    abstract 
                    interface AuthenticatedUser {
    
                    public 
                    abstract String 
                    getName();
}

                

org/apache/axis/security/SecurityProvider.class

                    package org.apache.axis.security;

                    public 
                    abstract 
                    interface SecurityProvider {
    
                    public 
                    abstract AuthenticatedUser 
                    authenticate(org.apache.axis.MessageContext);
    
                    public 
                    abstract boolean 
                    userMatches(AuthenticatedUser, String);
}

                

org/apache/axis/security/servlet/ServletAuthenticatedUser.class

                    package org.apache.axis.security.servlet;

                    public 
                    synchronized 
                    class ServletAuthenticatedUser 
                    implements org.apache.axis.security.AuthenticatedUser {
    
                    private String 
                    name;
    
                    private javax.servlet.http.HttpServletRequest 
                    req;
    
                    public void ServletAuthenticatedUser(javax.servlet.http.HttpServletRequest);
    
                    public String 
                    getName();
    
                    public javax.servlet.http.HttpServletRequest 
                    getRequest();
}

                

org/apache/axis/security/servlet/ServletSecurityProvider.class

                    package org.apache.axis.security.servlet;

                    public 
                    synchronized 
                    class ServletSecurityProvider 
                    implements org.apache.axis.security.SecurityProvider {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    static java.util.HashMap 
                    users;
    
                    public void ServletSecurityProvider();
    
                    public org.apache.axis.security.AuthenticatedUser 
                    authenticate(org.apache.axis.MessageContext);
    
                    public boolean 
                    userMatches(org.apache.axis.security.AuthenticatedUser, String);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/security/simple/SimpleAuthenticatedUser.class

                    package org.apache.axis.security.simple;

                    public 
                    synchronized 
                    class SimpleAuthenticatedUser 
                    implements org.apache.axis.security.AuthenticatedUser {
    
                    private String 
                    name;
    
                    public void SimpleAuthenticatedUser(String);
    
                    public String 
                    getName();
}

                

org/apache/axis/security/simple/SimpleSecurityProvider.class

                    package org.apache.axis.security.simple;

                    public 
                    synchronized 
                    class SimpleSecurityProvider 
                    implements org.apache.axis.security.SecurityProvider {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    java.util.HashMap 
                    users;
    java.util.HashMap 
                    perms;
    boolean 
                    initialized;
    
                    public void SimpleSecurityProvider();
    
                    private 
                    synchronized void 
                    initialize(org.apache.axis.MessageContext);
    
                    public org.apache.axis.security.AuthenticatedUser 
                    authenticate(org.apache.axis.MessageContext);
    
                    public boolean 
                    userMatches(org.apache.axis.security.AuthenticatedUser, String);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/server/AxisServer.class

                    package org.apache.axis.server;

                    public 
                    synchronized 
                    class AxisServer 
                    extends org.apache.axis.AxisEngine {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private 
                    static org.apache.commons.logging.Log 
                    tlog;
    
                    private 
                    static AxisServerFactory 
                    factory;
    
                    private org.apache.axis.AxisEngine 
                    clientEngine;
    
                    private boolean 
                    running;
    
                    public 
                    static AxisServer 
                    getServer(java.util.Map) 
                    throws org.apache.axis.AxisFault;
    
                    public void AxisServer();
    
                    public void AxisServer(org.apache.axis.EngineConfiguration);
    
                    public boolean 
                    isRunning();
    
                    public void 
                    start();
    
                    public void 
                    stop();
    
                    public 
                    synchronized org.apache.axis.AxisEngine 
                    getClientEngine();
    
                    public void 
                    invoke(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    private void 
                    initSOAPConstants(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    public void 
                    generateWSDL(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/server/AxisServerFactory.class

                    package org.apache.axis.server;

                    public 
                    abstract 
                    interface AxisServerFactory {
    
                    public 
                    abstract AxisServer 
                    getServer(java.util.Map) 
                    throws org.apache.axis.AxisFault;
}

                

org/apache/axis/server/DefaultAxisServerFactory.class

                    package org.apache.axis.server;

                    public 
                    synchronized 
                    class DefaultAxisServerFactory 
                    implements AxisServerFactory {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void DefaultAxisServerFactory();
    
                    public AxisServer 
                    getServer(java.util.Map) 
                    throws org.apache.axis.AxisFault;
    
                    private 
                    static AxisServer 
                    createServer(java.util.Map);
    
                    private 
                    static org.apache.axis.EngineConfiguration 
                    getEngineConfiguration(java.util.Map);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/server/JNDIAxisServerFactory.class

                    package org.apache.axis.server;

                    public 
                    synchronized 
                    class JNDIAxisServerFactory 
                    extends DefaultAxisServerFactory {
    
                    public void JNDIAxisServerFactory();
    
                    public AxisServer 
                    getServer(java.util.Map) 
                    throws org.apache.axis.AxisFault;
}

                

org/apache/axis/server/ParamList.class

                    package org.apache.axis.server;

                    public 
                    synchronized 
                    class ParamList 
                    extends java.util.Vector {
    
                    public void ParamList();
    
                    public void ParamList(java.util.Collection);
    
                    public void ParamList(int);
    
                    public void ParamList(int, int);
}

                

org/apache/axis/server/Transport.class

                    package org.apache.axis.server;

                    public 
                    synchronized 
                    class Transport 
                    extends org.apache.axis.SimpleTargetedChain {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void Transport();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/server/server-config.wsdd

http://xml.apache.org/axis/wsdd/

org/apache/axis/session/Session.class

                    package org.apache.axis.session;

                    public 
                    abstract 
                    interface Session {
    
                    public 
                    abstract Object 
                    get(String);
    
                    public 
                    abstract void 
                    set(String, Object);
    
                    public 
                    abstract void 
                    remove(String);
    
                    public 
                    abstract java.util.Enumeration 
                    getKeys();
    
                    public 
                    abstract void 
                    setTimeout(int);
    
                    public 
                    abstract int 
                    getTimeout();
    
                    public 
                    abstract void 
                    touch();
    
                    public 
                    abstract void 
                    invalidate();
    
                    public 
                    abstract Object 
                    getLockObject();
}

                

org/apache/axis/session/SimpleSession.class

                    package org.apache.axis.session;

                    public 
                    synchronized 
                    class SimpleSession 
                    implements Session {
    
                    private java.util.Hashtable 
                    rep;
    
                    private int 
                    timeout;
    
                    private long 
                    lastTouched;
    
                    public void SimpleSession();
    
                    public Object 
                    get(String);
    
                    public void 
                    set(String, Object);
    
                    public void 
                    remove(String);
    
                    public java.util.Enumeration 
                    getKeys();
    
                    public void 
                    setTimeout(int);
    
                    public int 
                    getTimeout();
    
                    public void 
                    touch();
    
                    public void 
                    invalidate();
    
                    public long 
                    getLastAccessTime();
    
                    public 
                    synchronized Object 
                    getLockObject();
}

                

org/apache/axis/soap/MessageFactoryImpl.class

                    package org.apache.axis.soap;

                    public 
                    synchronized 
                    class MessageFactoryImpl 
                    extends javax.xml.soap.MessageFactory {
    
                    public void MessageFactoryImpl();
    
                    public javax.xml.soap.SOAPMessage 
                    createMessage() 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.SOAPMessage 
                    createMessage(javax.xml.soap.MimeHeaders, java.io.InputStream) 
                    throws java.io.IOException, javax.xml.soap.SOAPException;
}

                

org/apache/axis/soap/SOAP11Constants.class

                    package org.apache.axis.soap;

                    public 
                    synchronized 
                    class SOAP11Constants 
                    implements SOAPConstants {
    
                    private 
                    static javax.xml.namespace.QName 
                    headerQName;
    
                    private 
                    static javax.xml.namespace.QName 
                    bodyQName;
    
                    private 
                    static javax.xml.namespace.QName 
                    faultQName;
    
                    private 
                    static javax.xml.namespace.QName 
                    roleQName;
    
                    public void SOAP11Constants();
    
                    public String 
                    getEnvelopeURI();
    
                    public String 
                    getEncodingURI();
    
                    public javax.xml.namespace.QName 
                    getHeaderQName();
    
                    public javax.xml.namespace.QName 
                    getBodyQName();
    
                    public javax.xml.namespace.QName 
                    getFaultQName();
    
                    public javax.xml.namespace.QName 
                    getRoleAttributeQName();
    
                    public String 
                    getContentType();
    
                    public String 
                    getNextRoleURI();
    
                    public String 
                    getAttrHref();
    
                    public String 
                    getAttrItemType();
    
                    public javax.xml.namespace.QName 
                    getVerMismatchFaultCodeQName();
    
                    public javax.xml.namespace.QName 
                    getMustunderstandFaultQName();
    
                    public javax.xml.namespace.QName 
                    getArrayType();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/soap/SOAP12Constants.class

                    package org.apache.axis.soap;

                    public 
                    synchronized 
                    class SOAP12Constants 
                    implements SOAPConstants {
    
                    private 
                    static javax.xml.namespace.QName 
                    headerQName;
    
                    private 
                    static javax.xml.namespace.QName 
                    bodyQName;
    
                    private 
                    static javax.xml.namespace.QName 
                    faultQName;
    
                    private 
                    static javax.xml.namespace.QName 
                    roleQName;
    
                    public 
                    static 
                    final String 
                    PROP_WEBMETHOD = soap12.webmethod;
    
                    public void SOAP12Constants();
    
                    public String 
                    getEnvelopeURI();
    
                    public String 
                    getEncodingURI();
    
                    public javax.xml.namespace.QName 
                    getHeaderQName();
    
                    public javax.xml.namespace.QName 
                    getBodyQName();
    
                    public javax.xml.namespace.QName 
                    getFaultQName();
    
                    public javax.xml.namespace.QName 
                    getRoleAttributeQName();
    
                    public String 
                    getContentType();
    
                    public String 
                    getNextRoleURI();
    
                    public String 
                    getAttrHref();
    
                    public String 
                    getAttrItemType();
    
                    public javax.xml.namespace.QName 
                    getVerMismatchFaultCodeQName();
    
                    public javax.xml.namespace.QName 
                    getMustunderstandFaultQName();
    
                    public javax.xml.namespace.QName 
                    getArrayType();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/soap/SOAPConnectionFactoryImpl.class

                    package org.apache.axis.soap;

                    public 
                    synchronized 
                    class SOAPConnectionFactoryImpl 
                    extends javax.xml.soap.SOAPConnectionFactory {
    
                    public void SOAPConnectionFactoryImpl();
    
                    public javax.xml.soap.SOAPConnection 
                    createConnection() 
                    throws javax.xml.soap.SOAPException;
}

                

org/apache/axis/soap/SOAPConnectionImpl.class

                    package org.apache.axis.soap;

                    public 
                    synchronized 
                    class SOAPConnectionImpl 
                    extends javax.xml.soap.SOAPConnection {
    
                    private boolean 
                    closed;
    
                    private Integer 
                    timeout;
    
                    public void SOAPConnectionImpl();
    
                    public Integer 
                    getTimeout();
    
                    public void 
                    setTimeout(Integer);
    
                    public javax.xml.soap.SOAPMessage 
                    call(javax.xml.soap.SOAPMessage, Object) 
                    throws javax.xml.soap.SOAPException;
    
                    private String 
                    checkForSOAPActionHeader(javax.xml.soap.SOAPMessage);
    
                    public void 
                    close() 
                    throws javax.xml.soap.SOAPException;
}

                

org/apache/axis/soap/SOAPConstants.class

                    package org.apache.axis.soap;

                    public 
                    abstract 
                    interface SOAPConstants 
                    extends java.io.Serializable {
    
                    public 
                    static 
                    final SOAP11Constants 
                    SOAP11_CONSTANTS;
    
                    public 
                    static 
                    final SOAP12Constants 
                    SOAP12_CONSTANTS;
    
                    public 
                    abstract String 
                    getEnvelopeURI();
    
                    public 
                    abstract String 
                    getEncodingURI();
    
                    public 
                    abstract javax.xml.namespace.QName 
                    getFaultQName();
    
                    public 
                    abstract javax.xml.namespace.QName 
                    getHeaderQName();
    
                    public 
                    abstract javax.xml.namespace.QName 
                    getBodyQName();
    
                    public 
                    abstract javax.xml.namespace.QName 
                    getRoleAttributeQName();
    
                    public 
                    abstract String 
                    getContentType();
    
                    public 
                    abstract String 
                    getNextRoleURI();
    
                    public 
                    abstract String 
                    getAttrHref();
    
                    public 
                    abstract String 
                    getAttrItemType();
    
                    public 
                    abstract javax.xml.namespace.QName 
                    getVerMismatchFaultCodeQName();
    
                    public 
                    abstract javax.xml.namespace.QName 
                    getMustunderstandFaultQName();
    
                    public 
                    abstract javax.xml.namespace.QName 
                    getArrayType();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/soap/SOAPFactoryImpl.class

                    package org.apache.axis.soap;

                    public 
                    synchronized 
                    class SOAPFactoryImpl 
                    extends javax.xml.soap.SOAPFactory {
    
                    public void SOAPFactoryImpl();
    
                    public javax.xml.soap.SOAPElement 
                    createElement(javax.xml.soap.Name) 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.SOAPElement 
                    createElement(String) 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.SOAPElement 
                    createElement(String, String, String) 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.Detail 
                    createDetail() 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.Name 
                    createName(String, String, String) 
                    throws javax.xml.soap.SOAPException;
    
                    public javax.xml.soap.Name 
                    createName(String) 
                    throws javax.xml.soap.SOAPException;
}

                

org/apache/axis/strategies/InvocationStrategy.class

                    package org.apache.axis.strategies;

                    public 
                    synchronized 
                    class InvocationStrategy 
                    implements org.apache.axis.HandlerIterationStrategy {
    
                    public void InvocationStrategy();
    
                    public void 
                    visit(org.apache.axis.Handler, org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
}

                

org/apache/axis/strategies/WSDLGenStrategy.class

                    package org.apache.axis.strategies;

                    public 
                    synchronized 
                    class WSDLGenStrategy 
                    implements org.apache.axis.HandlerIterationStrategy {
    
                    public void WSDLGenStrategy();
    
                    public void 
                    visit(org.apache.axis.Handler, org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
}

                

org/apache/axis/transport/http/AbstractQueryStringHandler.class

                    package org.apache.axis.transport.http;

                    public 
                    abstract 
                    synchronized 
                    class AbstractQueryStringHandler 
                    implements QSHandler {
    
                    private boolean 
                    development;
    
                    protected org.apache.commons.logging.Log 
                    exceptionLog;
    
                    protected org.apache.commons.logging.Log 
                    log;
    
                    public void AbstractQueryStringHandler();
    
                    protected boolean 
                    isDevelopment();
    
                    protected void 
                    configureFromContext(org.apache.axis.MessageContext);
    
                    protected void 
                    processAxisFault(org.apache.axis.AxisFault);
    
                    protected void 
                    configureResponseFromAxisFault(javax.servlet.http.HttpServletResponse, org.apache.axis.AxisFault);
    
                    protected org.apache.axis.Message 
                    convertExceptionToAxisFault(Exception, org.apache.axis.Message);
    
                    private int 
                    getHttpServletResponseStatus(org.apache.axis.AxisFault);
    
                    private void 
                    logException(Exception);
    
                    protected void 
                    writeFault(java.io.PrintWriter, org.apache.axis.AxisFault);
}

                

org/apache/axis/transport/http/AdminServlet.class

                    package org.apache.axis.transport.http;

                    public 
                    synchronized 
                    class AdminServlet 
                    extends AxisServletBase {
    
                    private 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void AdminServlet();
    
                    public void 
                    doGet(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse) 
                    throws javax.servlet.ServletException, java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/transport/http/AutoRegisterServlet.class

                    package org.apache.axis.transport.http;

                    public 
                    synchronized 
                    class AutoRegisterServlet 
                    extends AxisServletBase {
    
                    private 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void AutoRegisterServlet();
    
                    public void 
                    init() 
                    throws javax.servlet.ServletException;
    
                    public void 
                    registerStream(java.io.InputStream) 
                    throws org.xml.sax.SAXException, javax.xml.parsers.ParserConfigurationException, java.io.IOException;
    
                    public void 
                    registerResource(String) 
                    throws org.xml.sax.SAXException, javax.xml.parsers.ParserConfigurationException, java.io.IOException;
    
                    public void 
                    registerFile(java.io.File) 
                    throws java.io.IOException, org.xml.sax.SAXException, javax.xml.parsers.ParserConfigurationException;
    
                    public String[] 
                    getResourcesToRegister();
    
                    private org.apache.axis.deployment.wsdd.WSDDDeployment 
                    getDeployment() 
                    throws org.apache.axis.AxisFault;
    
                    protected void 
                    logSuccess(String);
    
                    protected void 
                    autoRegister();
    
                    protected void 
                    registerAnythingElse();
    
                    public void 
                    registerAndLogResource(String);
    
                    protected void 
                    applyAndSaveSettings() 
                    throws org.apache.axis.AxisFault, org.apache.axis.ConfigurationException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/transport/http/AxisHTTPSessionListener.class

                    package org.apache.axis.transport.http;

                    public 
                    synchronized 
                    class AxisHTTPSessionListener 
                    implements javax.servlet.http.HttpSessionListener {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void AxisHTTPSessionListener();
    
                    static void 
                    destroySession(javax.servlet.http.HttpSession);
    
                    public void 
                    sessionCreated(javax.servlet.http.HttpSessionEvent);
    
                    public void 
                    sessionDestroyed(javax.servlet.http.HttpSessionEvent);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/transport/http/AxisHttpSession.class

                    package org.apache.axis.transport.http;

                    public 
                    synchronized 
                    class AxisHttpSession 
                    implements org.apache.axis.session.Session {
    
                    public 
                    static 
                    final String 
                    AXIS_SESSION_MARKER = axis.isAxisSession;
    
                    private javax.servlet.http.HttpSession 
                    rep;
    
                    private javax.servlet.http.HttpServletRequest 
                    req;
    
                    public void AxisHttpSession(javax.servlet.http.HttpServletRequest);
    
                    public void AxisHttpSession(javax.servlet.http.HttpSession);
    
                    public javax.servlet.http.HttpSession 
                    getRep();
    
                    private void 
                    setRep(javax.servlet.http.HttpSession);
    
                    public Object 
                    get(String);
    
                    public void 
                    set(String, Object);
    
                    public void 
                    remove(String);
    
                    public java.util.Enumeration 
                    getKeys();
    
                    public void 
                    setTimeout(int);
    
                    public int 
                    getTimeout();
    
                    public void 
                    touch();
    
                    public void 
                    invalidate();
    
                    protected void 
                    ensureSession();
    
                    public Object 
                    getLockObject();
}

                

org/apache/axis/transport/http/AxisServlet.class

                    package org.apache.axis.transport.http;

                    public 
                    synchronized 
                    class AxisServlet 
                    extends AxisServletBase {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private 
                    static org.apache.commons.logging.Log 
                    tlog;
    
                    private 
                    static org.apache.commons.logging.Log 
                    exceptionLog;
    
                    public 
                    static 
                    final String 
                    INIT_PROPERTY_TRANSPORT_NAME = transport.name;
    
                    public 
                    static 
                    final String 
                    INIT_PROPERTY_USE_SECURITY = use-servlet-security;
    
                    public 
                    static 
                    final String 
                    INIT_PROPERTY_ENABLE_LIST = axis.enableListQuery;
    
                    public 
                    static 
                    final String 
                    INIT_PROPERTY_JWS_CLASS_DIR = axis.jws.servletClassDir;
    
                    public 
                    static 
                    final String 
                    INIT_PROPERTY_DISABLE_SERVICES_LIST = axis.disableServiceList;
    
                    public 
                    static 
                    final String 
                    INIT_PROPERTY_SERVICES_PATH = axis.servicesPath;
    
                    private String 
                    transportName;
    
                    private org.apache.axis.Handler 
                    transport;
    
                    private org.apache.axis.security.servlet.ServletSecurityProvider 
                    securityProvider;
    
                    private String 
                    servicesPath;
    
                    private 
                    static boolean 
                    isDebug;
    
                    private boolean 
                    enableList;
    
                    private boolean 
                    disableServicesList;
    
                    private String 
                    jwsClassDir;
    
                    protected String 
                    getJWSClassDir();
    
                    public void AxisServlet();
    
                    public void 
                    init() 
                    throws javax.servlet.ServletException;
    
                    public void 
                    doGet(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse) 
                    throws javax.servlet.ServletException, java.io.IOException;
    
                    private void 
                    reportTroubleInGet(Throwable, javax.servlet.http.HttpServletResponse, java.io.PrintWriter);
    
                    protected void 
                    processAxisFault(org.apache.axis.AxisFault);
    
                    protected void 
                    logException(Throwable);
    
                    private void 
                    writeFault(java.io.PrintWriter, org.apache.axis.AxisFault);
    
                    protected void 
                    reportServiceInfo(javax.servlet.http.HttpServletResponse, java.io.PrintWriter, org.apache.axis.handlers.soap.SOAPService, String);
    
                    protected void 
                    reportNoWSDL(javax.servlet.http.HttpServletResponse, java.io.PrintWriter, String, org.apache.axis.AxisFault);
    
                    protected void 
                    reportAvailableServices(javax.servlet.http.HttpServletResponse, java.io.PrintWriter, javax.servlet.http.HttpServletRequest) 
                    throws org.apache.axis.ConfigurationException, org.apache.axis.AxisFault;
    
                    protected void 
                    reportCantGetAxisService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.io.PrintWriter);
    
                    protected void 
                    reportCantGetJWSService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.io.PrintWriter);
    
                    public void 
                    doPost(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse) 
                    throws javax.servlet.ServletException, java.io.IOException;
    
                    private void 
                    configureResponseFromAxisFault(javax.servlet.http.HttpServletResponse, org.apache.axis.AxisFault);
    
                    private org.apache.axis.Message 
                    convertExceptionToAxisFault(Exception, org.apache.axis.Message);
    
                    protected int 
                    getHttpServletResponseStatus(org.apache.axis.AxisFault);
    
                    private void 
                    sendResponse(String, javax.servlet.http.HttpServletResponse, org.apache.axis.Message) 
                    throws org.apache.axis.AxisFault, java.io.IOException;
    
                    private org.apache.axis.MessageContext 
                    createMessageContext(org.apache.axis.AxisEngine, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse);
    
                    private String 
                    getSoapAction(javax.servlet.http.HttpServletRequest) 
                    throws org.apache.axis.AxisFault;
    
                    protected String 
                    getDefaultJWSClassDir();
    
                    public void 
                    initQueryStringHandlers();
    
                    private boolean 
                    processQuery(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.io.PrintWriter) 
                    throws org.apache.axis.AxisFault;
    
                    private 
                    static String 
                    getRequestPath(javax.servlet.http.HttpServletRequest);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/transport/http/AxisServletBase.class

                    package org.apache.axis.transport.http;

                    public 
                    synchronized 
                    class AxisServletBase 
                    extends javax.servlet.http.HttpServlet {
    
                    protected org.apache.axis.server.AxisServer 
                    axisServer;
    
                    private 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private 
                    static boolean 
                    isDebug;
    
                    private 
                    static int 
                    loadCounter;
    
                    private 
                    static Object 
                    loadCounterLock;
    
                    protected 
                    static 
                    final String 
                    ATTR_AXIS_ENGINE = AxisEngine;
    
                    private String 
                    webInfPath;
    
                    private String 
                    homeDir;
    
                    private boolean 
                    isDevelopment;
    
                    private 
                    static 
                    final String 
                    INIT_PROPERTY_DEVELOPMENT_SYSTEM = axis.development.system;
    
                    public void AxisServletBase();
    
                    public void 
                    init() 
                    throws javax.servlet.ServletException;
    
                    public void 
                    destroy();
    
                    public org.apache.axis.server.AxisServer 
                    getEngine() 
                    throws org.apache.axis.AxisFault;
    
                    public 
                    static org.apache.axis.server.AxisServer 
                    getEngine(javax.servlet.http.HttpServlet) 
                    throws org.apache.axis.AxisFault;
    
                    private 
                    static void 
                    storeEngine(javax.servlet.http.HttpServlet, org.apache.axis.server.AxisServer);
    
                    private 
                    static org.apache.axis.server.AxisServer 
                    retrieveEngine(javax.servlet.http.HttpServlet);
    
                    protected 
                    static java.util.Map 
                    getEngineEnvironment(javax.servlet.http.HttpServlet);
    
                    public 
                    static int 
                    getLoadCounter();
    
                    protected 
                    static void 
                    incLockCounter();
    
                    protected 
                    static void 
                    decLockCounter();
    
                    protected void 
                    service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse) 
                    throws javax.servlet.ServletException, java.io.IOException;
    
                    protected String 
                    getWebappBase(javax.servlet.http.HttpServletRequest);
    
                    public javax.servlet.ServletContext 
                    getServletContext();
    
                    protected String 
                    getWebInfPath();
    
                    protected String 
                    getHomeDir();
    
                    protected String 
                    getOption(javax.servlet.ServletContext, String, String);
    
                    public boolean 
                    isDevelopment();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/transport/http/ChunkedInputStream.class

                    package org.apache.axis.transport.http;

                    public 
                    synchronized 
                    class ChunkedInputStream 
                    extends java.io.FilterInputStream {
    
                    protected long 
                    chunkSize;
    
                    protected 
                    volatile boolean 
                    closed;
    
                    private 
                    static 
                    final int 
                    maxCharLong;
    
                    private byte[] 
                    buf;
    
                    private void ChunkedInputStream();
    
                    public void ChunkedInputStream(java.io.InputStream);
    
                    public 
                    synchronized int 
                    read() 
                    throws java.io.IOException;
    
                    public int 
                    read(byte[]) 
                    throws java.io.IOException;
    
                    public 
                    synchronized int 
                    read(byte[], int, int) 
                    throws java.io.IOException;
    
                    public long 
                    skip(long) 
                    throws java.io.IOException;
    
                    public int 
                    available() 
                    throws java.io.IOException;
    
                    protected long 
                    getChunked() 
                    throws java.io.IOException;
    
                    public void 
                    close() 
                    throws java.io.IOException;
    
                    public void 
                    reset() 
                    throws java.io.IOException;
    
                    public boolean 
                    markSupported();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/transport/http/ChunkedOutputStream.class

                    package org.apache.axis.transport.http;

                    public 
                    synchronized 
                    class ChunkedOutputStream 
                    extends java.io.FilterOutputStream {
    boolean 
                    eos;
    
                    static 
                    final byte[] 
                    CRLF;
    
                    static 
                    final byte[] 
                    LAST_TOKEN;
    
                    private void ChunkedOutputStream();
    
                    public void ChunkedOutputStream(java.io.OutputStream);
    
                    public void 
                    write(int) 
                    throws java.io.IOException;
    
                    public void 
                    write(byte[]) 
                    throws java.io.IOException;
    
                    public void 
                    write(byte[], int, int) 
                    throws java.io.IOException;
    
                    public void 
                    eos() 
                    throws java.io.IOException;
    
                    public void 
                    close() 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/transport/http/CommonsHTTPSender$1.class

                    package org.apache.axis.transport.http;

                    synchronized 
                    class CommonsHTTPSender$1 
                    extends java.io.FilterInputStream {
    void CommonsHTTPSender$1(CommonsHTTPSender, java.io.InputStream, org.apache.commons.httpclient.HttpMethodBase) 
                    throws java.io.IOException;
    
                    public void 
                    close() 
                    throws java.io.IOException;
}

                

org/apache/axis/transport/http/CommonsHTTPSender$GzipMessageRequestEntity.class

                    package org.apache.axis.transport.http;

                    synchronized 
                    class CommonsHTTPSender$GzipMessageRequestEntity 
                    extends CommonsHTTPSender$MessageRequestEntity {
    
                    private java.io.ByteArrayOutputStream 
                    cachedStream;
    
                    public void CommonsHTTPSender$GzipMessageRequestEntity(org.apache.commons.httpclient.HttpMethodBase, org.apache.axis.Message);
    
                    public void CommonsHTTPSender$GzipMessageRequestEntity(org.apache.commons.httpclient.HttpMethodBase, org.apache.axis.Message, boolean);
    
                    public void 
                    writeRequest(java.io.OutputStream) 
                    throws java.io.IOException;
    
                    public long 
                    getContentLength();
}

                

org/apache/axis/transport/http/CommonsHTTPSender$MessageRequestEntity.class

                    package org.apache.axis.transport.http;

                    synchronized 
                    class CommonsHTTPSender$MessageRequestEntity 
                    implements org.apache.commons.httpclient.methods.RequestEntity {
    
                    private org.apache.commons.httpclient.HttpMethodBase 
                    method;
    
                    private org.apache.axis.Message 
                    message;
    boolean 
                    httpChunkStream;
    
                    public void CommonsHTTPSender$MessageRequestEntity(org.apache.commons.httpclient.HttpMethodBase, org.apache.axis.Message);
    
                    public void CommonsHTTPSender$MessageRequestEntity(org.apache.commons.httpclient.HttpMethodBase, org.apache.axis.Message, boolean);
    
                    public boolean 
                    isRepeatable();
    
                    public void 
                    writeRequest(java.io.OutputStream) 
                    throws java.io.IOException;
    
                    protected boolean 
                    isContentLengthNeeded();
    
                    public long 
                    getContentLength();
    
                    public String 
                    getContentType();
}

                

org/apache/axis/transport/http/CommonsHTTPSender.class

                    package org.apache.axis.transport.http;

                    public 
                    synchronized 
                    class CommonsHTTPSender 
                    extends org.apache.axis.handlers.BasicHandler {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    protected org.apache.commons.httpclient.HttpConnectionManager 
                    connectionManager;
    
                    protected org.apache.axis.components.net.CommonsHTTPClientProperties 
                    clientProperties;
    boolean 
                    httpChunkStream;
    
                    public void CommonsHTTPSender();
    
                    protected void 
                    initialize();
    
                    public void 
                    invoke(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    public void 
                    handleCookie(String, String, org.apache.axis.MessageContext);
    
                    private void 
                    fillHeaders(org.apache.axis.MessageContext, org.apache.commons.httpclient.HttpState, String, String, String, boolean);
    
                    private void 
                    addCookie(org.apache.commons.httpclient.HttpState, String, String, String, boolean);
    
                    private String 
                    cleanupCookie(String);
    
                    protected org.apache.commons.httpclient.HostConfiguration 
                    getHostConfiguration(org.apache.commons.httpclient.HttpClient, org.apache.axis.MessageContext, java.net.URL);
    
                    private void 
                    addContextInfo(org.apache.commons.httpclient.HttpMethodBase, org.apache.commons.httpclient.HttpClient, org.apache.axis.MessageContext, java.net.URL) 
                    throws Exception;
    
                    protected boolean 
                    isHostInNonProxyList(String, String);
    
                    protected 
                    static boolean 
                    match(String, String, boolean);
    
                    private 
                    static String 
                    getHeader(org.apache.commons.httpclient.HttpMethodBase, String);
    
                    private java.io.InputStream 
                    createConnectionReleasingInputStream(org.apache.commons.httpclient.HttpMethodBase) 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/transport/http/FilterPrintWriter$NullOutputStream.class

                    package org.apache.axis.transport.http;

                    public 
                    synchronized 
                    class FilterPrintWriter$NullOutputStream 
                    extends java.io.OutputStream {
    
                    public void FilterPrintWriter$NullOutputStream();
    
                    public void 
                    write(int);
}

                

org/apache/axis/transport/http/FilterPrintWriter.class

                    package org.apache.axis.transport.http;

                    public 
                    synchronized 
                    class FilterPrintWriter 
                    extends java.io.PrintWriter {
    
                    private java.io.PrintWriter 
                    _writer;
    
                    private javax.servlet.http.HttpServletResponse 
                    _response;
    
                    private 
                    static java.io.OutputStream 
                    _sink;
    
                    public void FilterPrintWriter(javax.servlet.http.HttpServletResponse);
    
                    private java.io.PrintWriter 
                    getPrintWriter();
    
                    public void 
                    write(int);
    
                    public void 
                    write(char[]);
    
                    public void 
                    write(char[], int, int);
    
                    public void 
                    write(String);
    
                    public void 
                    write(String, int, int);
    
                    public void 
                    flush();
    
                    public void 
                    close();
    
                    public boolean 
                    checkError();
    
                    public void 
                    print(boolean);
    
                    public void 
                    print(char);
    
                    public void 
                    print(int);
    
                    public void 
                    print(long);
    
                    public void 
                    print(float);
    
                    public void 
                    print(double);
    
                    public void 
                    print(char[]);
    
                    public void 
                    print(String);
    
                    public void 
                    print(Object);
    
                    public void 
                    println();
    
                    public void 
                    println(boolean);
    
                    public void 
                    println(char);
    
                    public void 
                    println(int);
    
                    public void 
                    println(long);
    
                    public void 
                    println(float);
    
                    public void 
                    println(double);
    
                    public void 
                    println(char[]);
    
                    public void 
                    println(String);
    
                    public void 
                    println(Object);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/transport/http/HTTPConstants.class

                    package org.apache.axis.transport.http;

                    public 
                    synchronized 
                    class HTTPConstants {
    
                    public 
                    static 
                    final String 
                    HEADER_PROTOCOL_10 = HTTP/1.0;
    
                    public 
                    static 
                    final String 
                    HEADER_PROTOCOL_11 = HTTP/1.1;
    
                    public 
                    static 
                    final String 
                    HEADER_PROTOCOL_V10;
    
                    public 
                    static 
                    final String 
                    HEADER_PROTOCOL_V11;
    
                    public 
                    static 
                    final String 
                    HEADER_POST = POST;
    
                    public 
                    static 
                    final String 
                    HEADER_HOST = Host;
    
                    public 
                    static 
                    final String 
                    HEADER_CONTENT_DESCRIPTION = Content-Description;
    
                    public 
                    static 
                    final String 
                    HEADER_CONTENT_TYPE = Content-Type;
    
                    public 
                    static 
                    final String 
                    HEADER_CONTENT_TRANSFER_ENCODING = Content-Transfer-Encoding;
    
                    public 
                    static 
                    final String 
                    HEADER_CONTENT_TYPE_JMS = ContentType;
    
                    public 
                    static 
                    final String 
                    HEADER_CONTENT_LENGTH = Content-Length;
    
                    public 
                    static 
                    final String 
                    HEADER_CONTENT_LOCATION = Content-Location;
    
                    public 
                    static 
                    final String 
                    HEADER_CONTENT_ID = Content-Id;
    
                    public 
                    static 
                    final String 
                    HEADER_SOAP_ACTION = SOAPAction;
    
                    public 
                    static 
                    final String 
                    HEADER_AUTHORIZATION = Authorization;
    
                    public 
                    static 
                    final String 
                    HEADER_PROXY_AUTHORIZATION = Proxy-Authorization;
    
                    public 
                    static 
                    final String 
                    HEADER_EXPECT = Expect;
    
                    public 
                    static 
                    final String 
                    HEADER_EXPECT_100_Continue = 100-continue;
    
                    public 
                    static 
                    final String 
                    HEADER_USER_AGENT = User-Agent;
    
                    public 
                    static 
                    final String 
                    HEADER_CACHE_CONTROL = Cache-Control;
    
                    public 
                    static 
                    final String 
                    HEADER_CACHE_CONTROL_NOCACHE = no-cache;
    
                    public 
                    static 
                    final String 
                    HEADER_PRAGMA = Pragma;
    
                    public 
                    static 
                    final String 
                    HEADER_LOCATION = Location;
    
                    public 
                    static 
                    final String 
                    REQUEST_HEADERS = HTTP-Request-Headers;
    
                    public 
                    static 
                    final String 
                    RESPONSE_HEADERS = HTTP-Response-Headers;
    
                    public 
                    static 
                    final String 
                    HEADER_TRANSFER_ENCODING;
    
                    public 
                    static 
                    final String 
                    HEADER_TRANSFER_ENCODING_CHUNKED;
    
                    public 
                    static 
                    final String 
                    HEADER_CONNECTION = Connection;
    
                    public 
                    static 
                    final String 
                    HEADER_CONNECTION_CLOSE;
    
                    public 
                    static 
                    final String 
                    HEADER_CONNECTION_KEEPALIVE;
    
                    public 
                    static 
                    final String 
                    HEADER_ACCEPT = Accept;
    
                    public 
                    static 
                    final String 
                    HEADER_ACCEPT_TEXT_ALL = text/*;
    
                    public 
                    static 
                    final String 
                    HEADER_ACCEPT_APPL_SOAP = application/soap+xml;
    
                    public 
                    static 
                    final String 
                    HEADER_ACCEPT_MULTIPART_RELATED = multipart/related;
    
                    public 
                    static 
                    final String 
                    HEADER_ACCEPT_APPLICATION_DIME = application/dime;
    
                    public 
                    static 
                    final String 
                    HEADER_ACCEPT_ENCODING = Accept-Encoding;
    
                    public 
                    static 
                    final String 
                    HEADER_CONTENT_ENCODING = Content-Encoding;
    
                    public 
                    static 
                    final String 
                    COMPRESSION_GZIP = gzip;
    
                    public 
                    static 
                    final String 
                    HEADER_COOKIE = Cookie;
    
                    public 
                    static 
                    final String 
                    HEADER_COOKIE2 = Cookie2;
    
                    public 
                    static 
                    final String 
                    HEADER_SET_COOKIE = Set-Cookie;
    
                    public 
                    static 
                    final String 
                    HEADER_SET_COOKIE2 = Set-Cookie2;
    
                    public 
                    static String 
                    MC_HTTP_STATUS_CODE;
    
                    public 
                    static String 
                    MC_HTTP_STATUS_MESSAGE;
    
                    public 
                    static String 
                    MC_HTTP_SERVLET;
    
                    public 
                    static String 
                    MC_HTTP_SERVLETREQUEST;
    
                    public 
                    static String 
                    MC_HTTP_SERVLETRESPONSE;
    
                    public 
                    static String 
                    MC_HTTP_SERVLETLOCATION;
    
                    public 
                    static String 
                    MC_HTTP_SERVLETPATHINFO;
    
                    public 
                    static 
                    final String 
                    MC_ACCEPT_GZIP = transport.http.acceptGzip;
    
                    public 
                    static 
                    final String 
                    MC_GZIP_REQUEST = transport.http.gzipRequest;
    
                    public 
                    static String 
                    MC_HTTP_SOAPACTION;
    
                    public 
                    static 
                    final String 
                    HEADER_DEFAULT_CHAR_ENCODING = iso-8859-1;
    
                    public 
                    static 
                    final String 
                    PLUGIN_NAME = transport.http.plugin.pluginName;
    
                    public 
                    static 
                    final String 
                    PLUGIN_SERVICE_NAME = transport.http.plugin.serviceName;
    
                    public 
                    static 
                    final String 
                    PLUGIN_IS_DEVELOPMENT = transport.http.plugin.isDevelopment;
    
                    public 
                    static 
                    final String 
                    PLUGIN_ENABLE_LIST = transport.http.plugin.enableList;
    
                    public 
                    static 
                    final String 
                    PLUGIN_ENGINE = transport.http.plugin.engine;
    
                    public 
                    static 
                    final String 
                    PLUGIN_WRITER = transport.http.plugin.writer;
    
                    public 
                    static 
                    final String 
                    PLUGIN_LOG = transport.http.plugin.log;
    
                    public 
                    static 
                    final String 
                    PLUGIN_EXCEPTION_LOG = transport.http.plugin.exceptionLog;
    
                    public void HTTPConstants();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/transport/http/HTTPSender.class

                    package org.apache.axis.transport.http;

                    public 
                    synchronized 
                    class HTTPSender 
                    extends org.apache.axis.handlers.BasicHandler {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private 
                    static 
                    final String 
                    ACCEPT_HEADERS;
    
                    private 
                    static 
                    final String 
                    CACHE_HEADERS = Cache-Control: no-cache
Pragma: no-cache
;
    
                    private 
                    static 
                    final String 
                    CHUNKED_HEADER;
    
                    private 
                    static 
                    final String 
                    HEADER_CONTENT_TYPE_LC;
    
                    private 
                    static 
                    final String 
                    HEADER_LOCATION_LC;
    
                    private 
                    static 
                    final String 
                    HEADER_CONTENT_LOCATION_LC;
    
                    private 
                    static 
                    final String 
                    HEADER_CONTENT_LENGTH_LC;
    
                    private 
                    static 
                    final String 
                    HEADER_TRANSFER_ENCODING_LC;
    java.net.URL 
                    targetURL;
    
                    public void HTTPSender();
    
                    public void 
                    invoke(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    protected void 
                    getSocket(SocketHolder, org.apache.axis.MessageContext, String, String, int, int, StringBuffer, org.apache.axis.components.net.BooleanHolder) 
                    throws Exception;
    
                    private java.io.InputStream 
                    writeToSocket(SocketHolder, org.apache.axis.MessageContext, java.net.URL, StringBuffer, String, int, int, org.apache.axis.components.net.BooleanHolder) 
                    throws Exception;
    
                    private void 
                    fillHeaders(org.apache.axis.MessageContext, String, StringBuffer);
    
                    private void 
                    addCookie(StringBuffer, String, String);
    
                    private java.io.InputStream 
                    readHeadersFromSocket(SocketHolder, org.apache.axis.MessageContext, java.io.InputStream, java.util.Hashtable) 
                    throws java.io.IOException;
    
                    private java.io.InputStream 
                    readFromSocket(SocketHolder, org.apache.axis.MessageContext, java.io.InputStream, java.util.Hashtable) 
                    throws java.io.IOException;
    
                    public void 
                    handleCookie(String, String, String, org.apache.axis.MessageContext);
    
                    private String 
                    cleanupCookie(String);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/transport/http/HTTPTransport.class

                    package org.apache.axis.transport.http;

                    public 
                    synchronized 
                    class HTTPTransport 
                    extends org.apache.axis.client.Transport {
    
                    public 
                    static 
                    final String 
                    DEFAULT_TRANSPORT_NAME = http;
    
                    public 
                    static 
                    final String 
                    URL = transport.url;
    
                    private Object 
                    cookie;
    
                    private Object 
                    cookie2;
    
                    private String 
                    action;
    
                    public void HTTPTransport();
    
                    public void HTTPTransport(String, String);
    
                    public void 
                    setupMessageContextImpl(org.apache.axis.MessageContext, org.apache.axis.client.Call, org.apache.axis.AxisEngine) 
                    throws org.apache.axis.AxisFault;
    
                    public void 
                    processReturnedMessageContext(org.apache.axis.MessageContext);
}

                

org/apache/axis/transport/http/NonBlockingBufferedInputStream.class

                    package org.apache.axis.transport.http;

                    public 
                    synchronized 
                    class NonBlockingBufferedInputStream 
                    extends java.io.InputStream {
    
                    private java.io.InputStream 
                    in;
    
                    private int 
                    remainingContent;
    
                    private byte[] 
                    buffer;
    
                    private int 
                    offset;
    
                    private int 
                    numbytes;
    
                    public void NonBlockingBufferedInputStream();
    
                    public void 
                    setInputStream(java.io.InputStream);
    
                    public void 
                    setContentLength(int);
    
                    private void 
                    refillBuffer() 
                    throws java.io.IOException;
    
                    public int 
                    read() 
                    throws java.io.IOException;
    
                    public int 
                    read(byte[]) 
                    throws java.io.IOException;
    
                    public int 
                    read(byte[], int, int) 
                    throws java.io.IOException;
    
                    public int 
                    skip(int) 
                    throws java.io.IOException;
    
                    public int 
                    available() 
                    throws java.io.IOException;
    
                    public void 
                    close() 
                    throws java.io.IOException;
    
                    public int 
                    peek() 
                    throws java.io.IOException;
}

                

org/apache/axis/transport/http/QSHandler.class

                    package org.apache.axis.transport.http;

                    public 
                    abstract 
                    interface QSHandler {
    
                    public 
                    abstract void 
                    invoke(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
}

                

org/apache/axis/transport/http/QSListHandler.class

                    package org.apache.axis.transport.http;

                    public 
                    synchronized 
                    class QSListHandler 
                    extends AbstractQueryStringHandler {
    
                    public void QSListHandler();
    
                    public void 
                    invoke(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
}

                

org/apache/axis/transport/http/QSMethodHandler.class

                    package org.apache.axis.transport.http;

                    public 
                    synchronized 
                    class QSMethodHandler 
                    extends AbstractQueryStringHandler {
    
                    public void QSMethodHandler();
    
                    public void 
                    invoke(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    private void 
                    invokeEndpointFromGet(org.apache.axis.MessageContext, javax.servlet.http.HttpServletResponse, java.io.PrintWriter, String, String) 
                    throws org.apache.axis.AxisFault;
}

                

org/apache/axis/transport/http/QSWSDLHandler.class

                    package org.apache.axis.transport.http;

                    public 
                    synchronized 
                    class QSWSDLHandler 
                    extends AbstractQueryStringHandler {
    
                    public void QSWSDLHandler();
    
                    public void 
                    invoke(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    public void 
                    reportWSDL(org.w3c.dom.Document, java.io.PrintWriter);
    
                    public void 
                    reportNoWSDL(javax.servlet.http.HttpServletResponse, java.io.PrintWriter, String, org.apache.axis.AxisFault);
    
                    protected void 
                    updateSoapAddressLocationURLs(org.w3c.dom.Document, org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    private String 
                    getNewServiceName(java.util.Set, String, String);
    
                    private java.util.Set 
                    getDeployedServiceNames(org.apache.axis.MessageContext) 
                    throws org.apache.axis.ConfigurationException;
    
                    protected String 
                    getEndpointURL(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
}

                

org/apache/axis/transport/http/ServletEndpointContextImpl.class

                    package org.apache.axis.transport.http;

                    public 
                    synchronized 
                    class ServletEndpointContextImpl 
                    implements javax.xml.rpc.server.ServletEndpointContext {
    
                    public void ServletEndpointContextImpl();
    
                    public javax.servlet.http.HttpSession 
                    getHttpSession();
    
                    public javax.xml.rpc.handler.MessageContext 
                    getMessageContext();
    
                    public javax.servlet.ServletContext 
                    getServletContext();
    
                    public boolean 
                    isUserInRole(String);
    
                    public java.security.Principal 
                    getUserPrincipal();
}

                

org/apache/axis/transport/http/SimpleAxisServer.class

                    package org.apache.axis.transport.http;

                    public 
                    synchronized 
                    class SimpleAxisServer 
                    implements Runnable {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private java.util.Map 
                    sessions;
    
                    private int 
                    maxSessions;
    
                    public 
                    static 
                    final int 
                    MAX_SESSIONS_DEFAULT = 100;
    
                    private 
                    static org.apache.axis.components.threadpool.ThreadPool 
                    pool;
    
                    private 
                    static boolean 
                    doThreads;
    
                    private 
                    static boolean 
                    doSessions;
    
                    public 
                    static int 
                    sessionIndex;
    
                    private 
                    static org.apache.axis.server.AxisServer 
                    myAxisServer;
    
                    private org.apache.axis.EngineConfiguration 
                    myConfig;
    
                    private boolean 
                    stopped;
    
                    private java.net.ServerSocket 
                    serverSocket;
    
                    public 
                    static org.apache.axis.components.threadpool.ThreadPool 
                    getPool();
    
                    public void SimpleAxisServer();
    
                    public void SimpleAxisServer(int);
    
                    public void SimpleAxisServer(int, int);
    
                    protected void 
                    finalize() 
                    throws Throwable;
    
                    public int 
                    getMaxSessions();
    
                    public void 
                    setMaxSessions(int);
    
                    protected boolean 
                    isSessionUsed();
    
                    public void 
                    setDoThreads(boolean);
    
                    public boolean 
                    getDoThreads();
    
                    public org.apache.axis.EngineConfiguration 
                    getMyConfig();
    
                    public void 
                    setMyConfig(org.apache.axis.EngineConfiguration);
    
                    protected org.apache.axis.session.Session 
                    createSession(String);
    
                    public 
                    synchronized org.apache.axis.server.AxisServer 
                    getAxisServer();
    
                    public void 
                    run();
    
                    private String 
                    getCurrentDirectory();
    
                    public java.net.ServerSocket 
                    getServerSocket();
    
                    public void 
                    setServerSocket(java.net.ServerSocket);
    
                    public void 
                    start(boolean) 
                    throws Exception;
    
                    public void 
                    start() 
                    throws Exception;
    
                    public void 
                    stop();
    
                    public 
                    static void 
                    main(String[]);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/transport/http/SimpleAxisWorker.class

                    package org.apache.axis.transport.http;

                    public 
                    synchronized 
                    class SimpleAxisWorker 
                    implements Runnable {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private SimpleAxisServer 
                    server;
    
                    private java.net.Socket 
                    socket;
    
                    private 
                    static String 
                    transportName;
    
                    private 
                    static byte[] 
                    OK;
    
                    private 
                    static byte[] 
                    NOCONTENT;
    
                    private 
                    static byte[] 
                    UNAUTH;
    
                    private 
                    static byte[] 
                    SENDER;
    
                    private 
                    static byte[] 
                    ISE;
    
                    private 
                    static byte[] 
                    HTTP;
    
                    private 
                    static byte[] 
                    XML_MIME_STUFF;
    
                    private 
                    static byte[] 
                    HTML_MIME_STUFF;
    
                    private 
                    static byte[] 
                    SEPARATOR;
    
                    private 
                    static 
                    final byte[] 
                    toLower;
    
                    private 
                    static 
                    final int 
                    BUFSIZ = 4096;
    
                    private 
                    static 
                    final byte[] 
                    lenHeader;
    
                    private 
                    static 
                    final int 
                    lenLen;
    
                    private 
                    static 
                    final byte[] 
                    typeHeader;
    
                    private 
                    static 
                    final int 
                    typeLen;
    
                    private 
                    static 
                    final byte[] 
                    locationHeader;
    
                    private 
                    static 
                    final int 
                    locationLen;
    
                    private 
                    static 
                    final byte[] 
                    actionHeader;
    
                    private 
                    static 
                    final int 
                    actionLen;
    
                    private 
                    static 
                    final byte[] 
                    cookieHeader;
    
                    private 
                    static 
                    final int 
                    cookieLen;
    
                    private 
                    static 
                    final byte[] 
                    cookie2Header;
    
                    private 
                    static 
                    final int 
                    cookie2Len;
    
                    private 
                    static 
                    final byte[] 
                    authHeader;
    
                    private 
                    static 
                    final int 
                    authLen;
    
                    private 
                    static 
                    final byte[] 
                    getHeader;
    
                    private 
                    static 
                    final byte[] 
                    postHeader;
    
                    private 
                    static 
                    final byte[] 
                    headerEnder;
    
                    private 
                    static 
                    final byte[] 
                    basicAuth;
    
                    public void SimpleAxisWorker(SimpleAxisServer, java.net.Socket);
    
                    public void 
                    run();
    
                    public void 
                    execute();
    
                    protected void 
                    invokeMethodFromGet(String, String) 
                    throws Exception;
    
                    private int 
                    parseHeaders(NonBlockingBufferedInputStream, byte[], StringBuffer, StringBuffer, StringBuffer, StringBuffer, StringBuffer, StringBuffer, StringBuffer, StringBuffer, javax.xml.soap.MimeHeaders) 
                    throws java.io.IOException;
    
                    public boolean 
                    matches(byte[], byte[]);
    
                    public boolean 
                    matches(byte[], int, byte[]);
    
                    private void 
                    putInt(byte[], java.io.OutputStream, int) 
                    throws java.io.IOException;
    
                    private int 
                    readLine(NonBlockingBufferedInputStream, byte[], int, int) 
                    throws java.io.IOException;
    
                    public 
                    static String 
                    getLocalHost();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/transport/http/SocketHolder.class

                    package org.apache.axis.transport.http;

                    public 
                    synchronized 
                    class SocketHolder {
    
                    private java.net.Socket 
                    value;
    
                    public void SocketHolder(java.net.Socket);
    
                    public java.net.Socket 
                    getSocket();
    
                    public void 
                    setSocket(java.net.Socket);
}

                

org/apache/axis/transport/http/SocketInputStream.class

                    package org.apache.axis.transport.http;

                    public 
                    synchronized 
                    class SocketInputStream 
                    extends java.io.FilterInputStream {
    
                    protected 
                    volatile boolean 
                    closed;
    java.net.Socket 
                    socket;
    
                    private void SocketInputStream();
    
                    public void SocketInputStream(java.io.InputStream, java.net.Socket);
    
                    public void 
                    close() 
                    throws java.io.IOException;
}

                

org/apache/axis/transport/java/Handler.class

                    package org.apache.axis.transport.java;

                    public 
                    synchronized 
                    class Handler 
                    extends java.net.URLStreamHandler {
    
                    public void Handler();
    
                    protected java.net.URLConnection 
                    openConnection(java.net.URL);
}

                

org/apache/axis/transport/java/JavaSender.class

                    package org.apache.axis.transport.java;

                    public 
                    synchronized 
                    class JavaSender 
                    extends org.apache.axis.handlers.BasicHandler {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void JavaSender();
    
                    public void 
                    invoke(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/transport/java/JavaTransport.class

                    package org.apache.axis.transport.java;

                    public 
                    synchronized 
                    class JavaTransport 
                    extends org.apache.axis.client.Transport {
    
                    public void JavaTransport();
    
                    public void 
                    setupMessageContextImpl(org.apache.axis.MessageContext, org.apache.axis.client.Call, org.apache.axis.AxisEngine);
}

                

org/apache/axis/transport/jms/Handler.class

                    package org.apache.axis.transport.jms;

                    public 
                    synchronized 
                    class Handler 
                    extends java.net.URLStreamHandler {
    
                    public void Handler();
    
                    protected String 
                    toExternalForm(java.net.URL);
    
                    protected java.net.URLConnection 
                    openConnection(java.net.URL);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/transport/jms/InvokeException.class

                    package org.apache.axis.transport.jms;

                    public 
                    synchronized 
                    class InvokeException 
                    extends RuntimeException {
    
                    public void InvokeException(String);
}

                

org/apache/axis/transport/jms/InvokeTimeoutException.class

                    package org.apache.axis.transport.jms;

                    public 
                    synchronized 
                    class InvokeTimeoutException 
                    extends InvokeException {
    
                    public void InvokeTimeoutException(String);
}

                

org/apache/axis/transport/jms/JMSConnector$AsyncConnection$ListenerSession.class

                    package org.apache.axis.transport.jms;

                    public 
                    synchronized 
                    class JMSConnector$AsyncConnection$ListenerSession 
                    extends JMSConnector$ConnectorSession {
    
                    protected javax.jms.MessageConsumer 
                    m_consumer;
    
                    protected Subscription 
                    m_subscription;
    void JMSConnector$AsyncConnection$ListenerSession(JMSConnector$AsyncConnection, javax.jms.Session, javax.jms.MessageConsumer, Subscription) 
                    throws Exception;
    void 
                    cleanup();
}

                

org/apache/axis/transport/jms/JMSConnector$AsyncConnection.class

                    package org.apache.axis.transport.jms;

                    public 
                    abstract 
                    synchronized 
                    class JMSConnector$AsyncConnection 
                    extends JMSConnector$Connection {
    java.util.HashMap 
                    m_subscriptions;
    Object 
                    m_subscriptionLock;
    
                    protected void JMSConnector$AsyncConnection(JMSConnector, javax.jms.ConnectionFactory, javax.jms.Connection, String, String, String, String) 
                    throws javax.jms.JMSException;
    
                    protected 
                    abstract JMSConnector$AsyncConnection$ListenerSession 
                    createListenerSession(javax.jms.Connection, Subscription) 
                    throws Exception;
    
                    protected void 
                    onShutdown();
    void 
                    subscribe(Subscription) 
                    throws Exception;
    void 
                    unsubscribe(Subscription);
    
                    protected void 
                    onConnect() 
                    throws Exception;
    
                    protected void 
                    onException();
}

                

org/apache/axis/transport/jms/JMSConnector$Connection.class

                    package org.apache.axis.transport.jms;

                    abstract 
                    synchronized 
                    class JMSConnector$Connection 
                    extends Thread 
                    implements javax.jms.ExceptionListener {
    
                    private javax.jms.ConnectionFactory 
                    m_connectionFactory;
    
                    protected javax.jms.Connection 
                    m_connection;
    
                    protected boolean 
                    m_isActive;
    
                    private boolean 
                    m_needsToConnect;
    
                    private boolean 
                    m_startConnection;
    
                    private String 
                    m_clientID;
    
                    private String 
                    m_username;
    
                    private String 
                    m_password;
    
                    private Object 
                    m_jmsLock;
    
                    private Object 
                    m_lifecycleLock;
    
                    protected void JMSConnector$Connection(JMSConnector, javax.jms.ConnectionFactory, javax.jms.Connection, String, String, String, String) 
                    throws javax.jms.JMSException;
    
                    public javax.jms.ConnectionFactory 
                    getConnectionFactory();
    
                    public String 
                    getClientID();
    
                    public String 
                    getUsername();
    
                    public String 
                    getPassword();
    
                    public void 
                    run();
    void 
                    startConnection();
    void 
                    stopConnection();
    void 
                    shutdown();
    
                    public void 
                    onException(javax.jms.JMSException);
    
                    private 
                    final void 
                    internalOnConnect() 
                    throws Exception;
    
                    private 
                    final void 
                    internalOnShutdown();
    
                    protected 
                    abstract void 
                    onConnect() 
                    throws Exception;
    
                    protected 
                    abstract void 
                    onShutdown();
    
                    protected 
                    abstract void 
                    onException();
}

                

org/apache/axis/transport/jms/JMSConnector$ConnectorSession.class

                    package org.apache.axis.transport.jms;

                    abstract 
                    synchronized 
                    class JMSConnector$ConnectorSession {
    javax.jms.Session 
                    m_session;
    void JMSConnector$ConnectorSession(JMSConnector, javax.jms.Session) 
                    throws javax.jms.JMSException;
}

                

org/apache/axis/transport/jms/JMSConnector$SyncConnection$SendSession.class

                    package org.apache.axis.transport.jms;

                    public 
                    abstract 
                    synchronized 
                    class JMSConnector$SyncConnection$SendSession 
                    extends JMSConnector$ConnectorSession {
    javax.jms.MessageProducer 
                    m_producer;
    void JMSConnector$SyncConnection$SendSession(JMSConnector$SyncConnection, javax.jms.Session, javax.jms.MessageProducer) 
                    throws javax.jms.JMSException;
    
                    protected 
                    abstract javax.jms.Destination 
                    createTemporaryDestination() 
                    throws javax.jms.JMSException;
    
                    protected 
                    abstract void 
                    deleteTemporaryDestination(javax.jms.Destination) 
                    throws javax.jms.JMSException;
    
                    protected 
                    abstract javax.jms.MessageConsumer 
                    createConsumer(javax.jms.Destination) 
                    throws javax.jms.JMSException;
    
                    protected 
                    abstract void 
                    send(javax.jms.Destination, javax.jms.Message, int, int, long) 
                    throws javax.jms.JMSException;
    void 
                    send(JMSEndpoint, byte[], java.util.HashMap) 
                    throws Exception;
    void 
                    cleanup();
    byte[] 
                    call(JMSEndpoint, byte[], long, java.util.HashMap) 
                    throws Exception;
    
                    private int 
                    extractPriority(java.util.HashMap);
    
                    private int 
                    extractDeliveryMode(java.util.HashMap);
    
                    private long 
                    extractTimeToLive(java.util.HashMap);
    
                    private void 
                    setProperties(java.util.HashMap, javax.jms.Message) 
                    throws javax.jms.JMSException;
    
                    private void 
                    setProperty(String, Object, javax.jms.Message) 
                    throws javax.jms.JMSException;
}

                

org/apache/axis/transport/jms/JMSConnector$SyncConnection.class

                    package org.apache.axis.transport.jms;

                    public 
                    abstract 
                    synchronized 
                    class JMSConnector$SyncConnection 
                    extends JMSConnector$Connection {
    java.util.LinkedList 
                    m_senders;
    int 
                    m_numSessions;
    Object 
                    m_senderLock;
    void JMSConnector$SyncConnection(JMSConnector, javax.jms.ConnectionFactory, javax.jms.Connection, int, String, String, String, String) 
                    throws javax.jms.JMSException;
    
                    protected 
                    abstract JMSConnector$SyncConnection$SendSession 
                    createSendSession(javax.jms.Connection) 
                    throws javax.jms.JMSException;
    
                    protected void 
                    onConnect() 
                    throws javax.jms.JMSException;
    byte[] 
                    call(JMSEndpoint, byte[], long, java.util.HashMap) 
                    throws Exception;
    void 
                    send(JMSEndpoint, byte[], java.util.HashMap) 
                    throws Exception;
    
                    protected void 
                    onException();
    
                    protected void 
                    onShutdown();
    
                    private JMSConnector$SyncConnection$SendSession 
                    getSessionFromPool(long);
    
                    private void 
                    returnSessionToPool(JMSConnector$SyncConnection$SendSession);
}

                

org/apache/axis/transport/jms/JMSConnector.class

                    package org.apache.axis.transport.jms;

                    public 
                    abstract 
                    synchronized 
                    class JMSConnector {
    
                    protected int 
                    m_numRetries;
    
                    protected long 
                    m_connectRetryInterval;
    
                    protected long 
                    m_interactRetryInterval;
    
                    protected long 
                    m_timeoutTime;
    
                    protected long 
                    m_poolTimeout;
    
                    protected JMSConnector$AsyncConnection 
                    m_receiveConnection;
    
                    protected JMSConnector$SyncConnection 
                    m_sendConnection;
    
                    protected int 
                    m_numSessions;
    
                    protected boolean 
                    m_allowReceive;
    
                    protected org.apache.axis.components.jms.JMSVendorAdapter 
                    m_adapter;
    
                    protected JMSURLHelper 
                    m_jmsurl;
    
                    public void JMSConnector(javax.jms.ConnectionFactory, int, int, long, long, long, boolean, String, String, String, org.apache.axis.components.jms.JMSVendorAdapter, JMSURLHelper) 
                    throws javax.jms.JMSException;
    
                    public int 
                    getNumRetries();
    
                    public int 
                    numSessions();
    
                    public javax.jms.ConnectionFactory 
                    getConnectionFactory();
    
                    public String 
                    getClientID();
    
                    public String 
                    getUsername();
    
                    public String 
                    getPassword();
    
                    public org.apache.axis.components.jms.JMSVendorAdapter 
                    getVendorAdapter();
    
                    public JMSURLHelper 
                    getJMSURL();
    
                    protected javax.jms.Connection 
                    createConnectionWithRetry(javax.jms.ConnectionFactory, String, String) 
                    throws javax.jms.JMSException;
    
                    public void 
                    stop();
    
                    public void 
                    start();
    
                    public void 
                    shutdown();
    
                    public 
                    abstract JMSEndpoint 
                    createEndpoint(String) 
                    throws javax.jms.JMSException;
    
                    public 
                    abstract JMSEndpoint 
                    createEndpoint(javax.jms.Destination) 
                    throws javax.jms.JMSException;
    
                    protected 
                    abstract javax.jms.Connection 
                    internalConnect(javax.jms.ConnectionFactory, String, String) 
                    throws javax.jms.JMSException;
    
                    protected 
                    abstract JMSConnector$SyncConnection 
                    createSyncConnection(javax.jms.ConnectionFactory, javax.jms.Connection, int, String, String, String, String) 
                    throws javax.jms.JMSException;
    JMSConnector$SyncConnection 
                    getSendConnection();
    JMSConnector$AsyncConnection 
                    getReceiveConnection();
    
                    protected 
                    abstract JMSConnector$AsyncConnection 
                    createAsyncConnection(javax.jms.ConnectionFactory, javax.jms.Connection, String, String, String, String) 
                    throws javax.jms.JMSException;
}

                

org/apache/axis/transport/jms/JMSConnectorFactory.class

                    package org.apache.axis.transport.jms;

                    public 
                    abstract 
                    synchronized 
                    class JMSConnectorFactory {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void JMSConnectorFactory();
    
                    public 
                    static JMSConnector 
                    matchConnector(java.util.Set, java.util.HashMap, java.util.HashMap, String, String, org.apache.axis.components.jms.JMSVendorAdapter);
    
                    public 
                    static JMSConnector 
                    createServerConnector(java.util.HashMap, java.util.HashMap, String, String, org.apache.axis.components.jms.JMSVendorAdapter) 
                    throws Exception;
    
                    public 
                    static JMSConnector 
                    createClientConnector(java.util.HashMap, java.util.HashMap, String, String, org.apache.axis.components.jms.JMSVendorAdapter) 
                    throws Exception;
    
                    private 
                    static JMSConnector 
                    createConnector(java.util.HashMap, java.util.HashMap, boolean, String, String, org.apache.axis.components.jms.JMSVendorAdapter) 
                    throws Exception;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/transport/jms/JMSConnectorManager$ShareableObjectPool$ReferenceCountedObject.class

                    package org.apache.axis.transport.jms;

                    public 
                    synchronized 
                    class JMSConnectorManager$ShareableObjectPool$ReferenceCountedObject {
    
                    private Object 
                    m_object;
    
                    private int 
                    m_refCount;
    
                    public void JMSConnectorManager$ShareableObjectPool$ReferenceCountedObject(JMSConnectorManager$ShareableObjectPool, Object);
    
                    public 
                    synchronized void 
                    increment();
    
                    public 
                    synchronized void 
                    decrement();
    
                    public 
                    synchronized int 
                    count();
}

                

org/apache/axis/transport/jms/JMSConnectorManager$ShareableObjectPool.class

                    package org.apache.axis.transport.jms;

                    public 
                    synchronized 
                    class JMSConnectorManager$ShareableObjectPool {
    
                    private java.util.HashMap 
                    m_elements;
    
                    private java.util.HashMap 
                    m_expiring;
    
                    private int 
                    m_numElements;
    
                    public void JMSConnectorManager$ShareableObjectPool(JMSConnectorManager);
    
                    public void 
                    addObject(Object);
    
                    public void 
                    removeObject(Object, long);
    
                    public void 
                    removeObject(Object);
    
                    public void 
                    reserve(Object) 
                    throws Exception;
    
                    public void 
                    release(Object);
    
                    public 
                    synchronized java.util.Set 
                    getElements();
    
                    public 
                    synchronized int 
                    size();
}

                

org/apache/axis/transport/jms/JMSConnectorManager.class

                    package org.apache.axis.transport.jms;

                    public 
                    synchronized 
                    class JMSConnectorManager {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private 
                    static JMSConnectorManager 
                    s_instance;
    
                    private 
                    static java.util.HashMap 
                    vendorConnectorPools;
    
                    private int 
                    DEFAULT_WAIT_FOR_SHUTDOWN;
    
                    private void JMSConnectorManager();
    
                    public 
                    static JMSConnectorManager 
                    getInstance();
    
                    public JMSConnectorManager$ShareableObjectPool 
                    getVendorPool(String);
    
                    public JMSConnector 
                    getConnector(java.util.HashMap, java.util.HashMap, String, String, org.apache.axis.components.jms.JMSVendorAdapter) 
                    throws org.apache.axis.AxisFault;
    void 
                    closeAllConnectors();
    void 
                    closeMatchingJMSConnectors(java.util.HashMap, java.util.HashMap, String, String, org.apache.axis.components.jms.JMSVendorAdapter);
    
                    private void 
                    closeConnector(JMSConnector);
    
                    public void 
                    addConnectorToPool(JMSConnector);
    
                    public void 
                    removeConnectorFromPool(JMSConnector);
    
                    public void 
                    reserve(JMSConnector) 
                    throws Exception;
    
                    public void 
                    release(JMSConnector);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/transport/jms/JMSConstants.class

                    package org.apache.axis.transport.jms;

                    public 
                    abstract 
                    interface JMSConstants {
    
                    public 
                    static 
                    final String 
                    PROTOCOL = jms;
    
                    public 
                    static 
                    final String 
                    _WAIT_FOR_RESPONSE = waitForResponse;
    
                    public 
                    static 
                    final String 
                    _CLIENT_ID = clientID;
    
                    public 
                    static 
                    final String 
                    _VENDOR = vendor;
    
                    public 
                    static 
                    final String 
                    _DOMAIN = domain;
    
                    public 
                    static 
                    final String 
                    _JMS_CORRELATION_ID = jmsCorrelationID;
    
                    public 
                    static 
                    final String 
                    _JMS_CORRELATION_ID_AS_BYTES = jmsCorrelationIDAsBytes;
    
                    public 
                    static 
                    final String 
                    _JMS_TYPE = jmsType;
    
                    public 
                    static 
                    final String 
                    _TIME_TO_LIVE = ttl;
    
                    public 
                    static 
                    final String 
                    _PRIORITY = priority;
    
                    public 
                    static 
                    final String 
                    _DELIVERY_MODE = deliveryMode;
    
                    public 
                    static 
                    final String 
                    _MESSAGE_SELECTOR = messageSelector;
    
                    public 
                    static 
                    final String 
                    _ACKNOWLEDGE_MODE = acknowledgeMode;
    
                    public 
                    static 
                    final String 
                    _SUBSCRIPTION_NAME = subscriptionName;
    
                    public 
                    static 
                    final String 
                    _UNSUBSCRIBE = unsubscribe;
    
                    public 
                    static 
                    final String 
                    _NO_LOCAL = noLocal;
    
                    public 
                    static 
                    final String 
                    _NUM_RETRIES = numRetries;
    
                    public 
                    static 
                    final String 
                    _NUM_SESSIONS = numSessions;
    
                    public 
                    static 
                    final String 
                    _CONNECT_RETRY_INTERVAL = connectRetryInterval;
    
                    public 
                    static 
                    final String 
                    _INTERACT_RETRY_INTERVAL = interactRetryInterval;
    
                    public 
                    static 
                    final String 
                    _TIMEOUT_TIME = timeoutTime;
    
                    public 
                    static 
                    final String 
                    _MIN_TIMEOUT_TIME = minTimeoutTime;
    
                    public 
                    static 
                    final String 
                    _MSG_PROP_PREFIX = msgProp.;
    
                    public 
                    static 
                    final String 
                    JMS_PROPERTY_PREFIX = transport.jms.;
    
                    public 
                    static 
                    final String 
                    WAIT_FOR_RESPONSE = transport.jms.waitForResponse;
    
                    public 
                    static 
                    final String 
                    CLIENT_ID = transport.jms.clientID;
    
                    public 
                    static 
                    final String 
                    DESTINATION = transport.jms.Destination;
    
                    public 
                    static 
                    final String 
                    VENDOR = transport.jms.vendor;
    
                    public 
                    static 
                    final String 
                    JNDI_VENDOR_ID = JNDI;
    
                    public 
                    static 
                    final String 
                    DOMAIN = transport.jms.domain;
    
                    public 
                    static 
                    final String 
                    DOMAIN_QUEUE = QUEUE;
    
                    public 
                    static 
                    final String 
                    DOMAIN_TOPIC = TOPIC;
    
                    public 
                    static 
                    final String 
                    DOMAIN_DEFAULT = QUEUE;
    
                    public 
                    static 
                    final String 
                    JMS_CORRELATION_ID = transport.jms.jmsCorrelationID;
    
                    public 
                    static 
                    final String 
                    JMS_CORRELATION_ID_AS_BYTES = transport.jms.jmsCorrelationIDAsBytes;
    
                    public 
                    static 
                    final String 
                    JMS_TYPE = transport.jms.jmsType;
    
                    public 
                    static 
                    final String 
                    TIME_TO_LIVE = transport.jms.ttl;
    
                    public 
                    static 
                    final String 
                    PRIORITY = transport.jms.priority;
    
                    public 
                    static 
                    final String 
                    DELIVERY_MODE = transport.jms.deliveryMode;
    
                    public 
                    static 
                    final String 
                    DELIVERY_MODE_PERSISTENT = Persistent;
    
                    public 
                    static 
                    final String 
                    DELIVERY_MODE_NONPERSISTENT = Nonpersistent;
    
                    public 
                    static 
                    final String 
                    DELIVERY_MODE_DISCARDABLE = Discardable;
    
                    public 
                    static 
                    final int 
                    DEFAULT_DELIVERY_MODE = 1;
    
                    public 
                    static 
                    final int 
                    DEFAULT_PRIORITY = 4;
    
                    public 
                    static 
                    final long 
                    DEFAULT_TIME_TO_LIVE = 0;
    
                    public 
                    static 
                    final String 
                    MESSAGE_SELECTOR = transport.jms.messageSelector;
    
                    public 
                    static 
                    final String 
                    ACKNOWLEDGE_MODE = transport.jms.acknowledgeMode;
    
                    public 
                    static 
                    final int 
                    DEFAULT_ACKNOWLEDGE_MODE = 3;
    
                    public 
                    static 
                    final String 
                    SUBSCRIPTION_NAME = transport.jms.subscriptionName;
    
                    public 
                    static 
                    final String 
                    UNSUBSCRIBE = transport.jms.unsubscribe;
    
                    public 
                    static 
                    final String 
                    NO_LOCAL = transport.jms.noLocal;
    
                    public 
                    static 
                    final boolean 
                    DEFAULT_NO_LOCAL = 0;
    
                    public 
                    static 
                    final boolean 
                    DEFAULT_UNSUBSCRIBE = 0;
    
                    public 
                    static 
                    final String 
                    NUM_RETRIES = transport.jms.numRetries;
    
                    public 
                    static 
                    final String 
                    NUM_SESSIONS = transport.jms.numSessions;
    
                    public 
                    static 
                    final String 
                    CONNECT_RETRY_INTERVAL = transport.jms.connectRetryInterval;
    
                    public 
                    static 
                    final String 
                    INTERACT_RETRY_INTERVAL = transport.jms.interactRetryInterval;
    
                    public 
                    static 
                    final String 
                    TIMEOUT_TIME = transport.jms.timeoutTime;
    
                    public 
                    static 
                    final String 
                    MIN_TIMEOUT_TIME = transport.jms.minTimeoutTime;
    
                    public 
                    static 
                    final int 
                    DEFAULT_NUM_RETRIES = 5;
    
                    public 
                    static 
                    final int 
                    DEFAULT_NUM_SESSIONS = 5;
    
                    public 
                    static 
                    final long 
                    DEFAULT_CONNECT_RETRY_INTERVAL = 2000;
    
                    public 
                    static 
                    final long 
                    DEFAULT_TIMEOUT_TIME = 5000;
    
                    public 
                    static 
                    final long 
                    DEFAULT_MIN_TIMEOUT_TIME = 1000;
    
                    public 
                    static 
                    final long 
                    DEFAULT_INTERACT_RETRY_INTERVAL = 250;
    
                    public 
                    static 
                    final String 
                    CONNECTOR = transport.jms.Connector;
    
                    public 
                    static 
                    final String 
                    VENDOR_ADAPTER = transport.jms.VendorAdapter;
    
                    public 
                    static 
                    final String 
                    JMS_URL = transport.jms.EndpointAddress;
    
                    public 
                    static 
                    final String 
                    JMS_APPLICATION_MSG_PROPS = transport.jms.msgProps;
    
                    public 
                    static 
                    final String 
                    ADAPTER_POSTFIX = VendorAdapter;
}

                

org/apache/axis/transport/jms/JMSEndpoint.class

                    package org.apache.axis.transport.jms;

                    public 
                    abstract 
                    synchronized 
                    class JMSEndpoint {
    
                    private JMSConnector 
                    m_connector;
    
                    protected void JMSEndpoint(JMSConnector);
    
                    abstract javax.jms.Destination 
                    getDestination(javax.jms.Session) 
                    throws Exception;
    
                    public byte[] 
                    call(byte[], long) 
                    throws Exception;
    
                    public byte[] 
                    call(byte[], long, java.util.HashMap) 
                    throws Exception;
    
                    public void 
                    send(byte[]) 
                    throws Exception;
    
                    public void 
                    send(byte[], java.util.HashMap) 
                    throws Exception;
    
                    public void 
                    registerListener(javax.jms.MessageListener) 
                    throws Exception;
    
                    public void 
                    registerListener(javax.jms.MessageListener, java.util.HashMap) 
                    throws Exception;
    
                    public void 
                    unregisterListener(javax.jms.MessageListener);
    
                    public void 
                    unregisterListener(javax.jms.MessageListener, java.util.HashMap);
    
                    protected Subscription 
                    createSubscription(javax.jms.MessageListener, java.util.HashMap);
    
                    public int 
                    hashCode();
    
                    public boolean 
                    equals(Object);
}

                

org/apache/axis/transport/jms/JMSSender.class

                    package org.apache.axis.transport.jms;

                    public 
                    synchronized 
                    class JMSSender 
                    extends org.apache.axis.handlers.BasicHandler {
    
                    public void JMSSender();
    
                    public void 
                    invoke(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    private java.util.HashMap 
                    createSendProperties(org.apache.axis.MessageContext);
    
                    protected java.util.HashMap 
                    createApplicationProperties(org.apache.axis.MessageContext);
}

                

org/apache/axis/transport/jms/JMSTransport$1.class

                    package org.apache.axis.transport.jms;

                    synchronized 
                    class JMSTransport$1 
                    extends Thread {
    void JMSTransport$1();
    
                    public void 
                    run();
}

                

org/apache/axis/transport/jms/JMSTransport.class

                    package org.apache.axis.transport.jms;

                    public 
                    synchronized 
                    class JMSTransport 
                    extends org.apache.axis.client.Transport {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private 
                    static java.util.HashMap 
                    vendorConnectorPools;
    
                    private java.util.HashMap 
                    defaultConnectorProps;
    
                    private java.util.HashMap 
                    defaultConnectionFactoryProps;
    
                    public void JMSTransport();
    
                    public void JMSTransport(java.util.HashMap, java.util.HashMap);
    
                    public void 
                    setupMessageContextImpl(org.apache.axis.MessageContext, org.apache.axis.client.Call, org.apache.axis.AxisEngine) 
                    throws org.apache.axis.AxisFault;
    
                    public void 
                    shutdown();
    
                    public 
                    static void 
                    closeAllConnectors();
    
                    public 
                    static void 
                    closeMatchingJMSConnectors(String, String, String);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/transport/jms/JMSURLConnection.class

                    package org.apache.axis.transport.jms;

                    public 
                    synchronized 
                    class JMSURLConnection 
                    extends java.net.URLConnection {
    
                    public void JMSURLConnection(java.net.URL);
    
                    public void 
                    connect();
}

                

org/apache/axis/transport/jms/JMSURLHelper.class

                    package org.apache.axis.transport.jms;

                    public 
                    synchronized 
                    class JMSURLHelper {
    
                    private java.net.URL 
                    url;
    
                    private String 
                    destination;
    
                    private java.util.HashMap 
                    properties;
    
                    private java.util.Vector 
                    requiredProperties;
    
                    private java.util.Vector 
                    appProperties;
    
                    public void JMSURLHelper(java.net.URL) 
                    throws java.net.MalformedURLException;
    
                    public void JMSURLHelper(java.net.URL, String[]) 
                    throws java.net.MalformedURLException;
    
                    public String 
                    getDestination();
    
                    public void 
                    setDestination(String);
    
                    public String 
                    getVendor();
    
                    public String 
                    getDomain();
    
                    public java.util.HashMap 
                    getProperties();
    
                    public String 
                    getPropertyValue(String);
    
                    public void 
                    addRequiredProperties(String[]);
    
                    public void 
                    addRequiredProperty(String);
    
                    public java.util.Vector 
                    getRequiredProperties();
    
                    public void 
                    addApplicationProperty(String);
    
                    public void 
                    addApplicationProperty(String, String);
    
                    public java.util.Vector 
                    getApplicationProperties();
    
                    public String 
                    getURLString();
    
                    public String 
                    toString();
    
                    private void 
                    validateURL() 
                    throws java.net.MalformedURLException;
}

                

org/apache/axis/transport/jms/MapUtils.class

                    package org.apache.axis.transport.jms;

                    public 
                    synchronized 
                    class MapUtils {
    
                    public void MapUtils();
    
                    public 
                    static int 
                    removeIntProperty(java.util.Map, String, int);
    
                    public 
                    static long 
                    removeLongProperty(java.util.Map, String, long);
    
                    public 
                    static String 
                    removeStringProperty(java.util.Map, String, String);
    
                    public 
                    static boolean 
                    removeBooleanProperty(java.util.Map, String, boolean);
    
                    public 
                    static Object 
                    removeObjectProperty(java.util.Map, String, Object);
}

                

org/apache/axis/transport/jms/QueueConnector$QueueAsyncConnection.class

                    package org.apache.axis.transport.jms;

                    final 
                    synchronized 
                    class QueueConnector$QueueAsyncConnection 
                    extends JMSConnector$AsyncConnection {
    void QueueConnector$QueueAsyncConnection(QueueConnector, javax.jms.QueueConnectionFactory, javax.jms.QueueConnection, String, String, String, String) 
                    throws javax.jms.JMSException;
    
                    protected JMSConnector$AsyncConnection$ListenerSession 
                    createListenerSession(javax.jms.Connection, Subscription) 
                    throws Exception;
}

                

org/apache/axis/transport/jms/QueueConnector$QueueDestinationEndpoint.class

                    package org.apache.axis.transport.jms;

                    final 
                    synchronized 
                    class QueueConnector$QueueDestinationEndpoint 
                    extends QueueConnector$QueueEndpoint {
    javax.jms.Queue 
                    m_queue;
    void QueueConnector$QueueDestinationEndpoint(QueueConnector, javax.jms.Queue) 
                    throws javax.jms.JMSException;
    javax.jms.Destination 
                    getDestination(javax.jms.Session);
}

                

org/apache/axis/transport/jms/QueueConnector$QueueEndpoint.class

                    package org.apache.axis.transport.jms;

                    synchronized 
                    class QueueConnector$QueueEndpoint 
                    extends JMSEndpoint {
    String 
                    m_queueName;
    void QueueConnector$QueueEndpoint(QueueConnector, String);
    javax.jms.Destination 
                    getDestination(javax.jms.Session) 
                    throws Exception;
    
                    public String 
                    toString();
    
                    public boolean 
                    equals(Object);
}

                

org/apache/axis/transport/jms/QueueConnector$QueueSyncConnection$QueueSendSession.class

                    package org.apache.axis.transport.jms;

                    final 
                    synchronized 
                    class QueueConnector$QueueSyncConnection$QueueSendSession 
                    extends JMSConnector$SyncConnection$SendSession {
    void QueueConnector$QueueSyncConnection$QueueSendSession(QueueConnector$QueueSyncConnection, javax.jms.QueueSession, javax.jms.QueueSender) 
                    throws javax.jms.JMSException;
    
                    protected javax.jms.MessageConsumer 
                    createConsumer(javax.jms.Destination) 
                    throws javax.jms.JMSException;
    
                    protected javax.jms.Destination 
                    createTemporaryDestination() 
                    throws javax.jms.JMSException;
    
                    protected void 
                    deleteTemporaryDestination(javax.jms.Destination) 
                    throws javax.jms.JMSException;
    
                    protected void 
                    send(javax.jms.Destination, javax.jms.Message, int, int, long) 
                    throws javax.jms.JMSException;
}

                

org/apache/axis/transport/jms/QueueConnector$QueueSyncConnection.class

                    package org.apache.axis.transport.jms;

                    final 
                    synchronized 
                    class QueueConnector$QueueSyncConnection 
                    extends JMSConnector$SyncConnection {
    void QueueConnector$QueueSyncConnection(QueueConnector, javax.jms.QueueConnectionFactory, javax.jms.QueueConnection, int, String, String, String, String) 
                    throws javax.jms.JMSException;
    
                    protected JMSConnector$SyncConnection$SendSession 
                    createSendSession(javax.jms.Connection) 
                    throws javax.jms.JMSException;
}

                

org/apache/axis/transport/jms/QueueConnector.class

                    package org.apache.axis.transport.jms;

                    public 
                    synchronized 
                    class QueueConnector 
                    extends JMSConnector {
    
                    public void QueueConnector(javax.jms.ConnectionFactory, int, int, long, long, long, boolean, String, String, String, org.apache.axis.components.jms.JMSVendorAdapter, JMSURLHelper) 
                    throws javax.jms.JMSException;
    
                    public JMSEndpoint 
                    createEndpoint(String);
    
                    public JMSEndpoint 
                    createEndpoint(javax.jms.Destination) 
                    throws javax.jms.JMSException;
    
                    protected javax.jms.Connection 
                    internalConnect(javax.jms.ConnectionFactory, String, String) 
                    throws javax.jms.JMSException;
    
                    protected JMSConnector$SyncConnection 
                    createSyncConnection(javax.jms.ConnectionFactory, javax.jms.Connection, int, String, String, String, String) 
                    throws javax.jms.JMSException;
    
                    private javax.jms.QueueSession 
                    createQueueSession(javax.jms.QueueConnection, int) 
                    throws javax.jms.JMSException;
    
                    private javax.jms.Queue 
                    createQueue(javax.jms.QueueSession, String) 
                    throws Exception;
    
                    private javax.jms.QueueReceiver 
                    createReceiver(javax.jms.QueueSession, javax.jms.Queue, String) 
                    throws javax.jms.JMSException;
    
                    protected JMSConnector$AsyncConnection 
                    createAsyncConnection(javax.jms.ConnectionFactory, javax.jms.Connection, String, String, String, String) 
                    throws javax.jms.JMSException;
}

                

org/apache/axis/transport/jms/SimpleJMSListener.class

                    package org.apache.axis.transport.jms;

                    public 
                    synchronized 
                    class SimpleJMSListener 
                    implements javax.jms.MessageListener {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private 
                    static boolean 
                    doThreads;
    
                    private JMSConnector 
                    connector;
    
                    private JMSEndpoint 
                    endpoint;
    
                    private org.apache.axis.server.AxisServer 
                    server;
    
                    private java.util.HashMap 
                    connectorProps;
    
                    private 
                    static org.apache.axis.server.AxisServer 
                    myAxisServer;
    
                    public void SimpleJMSListener(java.util.HashMap, java.util.HashMap, String, String, String, boolean) 
                    throws Exception;
    
                    protected 
                    static org.apache.axis.server.AxisServer 
                    getAxisServer();
    
                    protected JMSConnector 
                    getConnector();
    
                    public void 
                    onMessage(javax.jms.Message);
    
                    public void 
                    start() 
                    throws Exception;
    
                    public void 
                    shutdown() 
                    throws Exception;
    
                    public 
                    static 
                    final java.util.HashMap 
                    createConnectorMap(org.apache.axis.utils.Options);
    
                    public 
                    static 
                    final java.util.HashMap 
                    createCFMap(org.apache.axis.utils.Options) 
                    throws java.io.IOException;
    
                    public 
                    static void 
                    main(String[]) 
                    throws Exception;
    
                    public 
                    static void 
                    printUsage();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/transport/jms/SimpleJMSWorker.class

                    package org.apache.axis.transport.jms;

                    public 
                    synchronized 
                    class SimpleJMSWorker 
                    implements Runnable {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    SimpleJMSListener 
                    listener;
    javax.jms.BytesMessage 
                    message;
    
                    public void SimpleJMSWorker(SimpleJMSListener, javax.jms.BytesMessage);
    
                    public void 
                    run();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/transport/jms/Subscription.class

                    package org.apache.axis.transport.jms;

                    public 
                    synchronized 
                    class Subscription {
    javax.jms.MessageListener 
                    m_listener;
    JMSEndpoint 
                    m_endpoint;
    String 
                    m_messageSelector;
    int 
                    m_ackMode;
    void Subscription(javax.jms.MessageListener, JMSEndpoint, java.util.HashMap);
    
                    public int 
                    hashCode();
    
                    public boolean 
                    equals(Object);
    
                    public String 
                    toString();
}

                

org/apache/axis/transport/jms/TopicConnector$TopicAsyncConnection$TopicListenerSession.class

                    package org.apache.axis.transport.jms;

                    final 
                    synchronized 
                    class TopicConnector$TopicAsyncConnection$TopicListenerSession 
                    extends JMSConnector$AsyncConnection$ListenerSession {
    void TopicConnector$TopicAsyncConnection$TopicListenerSession(TopicConnector$TopicAsyncConnection, javax.jms.TopicSession, javax.jms.TopicSubscriber, TopicConnector$TopicSubscription) 
                    throws Exception;
    void 
                    cleanup();
}

                

org/apache/axis/transport/jms/TopicConnector$TopicAsyncConnection.class

                    package org.apache.axis.transport.jms;

                    final 
                    synchronized 
                    class TopicConnector$TopicAsyncConnection 
                    extends JMSConnector$AsyncConnection {
    void TopicConnector$TopicAsyncConnection(TopicConnector, javax.jms.TopicConnectionFactory, javax.jms.TopicConnection, String, String, String, String) 
                    throws javax.jms.JMSException;
    
                    protected JMSConnector$AsyncConnection$ListenerSession 
                    createListenerSession(javax.jms.Connection, Subscription) 
                    throws Exception;
}

                

org/apache/axis/transport/jms/TopicConnector$TopicDestinationEndpoint.class

                    package org.apache.axis.transport.jms;

                    final 
                    synchronized 
                    class TopicConnector$TopicDestinationEndpoint 
                    extends TopicConnector$TopicEndpoint {
    javax.jms.Topic 
                    m_topic;
    void TopicConnector$TopicDestinationEndpoint(TopicConnector, javax.jms.Topic) 
                    throws javax.jms.JMSException;
    javax.jms.Destination 
                    getDestination(javax.jms.Session);
}

                

org/apache/axis/transport/jms/TopicConnector$TopicEndpoint.class

                    package org.apache.axis.transport.jms;

                    synchronized 
                    class TopicConnector$TopicEndpoint 
                    extends JMSEndpoint {
    String 
                    m_topicName;
    void TopicConnector$TopicEndpoint(TopicConnector, String);
    javax.jms.Destination 
                    getDestination(javax.jms.Session) 
                    throws Exception;
    
                    protected Subscription 
                    createSubscription(javax.jms.MessageListener, java.util.HashMap);
    
                    public String 
                    toString();
    
                    public boolean 
                    equals(Object);
}

                

org/apache/axis/transport/jms/TopicConnector$TopicSubscription.class

                    package org.apache.axis.transport.jms;

                    final 
                    synchronized 
                    class TopicConnector$TopicSubscription 
                    extends Subscription {
    String 
                    m_subscriptionName;
    boolean 
                    m_unsubscribe;
    boolean 
                    m_noLocal;
    void TopicConnector$TopicSubscription(TopicConnector, javax.jms.MessageListener, JMSEndpoint, java.util.HashMap);
    boolean 
                    isDurable();
    
                    public boolean 
                    equals(Object);
    
                    public String 
                    toString();
}

                

org/apache/axis/transport/jms/TopicConnector$TopicSyncConnection$TopicSendSession.class

                    package org.apache.axis.transport.jms;

                    final 
                    synchronized 
                    class TopicConnector$TopicSyncConnection$TopicSendSession 
                    extends JMSConnector$SyncConnection$SendSession {
    void TopicConnector$TopicSyncConnection$TopicSendSession(TopicConnector$TopicSyncConnection, javax.jms.TopicSession, javax.jms.TopicPublisher) 
                    throws javax.jms.JMSException;
    
                    protected javax.jms.MessageConsumer 
                    createConsumer(javax.jms.Destination) 
                    throws javax.jms.JMSException;
    
                    protected void 
                    deleteTemporaryDestination(javax.jms.Destination) 
                    throws javax.jms.JMSException;
    
                    protected javax.jms.Destination 
                    createTemporaryDestination() 
                    throws javax.jms.JMSException;
    
                    protected void 
                    send(javax.jms.Destination, javax.jms.Message, int, int, long) 
                    throws javax.jms.JMSException;
}

                

org/apache/axis/transport/jms/TopicConnector$TopicSyncConnection.class

                    package org.apache.axis.transport.jms;

                    final 
                    synchronized 
                    class TopicConnector$TopicSyncConnection 
                    extends JMSConnector$SyncConnection {
    void TopicConnector$TopicSyncConnection(TopicConnector, javax.jms.TopicConnectionFactory, javax.jms.TopicConnection, int, String, String, String, String) 
                    throws javax.jms.JMSException;
    
                    protected JMSConnector$SyncConnection$SendSession 
                    createSendSession(javax.jms.Connection) 
                    throws javax.jms.JMSException;
}

                

org/apache/axis/transport/jms/TopicConnector.class

                    package org.apache.axis.transport.jms;

                    public 
                    synchronized 
                    class TopicConnector 
                    extends JMSConnector {
    
                    public void TopicConnector(javax.jms.TopicConnectionFactory, int, int, long, long, long, boolean, String, String, String, org.apache.axis.components.jms.JMSVendorAdapter, JMSURLHelper) 
                    throws javax.jms.JMSException;
    
                    protected javax.jms.Connection 
                    internalConnect(javax.jms.ConnectionFactory, String, String) 
                    throws javax.jms.JMSException;
    
                    protected JMSConnector$SyncConnection 
                    createSyncConnection(javax.jms.ConnectionFactory, javax.jms.Connection, int, String, String, String, String) 
                    throws javax.jms.JMSException;
    
                    protected JMSConnector$AsyncConnection 
                    createAsyncConnection(javax.jms.ConnectionFactory, javax.jms.Connection, String, String, String, String) 
                    throws javax.jms.JMSException;
    
                    public JMSEndpoint 
                    createEndpoint(String);
    
                    public JMSEndpoint 
                    createEndpoint(javax.jms.Destination) 
                    throws javax.jms.JMSException;
    
                    private javax.jms.TopicSession 
                    createTopicSession(javax.jms.TopicConnection, int) 
                    throws javax.jms.JMSException;
    
                    private javax.jms.Topic 
                    createTopic(javax.jms.TopicSession, String) 
                    throws Exception;
    
                    private javax.jms.TopicSubscriber 
                    createSubscriber(javax.jms.TopicSession, TopicConnector$TopicSubscription) 
                    throws Exception;
    
                    private javax.jms.TopicSubscriber 
                    createDurableSubscriber(javax.jms.TopicSession, javax.jms.Topic, String, String, boolean) 
                    throws javax.jms.JMSException;
    
                    private javax.jms.TopicSubscriber 
                    createSubscriber(javax.jms.TopicSession, javax.jms.Topic, String, boolean) 
                    throws javax.jms.JMSException;
}

                

org/apache/axis/transport/local/Handler.class

                    package org.apache.axis.transport.local;

                    public 
                    synchronized 
                    class Handler 
                    extends java.net.URLStreamHandler {
    
                    public void Handler();
    
                    protected java.net.URLConnection 
                    openConnection(java.net.URL);
}

                

org/apache/axis/transport/local/LocalResponder.class

                    package org.apache.axis.transport.local;

                    public 
                    synchronized 
                    class LocalResponder 
                    extends org.apache.axis.handlers.BasicHandler {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void LocalResponder();
    
                    public void 
                    invoke(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/transport/local/LocalSender.class

                    package org.apache.axis.transport.local;

                    public 
                    synchronized 
                    class LocalSender 
                    extends org.apache.axis.handlers.BasicHandler {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private 
                    volatile org.apache.axis.server.AxisServer 
                    server;
    
                    public void LocalSender();
    
                    public 
                    synchronized void 
                    init();
    
                    public void 
                    invoke(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/transport/local/LocalTransport.class

                    package org.apache.axis.transport.local;

                    public 
                    synchronized 
                    class LocalTransport 
                    extends org.apache.axis.client.Transport {
    
                    public 
                    static 
                    final String 
                    LOCAL_SERVER = LocalTransport.AxisServer;
    
                    public 
                    static 
                    final String 
                    REMOTE_SERVICE = LocalTransport.RemoteService;
    
                    private org.apache.axis.server.AxisServer 
                    server;
    
                    private String 
                    remoteServiceName;
    
                    public void LocalTransport();
    
                    public void LocalTransport(org.apache.axis.server.AxisServer);
    
                    public void 
                    setRemoteService(String);
    
                    public void 
                    setupMessageContextImpl(org.apache.axis.MessageContext, org.apache.axis.client.Call, org.apache.axis.AxisEngine);
}

                

org/apache/axis/transport/mail/Handler.class

                    package org.apache.axis.transport.mail;

                    public 
                    synchronized 
                    class Handler 
                    extends java.net.URLStreamHandler {
    
                    public void Handler();
    
                    protected java.net.URLConnection 
                    openConnection(java.net.URL);
}

                

org/apache/axis/transport/mail/MailConstants.class

                    package org.apache.axis.transport.mail;

                    public 
                    synchronized 
                    class MailConstants {
    
                    public 
                    static 
                    final String 
                    FROM_ADDRESS = transport.mail.from;
    
                    public 
                    static 
                    final String 
                    TO_ADDRESS = transport.mail.to;
    
                    public 
                    static 
                    final String 
                    SMTP_HOST = transport.mail.smtp.host;
    
                    public 
                    static 
                    final String 
                    POP3_HOST = transport.mail.pop3.host;
    
                    public 
                    static 
                    final String 
                    POP3_USERID = transport.mail.pop3.userid;
    
                    public 
                    static 
                    final String 
                    POP3_PASSWORD = transport.mail.pop3.password;
    
                    public void MailConstants();
}

                

org/apache/axis/transport/mail/MailSender.class

                    package org.apache.axis.transport.mail;

                    public 
                    synchronized 
                    class MailSender 
                    extends org.apache.axis.handlers.BasicHandler {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private org.apache.axis.components.uuid.UUIDGen 
                    uuidGen;
    java.util.Properties 
                    prop;
    javax.mail.Session 
                    session;
    
                    public void MailSender();
    
                    public void 
                    invoke(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    private String 
                    writeUsingSMTP(org.apache.axis.MessageContext) 
                    throws Exception;
    
                    private void 
                    readUsingPOP3(String, org.apache.axis.MessageContext) 
                    throws Exception;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/transport/mail/MailServer.class

                    package org.apache.axis.transport.mail;

                    public 
                    synchronized 
                    class MailServer 
                    implements Runnable {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private String 
                    host;
    
                    private int 
                    port;
    
                    private String 
                    userid;
    
                    private String 
                    password;
    
                    private 
                    static boolean 
                    doThreads;
    
                    private 
                    static org.apache.axis.server.AxisServer 
                    myAxisServer;
    
                    private boolean 
                    stopped;
    
                    private org.apache.commons.net.pop3.POP3Client 
                    pop3;
    
                    public void MailServer(String, int, String, String);
    
                    public void 
                    setDoThreads(boolean);
    
                    public boolean 
                    getDoThreads();
    
                    public String 
                    getHost();
    
                    protected 
                    static 
                    synchronized org.apache.axis.server.AxisServer 
                    getAxisServer();
    
                    public void 
                    run();
    
                    public org.apache.commons.net.pop3.POP3Client 
                    getPOP3();
    
                    public void 
                    setPOP3(org.apache.commons.net.pop3.POP3Client);
    
                    public void 
                    start(boolean) 
                    throws Exception;
    
                    public void 
                    start() 
                    throws Exception;
    
                    public void 
                    stop() 
                    throws Exception;
    
                    public 
                    static void 
                    main(String[]);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/transport/mail/MailTransport.class

                    package org.apache.axis.transport.mail;

                    public 
                    synchronized 
                    class MailTransport 
                    extends org.apache.axis.client.Transport {
    
                    public void MailTransport();
    
                    public void 
                    setupMessageContextImpl(org.apache.axis.MessageContext, org.apache.axis.client.Call, org.apache.axis.AxisEngine);
}

                

org/apache/axis/transport/mail/MailWorker.class

                    package org.apache.axis.transport.mail;

                    public 
                    synchronized 
                    class MailWorker 
                    implements Runnable {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private MailServer 
                    server;
    
                    private javax.mail.internet.MimeMessage 
                    mimeMessage;
    
                    private 
                    static String 
                    transportName;
    
                    private java.util.Properties 
                    prop;
    
                    private javax.mail.Session 
                    session;
    
                    public void MailWorker(MailServer, javax.mail.internet.MimeMessage);
    
                    public void 
                    run();
    
                    private void 
                    writeUsingSMTP(org.apache.axis.MessageContext, String, String, String, String, org.apache.axis.Message) 
                    throws Exception;
    
                    private void 
                    parseHeaders(javax.mail.internet.MimeMessage, StringBuffer, StringBuffer, StringBuffer) 
                    throws Exception;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/types/Day.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class Day 
                    implements java.io.Serializable {
    int 
                    day;
    String 
                    timezone;
    
                    public void Day(int) 
                    throws NumberFormatException;
    
                    public void Day(int, String) 
                    throws NumberFormatException;
    
                    public void Day(String) 
                    throws NumberFormatException;
    
                    public int 
                    getDay();
    
                    public void 
                    setDay(int);
    
                    public String 
                    getTimezone();
    
                    public void 
                    setTimezone(String);
    
                    public void 
                    setValue(int, String) 
                    throws NumberFormatException;
    
                    public void 
                    setValue(int) 
                    throws NumberFormatException;
    
                    public String 
                    toString();
    
                    public boolean 
                    equals(Object);
    
                    public int 
                    hashCode();
}

                

org/apache/axis/types/Duration.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class Duration 
                    implements java.io.Serializable {
    boolean 
                    isNegative;
    int 
                    years;
    int 
                    months;
    int 
                    days;
    int 
                    hours;
    int 
                    minutes;
    double 
                    seconds;
    
                    public void Duration();
    
                    public void Duration(boolean, int, int, int, int, int, double);
    
                    public void Duration(String) 
                    throws IllegalArgumentException;
    
                    public void Duration(boolean, java.util.Calendar) 
                    throws IllegalArgumentException;
    
                    public void 
                    parseTime(String) 
                    throws IllegalArgumentException;
    
                    public void 
                    parseDate(String) 
                    throws IllegalArgumentException;
    
                    public boolean 
                    isNegative();
    
                    public int 
                    getYears();
    
                    public int 
                    getMonths();
    
                    public int 
                    getDays();
    
                    public int 
                    getHours();
    
                    public int 
                    getMinutes();
    
                    public double 
                    getSeconds();
    
                    public void 
                    setNegative(boolean);
    
                    public void 
                    setYears(int);
    
                    public void 
                    setMonths(int);
    
                    public void 
                    setDays(int);
    
                    public void 
                    setHours(int);
    
                    public void 
                    setMinutes(int);
    
                    public void 
                    setSeconds(int);
    
                    public void 
                    setSeconds(double);
    
                    public String 
                    toString();
    
                    public boolean 
                    equals(Object);
    
                    public int 
                    hashCode();
    
                    public java.util.Calendar 
                    getAsCalendar();
    
                    public java.util.Calendar 
                    getAsCalendar(java.util.Calendar);
}

                

org/apache/axis/types/Entities.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class Entities 
                    extends NCName {
    
                    private Entity[] 
                    entities;
    
                    public void Entities();
    
                    public void Entities(String) 
                    throws IllegalArgumentException;
}

                

org/apache/axis/types/Entity.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class Entity 
                    extends NCName {
    
                    public void Entity();
    
                    public void Entity(String) 
                    throws IllegalArgumentException;
}

                

org/apache/axis/types/HexBinary.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class HexBinary 
                    implements java.io.Serializable {
    byte[] 
                    m_value;
    
                    public 
                    static 
                    final String 
                    ERROR_ODD_NUMBER_OF_DIGITS;
    
                    public 
                    static 
                    final String 
                    ERROR_BAD_CHARACTER_IN_HEX_STRING;
    
                    public 
                    static 
                    final int[] 
                    DEC;
    
                    public void HexBinary();
    
                    public void HexBinary(String);
    
                    public void HexBinary(byte[]);
    
                    public byte[] 
                    getBytes();
    
                    public String 
                    toString();
    
                    public int 
                    hashCode();
    
                    public boolean 
                    equals(Object);
    
                    public 
                    static byte[] 
                    decode(String);
    
                    public 
                    static String 
                    encode(byte[]);
    
                    public 
                    static int 
                    convert2Int(byte[]);
    
                    private 
                    static char 
                    convertDigit(int);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/types/IDRef.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class IDRef 
                    extends NCName {
    
                    public void IDRef();
    
                    public void IDRef(String) 
                    throws IllegalArgumentException;
}

                

org/apache/axis/types/IDRefs.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class IDRefs 
                    extends NCName {
    
                    private IDRef[] 
                    idrefs;
    
                    public void IDRefs();
    
                    public void IDRefs(String) 
                    throws IllegalArgumentException;
    
                    public void 
                    setValue(String);
    
                    public String 
                    toString();
    
                    public boolean 
                    equals(Object);
    
                    public int 
                    hashCode();
}

                

org/apache/axis/types/Id.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class Id 
                    extends NCName {
    
                    public void Id();
    
                    public void Id(String) 
                    throws IllegalArgumentException;
    
                    public void 
                    setValue(String) 
                    throws IllegalArgumentException;
    
                    public 
                    static boolean 
                    isValid(String);
}

                

org/apache/axis/types/Language.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class Language 
                    extends Token {
    
                    public void Language();
    
                    public void Language(String) 
                    throws IllegalArgumentException;
    
                    public 
                    static boolean 
                    isValid(String);
}

                

org/apache/axis/types/Month.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class Month 
                    implements java.io.Serializable {
    int 
                    month;
    String 
                    timezone;
    
                    public void Month(int) 
                    throws NumberFormatException;
    
                    public void Month(int, String) 
                    throws NumberFormatException;
    
                    public void Month(String) 
                    throws NumberFormatException;
    
                    public int 
                    getMonth();
    
                    public void 
                    setMonth(int);
    
                    public String 
                    getTimezone();
    
                    public void 
                    setTimezone(String);
    
                    public void 
                    setValue(int, String) 
                    throws NumberFormatException;
    
                    public void 
                    setValue(int) 
                    throws NumberFormatException;
    
                    public String 
                    toString();
    
                    public boolean 
                    equals(Object);
    
                    public int 
                    hashCode();
}

                

org/apache/axis/types/MonthDay.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class MonthDay 
                    implements java.io.Serializable {
    int 
                    month;
    int 
                    day;
    String 
                    timezone;
    
                    public void MonthDay(int, int) 
                    throws NumberFormatException;
    
                    public void MonthDay(int, int, String) 
                    throws NumberFormatException;
    
                    public void MonthDay(String) 
                    throws NumberFormatException;
    
                    public int 
                    getMonth();
    
                    public void 
                    setMonth(int);
    
                    public int 
                    getDay();
    
                    public void 
                    setDay(int);
    
                    public String 
                    getTimezone();
    
                    public void 
                    setTimezone(String);
    
                    public void 
                    setValue(int, int, String) 
                    throws NumberFormatException;
    
                    public void 
                    setValue(int, int) 
                    throws NumberFormatException;
    
                    public String 
                    toString();
    
                    public boolean 
                    equals(Object);
    
                    public int 
                    hashCode();
}

                

org/apache/axis/types/NCName.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class NCName 
                    extends Name {
    
                    public void NCName();
    
                    public void NCName(String) 
                    throws IllegalArgumentException;
    
                    public void 
                    setValue(String) 
                    throws IllegalArgumentException;
    
                    public 
                    static boolean 
                    isValid(String);
}

                

org/apache/axis/types/NMToken.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class NMToken 
                    extends Token {
    
                    public void NMToken();
    
                    public void NMToken(String) 
                    throws IllegalArgumentException;
    
                    public 
                    static boolean 
                    isValid(String);
}

                

org/apache/axis/types/NMTokens.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class NMTokens 
                    extends NCName {
    
                    private NMToken[] 
                    tokens;
    
                    public void NMTokens();
    
                    public void NMTokens(String) 
                    throws IllegalArgumentException;
    
                    public void 
                    setValue(String);
    
                    public String 
                    toString();
    
                    public boolean 
                    equals(Object);
    
                    public int 
                    hashCode();
}

                

org/apache/axis/types/Name.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class Name 
                    extends Token {
    
                    public void Name();
    
                    public void Name(String) 
                    throws IllegalArgumentException;
    
                    public void 
                    setValue(String) 
                    throws IllegalArgumentException;
    
                    public 
                    static boolean 
                    isValid(String);
}

                

org/apache/axis/types/NegativeInteger$BigIntegerRep.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class NegativeInteger$BigIntegerRep 
                    implements java.io.Serializable {
    
                    private byte[] 
                    array;
    
                    protected void NegativeInteger$BigIntegerRep(byte[]);
    
                    protected Object 
                    readResolve() 
                    throws java.io.ObjectStreamException;
}

                

org/apache/axis/types/NegativeInteger.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class NegativeInteger 
                    extends NonPositiveInteger {
    
                    private java.math.BigInteger 
                    zero;
    
                    public void NegativeInteger(byte[]);
    
                    public void NegativeInteger(int, byte[]);
    
                    public void NegativeInteger(int, int, java.util.Random);
    
                    public void NegativeInteger(int, java.util.Random);
    
                    public void NegativeInteger(String);
    
                    public void NegativeInteger(String, int);
    
                    private void 
                    checkValidity();
    
                    public Object 
                    writeReplace() 
                    throws java.io.ObjectStreamException;
}

                

org/apache/axis/types/NonNegativeInteger$BigIntegerRep.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class NonNegativeInteger$BigIntegerRep 
                    implements java.io.Serializable {
    
                    private byte[] 
                    array;
    
                    protected void NonNegativeInteger$BigIntegerRep(byte[]);
    
                    protected Object 
                    readResolve() 
                    throws java.io.ObjectStreamException;
}

                

org/apache/axis/types/NonNegativeInteger.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class NonNegativeInteger 
                    extends java.math.BigInteger {
    
                    private java.math.BigInteger 
                    zero;
    
                    public void NonNegativeInteger(byte[]);
    
                    public void NonNegativeInteger(int, byte[]);
    
                    public void NonNegativeInteger(int, int, java.util.Random);
    
                    public void NonNegativeInteger(int, java.util.Random);
    
                    public void NonNegativeInteger(String);
    
                    public void NonNegativeInteger(String, int);
    
                    private void 
                    checkValidity();
    
                    public Object 
                    writeReplace() 
                    throws java.io.ObjectStreamException;
}

                

org/apache/axis/types/NonPositiveInteger$BigIntegerRep.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class NonPositiveInteger$BigIntegerRep 
                    implements java.io.Serializable {
    
                    private byte[] 
                    array;
    
                    protected void NonPositiveInteger$BigIntegerRep(byte[]);
    
                    protected Object 
                    readResolve() 
                    throws java.io.ObjectStreamException;
}

                

org/apache/axis/types/NonPositiveInteger.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class NonPositiveInteger 
                    extends java.math.BigInteger {
    
                    private java.math.BigInteger 
                    zero;
    
                    public void NonPositiveInteger(byte[]);
    
                    public void NonPositiveInteger(int, byte[]);
    
                    public void NonPositiveInteger(int, int, java.util.Random);
    
                    public void NonPositiveInteger(int, java.util.Random);
    
                    public void NonPositiveInteger(String);
    
                    public void NonPositiveInteger(String, int);
    
                    private void 
                    checkValidity();
    
                    public Object 
                    writeReplace() 
                    throws java.io.ObjectStreamException;
}

                

org/apache/axis/types/NormalizedString.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class NormalizedString 
                    implements java.io.Serializable {
    String 
                    m_value;
    
                    public void NormalizedString();
    
                    public void NormalizedString(String) 
                    throws IllegalArgumentException;
    
                    public void 
                    setValue(String) 
                    throws IllegalArgumentException;
    
                    public String 
                    toString();
    
                    public int 
                    hashCode();
    
                    public 
                    static boolean 
                    isValid(String);
    
                    public boolean 
                    equals(Object);
}

                

org/apache/axis/types/Notation.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class Notation 
                    implements java.io.Serializable {
    NCName 
                    name;
    URI 
                    publicURI;
    URI 
                    systemURI;
    
                    private 
                    static org.apache.axis.description.TypeDesc 
                    typeDesc;
    
                    public void Notation();
    
                    public void Notation(NCName, URI, URI);
    
                    public NCName 
                    getName();
    
                    public void 
                    setName(NCName);
    
                    public URI 
                    getPublic();
    
                    public void 
                    setPublic(URI);
    
                    public URI 
                    getSystem();
    
                    public void 
                    setSystem(URI);
    
                    public boolean 
                    equals(Object);
    
                    public int 
                    hashCode();
    
                    public 
                    static org.apache.axis.description.TypeDesc 
                    getTypeDesc();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/types/PositiveInteger$BigIntegerRep.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class PositiveInteger$BigIntegerRep 
                    implements java.io.Serializable {
    
                    private byte[] 
                    array;
    
                    protected void PositiveInteger$BigIntegerRep(byte[]);
    
                    protected Object 
                    readResolve() 
                    throws java.io.ObjectStreamException;
}

                

org/apache/axis/types/PositiveInteger.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class PositiveInteger 
                    extends NonNegativeInteger {
    
                    private java.math.BigInteger 
                    iMinInclusive;
    
                    public void PositiveInteger(byte[]);
    
                    public void PositiveInteger(int, byte[]);
    
                    public void PositiveInteger(int, int, java.util.Random);
    
                    public void PositiveInteger(int, java.util.Random);
    
                    public void PositiveInteger(String);
    
                    public void PositiveInteger(String, int);
    
                    private void 
                    checkValidity();
    
                    public Object 
                    writeReplace() 
                    throws java.io.ObjectStreamException;
}

                

org/apache/axis/types/Schema.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class Schema 
                    implements java.io.Serializable {
    
                    private org.apache.axis.message.MessageElement[] 
                    _any;
    
                    private URI 
                    targetNamespace;
    
                    private NormalizedString 
                    version;
    
                    private Id 
                    id;
    
                    private Object 
                    __equalsCalc;
    
                    private boolean 
                    __hashCodeCalc;
    
                    private 
                    static org.apache.axis.description.TypeDesc 
                    typeDesc;
    
                    public void Schema();
    
                    public org.apache.axis.message.MessageElement[] 
                    get_any();
    
                    public void 
                    set_any(org.apache.axis.message.MessageElement[]);
    
                    public URI 
                    getTargetNamespace();
    
                    public void 
                    setTargetNamespace(URI);
    
                    public NormalizedString 
                    getVersion();
    
                    public void 
                    setVersion(NormalizedString);
    
                    public Id 
                    getId();
    
                    public void 
                    setId(Id);
    
                    public 
                    synchronized boolean 
                    equals(Object);
    
                    public 
                    synchronized int 
                    hashCode();
    
                    public 
                    static org.apache.axis.description.TypeDesc 
                    getTypeDesc();
    
                    public 
                    static org.apache.axis.encoding.Serializer 
                    getSerializer(String, Class, javax.xml.namespace.QName);
    
                    public 
                    static org.apache.axis.encoding.Deserializer 
                    getDeserializer(String, Class, javax.xml.namespace.QName);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/types/Time.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class Time 
                    implements java.io.Serializable {
    
                    private java.util.Calendar 
                    _value;
    
                    private 
                    static java.text.SimpleDateFormat 
                    zulu;
    
                    public void Time(java.util.Calendar);
    
                    public void Time(String) 
                    throws NumberFormatException;
    
                    public java.util.Calendar 
                    getAsCalendar();
    
                    public void 
                    setTime(java.util.Calendar);
    
                    public void 
                    setTime(java.util.Date);
    
                    private java.util.Calendar 
                    makeValue(String) 
                    throws NumberFormatException;
    
                    private int 
                    getTimezoneNumberValue(char);
    
                    private 
                    static java.util.Date 
                    ParseHoursMinutesSeconds(String);
    
                    private void 
                    validateSource(String);
    
                    public String 
                    toString();
    
                    public boolean 
                    equals(Object);
    
                    public int 
                    hashCode();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/types/Token.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class Token 
                    extends NormalizedString {
    
                    public void Token();
    
                    public void Token(String) 
                    throws IllegalArgumentException;
    
                    public 
                    static boolean 
                    isValid(String);
    
                    public void 
                    setValue(String) 
                    throws IllegalArgumentException;
}

                

org/apache/axis/types/URI$MalformedURIException.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class URI$MalformedURIException 
                    extends java.io.IOException {
    
                    static 
                    final long 
                    serialVersionUID = -6695054834342951930;
    
                    public void URI$MalformedURIException();
    
                    public void URI$MalformedURIException(String);
}

                

org/apache/axis/types/URI.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class URI 
                    implements java.io.Serializable {
    
                    static 
                    final long 
                    serialVersionUID = 1601921774685357214;
    
                    private 
                    static 
                    final byte[] 
                    fgLookupTable;
    
                    private 
                    static 
                    final int 
                    RESERVED_CHARACTERS = 1;
    
                    private 
                    static 
                    final int 
                    MARK_CHARACTERS = 2;
    
                    private 
                    static 
                    final int 
                    SCHEME_CHARACTERS = 4;
    
                    private 
                    static 
                    final int 
                    USERINFO_CHARACTERS = 8;
    
                    private 
                    static 
                    final int 
                    ASCII_ALPHA_CHARACTERS = 16;
    
                    private 
                    static 
                    final int 
                    ASCII_DIGIT_CHARACTERS = 32;
    
                    private 
                    static 
                    final int 
                    ASCII_HEX_CHARACTERS = 64;
    
                    private 
                    static 
                    final int 
                    PATH_CHARACTERS = 128;
    
                    private 
                    static 
                    final int 
                    MASK_ALPHA_NUMERIC = 48;
    
                    private 
                    static 
                    final int 
                    MASK_UNRESERVED_MASK = 50;
    
                    private 
                    static 
                    final int 
                    MASK_URI_CHARACTER = 51;
    
                    private 
                    static 
                    final int 
                    MASK_SCHEME_CHARACTER = 52;
    
                    private 
                    static 
                    final int 
                    MASK_USERINFO_CHARACTER = 58;
    
                    private 
                    static 
                    final int 
                    MASK_PATH_CHARACTER = 178;
    
                    private String 
                    m_scheme;
    
                    private String 
                    m_userinfo;
    
                    private String 
                    m_host;
    
                    private int 
                    m_port;
    
                    private String 
                    m_regAuthority;
    
                    private String 
                    m_path;
    
                    private String 
                    m_queryString;
    
                    private String 
                    m_fragment;
    
                    private 
                    static boolean 
                    DEBUG;
    
                    public void URI();
    
                    public void URI(URI);
    
                    public void URI(String) 
                    throws URI$MalformedURIException;
    
                    public void URI(String, boolean) 
                    throws URI$MalformedURIException;
    
                    public void URI(URI, String) 
                    throws URI$MalformedURIException;
    
                    public void URI(URI, String, boolean) 
                    throws URI$MalformedURIException;
    
                    public void URI(String, String) 
                    throws URI$MalformedURIException;
    
                    public void URI(String, String, String, String, String) 
                    throws URI$MalformedURIException;
    
                    public void URI(String, String, String, int, String, String, String) 
                    throws URI$MalformedURIException;
    
                    private void 
                    initialize(URI);
    
                    private void 
                    initialize(URI, String, boolean) 
                    throws URI$MalformedURIException;
    
                    private void 
                    initialize(URI, String) 
                    throws URI$MalformedURIException;
    
                    public void 
                    absolutize(URI);
    
                    private void 
                    initializeScheme(String) 
                    throws URI$MalformedURIException;
    
                    private boolean 
                    initializeAuthority(String);
    
                    private boolean 
                    isValidServerBasedAuthority(String, int, String);
    
                    private boolean 
                    isValidRegistryBasedAuthority(String);
    
                    private void 
                    initializePath(String, int) 
                    throws URI$MalformedURIException;
    
                    public String 
                    getScheme();
    
                    public String 
                    getSchemeSpecificPart();
    
                    public String 
                    getUserinfo();
    
                    public String 
                    getHost();
    
                    public int 
                    getPort();
    
                    public String 
                    getRegBasedAuthority();
    
                    public String 
                    getPath(boolean, boolean);
    
                    public String 
                    getPath();
    
                    public String 
                    getQueryString();
    
                    public String 
                    getFragment();
    
                    public void 
                    setScheme(String) 
                    throws URI$MalformedURIException;
    
                    public void 
                    setUserinfo(String) 
                    throws URI$MalformedURIException;
    
                    public void 
                    setHost(String) 
                    throws URI$MalformedURIException;
    
                    public void 
                    setPort(int) 
                    throws URI$MalformedURIException;
    
                    public void 
                    setRegBasedAuthority(String) 
                    throws URI$MalformedURIException;
    
                    public void 
                    setPath(String) 
                    throws URI$MalformedURIException;
    
                    public void 
                    appendPath(String) 
                    throws URI$MalformedURIException;
    
                    public void 
                    setQueryString(String) 
                    throws URI$MalformedURIException;
    
                    public void 
                    setFragment(String) 
                    throws URI$MalformedURIException;
    
                    public boolean 
                    equals(Object);
    
                    public int 
                    hashCode();
    
                    public String 
                    toString();
    
                    public boolean 
                    isGenericURI();
    
                    public boolean 
                    isAbsoluteURI();
    
                    public 
                    static boolean 
                    isConformantSchemeName(String);
    
                    public 
                    static boolean 
                    isWellFormedAddress(String);
    
                    public 
                    static boolean 
                    isWellFormedIPv4Address(String);
    
                    public 
                    static boolean 
                    isWellFormedIPv6Reference(String);
    
                    private 
                    static int 
                    scanHexSequence(String, int, int, int[]);
    
                    private 
                    static boolean 
                    isDigit(char);
    
                    private 
                    static boolean 
                    isHex(char);
    
                    private 
                    static boolean 
                    isAlpha(char);
    
                    private 
                    static boolean 
                    isAlphanum(char);
    
                    private 
                    static boolean 
                    isReservedCharacter(char);
    
                    private 
                    static boolean 
                    isUnreservedCharacter(char);
    
                    private 
                    static boolean 
                    isURICharacter(char);
    
                    private 
                    static boolean 
                    isSchemeCharacter(char);
    
                    private 
                    static boolean 
                    isUserinfoCharacter(char);
    
                    private 
                    static boolean 
                    isPathCharacter(char);
    
                    private 
                    static boolean 
                    isURIString(String);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/types/UnsignedByte.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class UnsignedByte 
                    extends UnsignedShort {
    
                    public void UnsignedByte();
    
                    public void UnsignedByte(long) 
                    throws NumberFormatException;
    
                    public void UnsignedByte(String) 
                    throws NumberFormatException;
    
                    public void 
                    setValue(long) 
                    throws NumberFormatException;
    
                    public 
                    static boolean 
                    isValid(long);
}

                

org/apache/axis/types/UnsignedInt.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class UnsignedInt 
                    extends Number 
                    implements Comparable {
    
                    protected Long 
                    lValue;
    
                    private Object 
                    __equalsCalc;
    
                    public void UnsignedInt();
    
                    public void UnsignedInt(long) 
                    throws NumberFormatException;
    
                    public void UnsignedInt(String) 
                    throws NumberFormatException;
    
                    public void 
                    setValue(long) 
                    throws NumberFormatException;
    
                    public String 
                    toString();
    
                    public int 
                    hashCode();
    
                    public 
                    static boolean 
                    isValid(long);
    
                    public 
                    synchronized boolean 
                    equals(Object);
    
                    public int 
                    compareTo(Object);
    
                    public byte 
                    byteValue();
    
                    public short 
                    shortValue();
    
                    public int 
                    intValue();
    
                    public long 
                    longValue();
    
                    public double 
                    doubleValue();
    
                    public float 
                    floatValue();
}

                

org/apache/axis/types/UnsignedLong.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class UnsignedLong 
                    extends Number 
                    implements Comparable {
    
                    protected java.math.BigInteger 
                    lValue;
    
                    private 
                    static java.math.BigInteger 
                    MAX;
    
                    private Object 
                    __equalsCalc;
    
                    public void UnsignedLong();
    
                    public void UnsignedLong(double) 
                    throws NumberFormatException;
    
                    public void UnsignedLong(java.math.BigInteger) 
                    throws NumberFormatException;
    
                    public void UnsignedLong(long) 
                    throws NumberFormatException;
    
                    public void UnsignedLong(String) 
                    throws NumberFormatException;
    
                    private void 
                    setValue(java.math.BigInteger);
    
                    public 
                    static boolean 
                    isValid(java.math.BigInteger);
    
                    public String 
                    toString();
    
                    public int 
                    hashCode();
    
                    public 
                    synchronized boolean 
                    equals(Object);
    
                    public int 
                    compareTo(Object);
    
                    public byte 
                    byteValue();
    
                    public short 
                    shortValue();
    
                    public int 
                    intValue();
    
                    public long 
                    longValue();
    
                    public double 
                    doubleValue();
    
                    public float 
                    floatValue();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/types/UnsignedShort.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class UnsignedShort 
                    extends UnsignedInt {
    
                    public void UnsignedShort();
    
                    public void UnsignedShort(long) 
                    throws NumberFormatException;
    
                    public void UnsignedShort(String) 
                    throws NumberFormatException;
    
                    public void 
                    setValue(long) 
                    throws NumberFormatException;
    
                    public 
                    static boolean 
                    isValid(long);
}

                

org/apache/axis/types/Year.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class Year 
                    implements java.io.Serializable {
    int 
                    year;
    String 
                    timezone;
    
                    public void Year(int) 
                    throws NumberFormatException;
    
                    public void Year(int, String) 
                    throws NumberFormatException;
    
                    public void Year(String) 
                    throws NumberFormatException;
    
                    public int 
                    getYear();
    
                    public void 
                    setYear(int);
    
                    public String 
                    getTimezone();
    
                    public void 
                    setTimezone(String);
    
                    public void 
                    setValue(int, String) 
                    throws NumberFormatException;
    
                    public void 
                    setValue(int) 
                    throws NumberFormatException;
    
                    public String 
                    toString();
    
                    public boolean 
                    equals(Object);
    
                    public int 
                    hashCode();
}

                

org/apache/axis/types/YearMonth.class

                    package org.apache.axis.types;

                    public 
                    synchronized 
                    class YearMonth 
                    implements java.io.Serializable {
    int 
                    year;
    int 
                    month;
    String 
                    timezone;
    
                    public void YearMonth(int, int) 
                    throws NumberFormatException;
    
                    public void YearMonth(int, int, String) 
                    throws NumberFormatException;
    
                    public void YearMonth(String) 
                    throws NumberFormatException;
    
                    public int 
                    getYear();
    
                    public void 
                    setYear(int);
    
                    public int 
                    getMonth();
    
                    public void 
                    setMonth(int);
    
                    public String 
                    getTimezone();
    
                    public void 
                    setTimezone(String);
    
                    public void 
                    setValue(int, int, String) 
                    throws NumberFormatException;
    
                    public void 
                    setValue(int, int) 
                    throws NumberFormatException;
    
                    public String 
                    toString();
    
                    public boolean 
                    equals(Object);
    
                    public int 
                    hashCode();
}

                

org/apache/axis/utils/Admin.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class Admin {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void Admin();
    
                    public org.w3c.dom.Element[] 
                    AdminService(org.w3c.dom.Element[]) 
                    throws Exception;
    
                    protected 
                    static org.w3c.dom.Document 
                    processWSDD(org.apache.axis.MessageContext, org.apache.axis.AxisEngine, org.w3c.dom.Element) 
                    throws Exception;
    
                    public org.w3c.dom.Document 
                    process(org.apache.axis.MessageContext, org.w3c.dom.Element) 
                    throws Exception;
    
                    private void 
                    verifyHostAllowed(org.apache.axis.MessageContext) 
                    throws org.apache.axis.AxisFault;
    
                    public 
                    static org.w3c.dom.Document 
                    listConfig(org.apache.axis.AxisEngine) 
                    throws org.apache.axis.AxisFault;
    
                    public 
                    static void 
                    main(String[]) 
                    throws Exception;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/utils/ArrayUtil$1.class

                    package org.apache.axis.utils;

                    synchronized 
                    class ArrayUtil$1 {
}

                

org/apache/axis/utils/ArrayUtil$ArrayInfo.class

                    package org.apache.axis.utils;

                    synchronized 
                    class ArrayUtil$ArrayInfo {
    
                    public Class 
                    componentType;
    
                    public Class 
                    arrayType;
    
                    public int 
                    dimension;
    
                    private void ArrayUtil$ArrayInfo();
}

                

org/apache/axis/utils/ArrayUtil$NonConvertable.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class ArrayUtil$NonConvertable {
    
                    public void ArrayUtil$NonConvertable();
}

                

org/apache/axis/utils/ArrayUtil.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class ArrayUtil {
    
                    public 
                    static 
                    final ArrayUtil$NonConvertable 
                    NON_CONVERTABLE;
    
                    public void ArrayUtil();
    
                    public 
                    static Object 
                    convertObjectToArray(Object, Class);
    
                    public 
                    static boolean 
                    isConvertable(Class, Class);
    
                    private 
                    static boolean 
                    internalIsConvertable(Class, ArrayUtil$ArrayInfo, Class);
    
                    private 
                    static BeanPropertyDescriptor 
                    getArrayComponentPD(Class);
    
                    public 
                    static int 
                    getArrayDimension(Class);
    
                    private 
                    static Object 
                    createNewInstance(Class) 
                    throws InstantiationException, IllegalAccessException;
    
                    public 
                    static Object 
                    convertArrayToObject(Object, Class);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/utils/Base64.class

                    package org.apache.axis.utils;

                    final 
                    synchronized 
                    class Base64 {
    
                    private 
                    static 
                    final int 
                    BASELENGTH = 255;
    
                    private 
                    static 
                    final int 
                    LOOKUPLENGTH = 64;
    
                    private 
                    static 
                    final int 
                    TWENTYFOURBITGROUP = 24;
    
                    private 
                    static 
                    final int 
                    EIGHTBIT = 8;
    
                    private 
                    static 
                    final int 
                    SIXTEENBIT = 16;
    
                    private 
                    static 
                    final int 
                    SIXBIT = 6;
    
                    private 
                    static 
                    final int 
                    FOURBYTE = 4;
    
                    private 
                    static 
                    final int 
                    SIGN = -128;
    
                    private 
                    static 
                    final byte 
                    PAD = 61;
    
                    private 
                    static byte[] 
                    base64Alphabet;
    
                    private 
                    static byte[] 
                    lookUpBase64Alphabet;
    void Base64();
    
                    static boolean 
                    isBase64(String);
    
                    static boolean 
                    isBase64(byte);
    
                    static boolean 
                    isArrayByteBase64(byte[]);
    
                    static byte[] 
                    encode(byte[]);
    
                    static byte[] 
                    decode(byte[]);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/utils/BeanPropertyDescriptor.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class BeanPropertyDescriptor {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    protected java.beans.PropertyDescriptor 
                    myPD;
    
                    protected 
                    static 
                    final Object[] 
                    noArgs;
    
                    public void BeanPropertyDescriptor(java.beans.PropertyDescriptor);
    
                    protected void BeanPropertyDescriptor();
    
                    public String 
                    getName();
    
                    public boolean 
                    isReadable();
    
                    public boolean 
                    isWriteable();
    
                    public boolean 
                    isIndexed();
    
                    public boolean 
                    isIndexedOrArray();
    
                    public boolean 
                    isArray();
    
                    public Object 
                    get(Object) 
                    throws reflect.InvocationTargetException, IllegalAccessException;
    
                    public void 
                    set(Object, Object) 
                    throws reflect.InvocationTargetException, IllegalAccessException;
    
                    public Object 
                    get(Object, int) 
                    throws reflect.InvocationTargetException, IllegalAccessException;
    
                    public void 
                    set(Object, int, Object) 
                    throws reflect.InvocationTargetException, IllegalAccessException;
    
                    protected void 
                    growArrayToSize(Object, Class, int) 
                    throws reflect.InvocationTargetException, IllegalAccessException;
    
                    public Class 
                    getType();
    
                    public Class 
                    getActualType();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/utils/BeanUtils$1.class

                    package org.apache.axis.utils;

                    synchronized 
                    class BeanUtils$1 
                    implements java.security.PrivilegedAction {
    void BeanUtils$1(Class);
    
                    public Object 
                    run();
}

                

org/apache/axis/utils/BeanUtils.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class BeanUtils {
    
                    public 
                    static 
                    final Object[] 
                    noArgs;
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void BeanUtils();
    
                    public 
                    static BeanPropertyDescriptor[] 
                    getPd(Class);
    
                    public 
                    static BeanPropertyDescriptor[] 
                    getPd(Class, org.apache.axis.description.TypeDesc);
    
                    private 
                    static java.beans.PropertyDescriptor[] 
                    getPropertyDescriptors(Class);
    
                    public 
                    static java.util.Vector 
                    getBeanAttributes(Class, org.apache.axis.description.TypeDesc);
    
                    public 
                    static BeanPropertyDescriptor[] 
                    processPropertyDescriptors(java.beans.PropertyDescriptor[], Class);
    
                    public 
                    static BeanPropertyDescriptor[] 
                    processPropertyDescriptors(java.beans.PropertyDescriptor[], Class, org.apache.axis.description.TypeDesc);
    
                    public 
                    static BeanPropertyDescriptor 
                    getAnyContentPD(Class);
    
                    public 
                    static BeanPropertyDescriptor 
                    getSpecificPD(java.beans.PropertyDescriptor[], String);
    
                    public 
                    static BeanPropertyDescriptor 
                    getSpecificPD(BeanPropertyDescriptor[], String);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/utils/ByteArray.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class ByteArray 
                    extends java.io.OutputStream {
    
                    protected 
                    static double 
                    DEFAULT_CACHE_INCREMENT;
    
                    protected 
                    static int 
                    DEFAULT_RESIDENT_SIZE;
    
                    protected 
                    static boolean 
                    DEFAULT_ENABLE_BACKING_STORE;
    
                    protected 
                    static int 
                    WORKING_BUFFER_SIZE;
    
                    protected ByteArrayOutputStream 
                    cache;
    
                    protected int 
                    max_size;
    
                    protected java.io.File 
                    bs_handle;
    
                    protected java.io.OutputStream 
                    bs_stream;
    
                    protected long 
                    count;
    
                    protected boolean 
                    enableBackingStore;
    
                    public boolean 
                    isEnableBackingStore();
    
                    public void 
                    setEnableBackingStore(boolean);
    
                    public 
                    static boolean 
                    isDEFAULT_ENABLE_BACKING_STORE();
    
                    public 
                    static void 
                    setDEFAULT_ENABLE_BACKING_STORE(boolean);
    
                    public 
                    static int 
                    getDEFAULT_RESIDENT_SIZE();
    
                    public 
                    static void 
                    setDEFAULT_RESIDENT_SIZE(int);
    
                    public 
                    static double 
                    getDEFAULT_CACHE_INCREMENT();
    
                    public 
                    static void 
                    setDEFAULT_CACHE_INCREMENT(double);
    
                    public void ByteArray();
    
                    public void ByteArray(int);
    
                    public void ByteArray(int, int);
    
                    public void 
                    write(byte[]) 
                    throws java.io.IOException;
    
                    public void 
                    write(byte[], int, int) 
                    throws java.io.IOException;
    
                    public void 
                    write(int) 
                    throws java.io.IOException;
    
                    public void 
                    close() 
                    throws java.io.IOException;
    
                    public long 
                    size();
    
                    public void 
                    flush() 
                    throws java.io.IOException;
    
                    protected void 
                    increaseCapacity(int) 
                    throws java.io.IOException;
    
                    public 
                    synchronized void 
                    discardBuffer();
    
                    protected java.io.InputStream 
                    makeInputStream() 
                    throws java.io.IOException, java.io.FileNotFoundException;
    
                    protected void 
                    finalize();
    
                    protected void 
                    switchToBackingStore() 
                    throws java.io.IOException;
    
                    public String 
                    getBackingStoreFileName() 
                    throws java.io.IOException;
    
                    protected void 
                    discardBackingStore();
    
                    protected java.io.InputStream 
                    createBackingStoreInputStream() 
                    throws java.io.FileNotFoundException;
    
                    public byte[] 
                    toByteArray() 
                    throws java.io.IOException;
    
                    public void 
                    writeTo(java.io.OutputStream) 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/utils/ByteArrayOutputStream.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class ByteArrayOutputStream 
                    extends java.io.OutputStream {
    
                    private java.util.List 
                    buffers;
    
                    private int 
                    currentBufferIndex;
    
                    private int 
                    filledBufferSum;
    
                    private byte[] 
                    currentBuffer;
    
                    private int 
                    count;
    
                    public void ByteArrayOutputStream();
    
                    public void ByteArrayOutputStream(int);
    
                    private byte[] 
                    getBuffer(int);
    
                    private void 
                    needNewBuffer(int);
    
                    public 
                    synchronized void 
                    write(byte[], int, int);
    
                    public 
                    synchronized void 
                    write(int);
    
                    public int 
                    size();
    
                    public void 
                    close() 
                    throws java.io.IOException;
    
                    public 
                    synchronized void 
                    reset();
    
                    public 
                    synchronized void 
                    writeTo(java.io.OutputStream) 
                    throws java.io.IOException;
    
                    public 
                    synchronized byte[] 
                    toByteArray();
    
                    public String 
                    toString();
    
                    public String 
                    toString(String) 
                    throws java.io.UnsupportedEncodingException;
}

                

org/apache/axis/utils/CLArgsParser.class

                    package org.apache.axis.utils;

                    public 
                    final 
                    synchronized 
                    class CLArgsParser {
    
                    private 
                    static 
                    final int 
                    STATE_NORMAL = 0;
    
                    private 
                    static 
                    final int 
                    STATE_REQUIRE_2ARGS = 1;
    
                    private 
                    static 
                    final int 
                    STATE_REQUIRE_ARG = 2;
    
                    private 
                    static 
                    final int 
                    STATE_OPTIONAL_ARG = 3;
    
                    private 
                    static 
                    final int 
                    STATE_NO_OPTIONS = 4;
    
                    private 
                    static 
                    final int 
                    STATE_OPTION_MODE = 5;
    
                    private 
                    static 
                    final int 
                    TOKEN_SEPARATOR = 0;
    
                    private 
                    static 
                    final int 
                    TOKEN_STRING = 1;
    
                    private 
                    static 
                    final char[] 
                    ARG2_SEPARATORS;
    
                    private 
                    static 
                    final char[] 
                    ARG_SEPARATORS;
    
                    private 
                    static 
                    final char[] 
                    NULL_SEPARATORS;
    
                    private 
                    final CLOptionDescriptor[] 
                    m_optionDescriptors;
    
                    private 
                    final java.util.Vector 
                    m_options;
    
                    private java.util.Hashtable 
                    m_optionIndex;
    
                    private 
                    final ParserControl 
                    m_control;
    
                    private String 
                    m_errorMessage;
    
                    private String[] 
                    m_unparsedArgs;
    
                    private char 
                    ch;
    
                    private String[] 
                    args;
    
                    private boolean 
                    isLong;
    
                    private int 
                    argIndex;
    
                    private int 
                    stringIndex;
    
                    private int 
                    stringLength;
    
                    private 
                    static 
                    final int 
                    INVALID = 2147483647;
    
                    private int 
                    m_lastChar;
    
                    private int 
                    m_lastOptionId;
    
                    private CLOption 
                    m_option;
    
                    private int 
                    m_state;
    
                    public 
                    final String[] 
                    getUnparsedArgs();
    
                    public 
                    final java.util.Vector 
                    getArguments();
    
                    public 
                    final CLOption 
                    getArgumentById(int);
    
                    public 
                    final CLOption 
                    getArgumentByName(String);
    
                    private 
                    final CLOptionDescriptor 
                    getDescriptorFor(int);
    
                    private 
                    final CLOptionDescriptor 
                    getDescriptorFor(String);
    
                    public 
                    final String 
                    getErrorString();
    
                    private 
                    final int 
                    getStateFor(CLOptionDescriptor);
    
                    public void CLArgsParser(String[], CLOptionDescriptor[], ParserControl);
    
                    private 
                    final void 
                    checkIncompatibilities(java.util.Vector) 
                    throws java.text.ParseException;
    
                    private 
                    final void 
                    checkIncompatible(java.util.Vector, int[], int) 
                    throws java.text.ParseException;
    
                    private 
                    final String 
                    describeDualOption(int);
    
                    public void CLArgsParser(String[], CLOptionDescriptor[]);
    
                    private 
                    final String[] 
                    subArray(String[], int, int);
    
                    private 
                    final void 
                    parse() 
                    throws java.text.ParseException;
    
                    private 
                    final String 
                    getOptionDescription(CLOptionDescriptor);
    
                    private 
                    final char 
                    peekAtChar();
    
                    private 
                    final char 
                    getChar();
    
                    private 
                    final char 
                    readChar();
    
                    private 
                    final Token 
                    nextToken(char[]);
    
                    private 
                    final boolean 
                    isSeparator(char, char[]);
    
                    private 
                    final void 
                    addOption(CLOption);
    
                    private 
                    final void 
                    parseOption(CLOptionDescriptor, String) 
                    throws java.text.ParseException;
    
                    private 
                    final void 
                    parseShortOption() 
                    throws java.text.ParseException;
    
                    private 
                    final void 
                    parseArguments() 
                    throws java.text.ParseException;
    
                    private 
                    final void 
                    parseNormal() 
                    throws java.text.ParseException;
    
                    private 
                    final void 
                    buildOptionIndex();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/utils/CLOption.class

                    package org.apache.axis.utils;

                    public 
                    final 
                    synchronized 
                    class CLOption {
    
                    public 
                    static 
                    final int 
                    TEXT_ARGUMENT = 0;
    
                    private 
                    final int 
                    m_id;
    
                    private String[] 
                    m_arguments;
    
                    public 
                    final String 
                    getArgument();
    
                    public 
                    final String 
                    getArgument(int);
    
                    public 
                    final int 
                    getId();
    
                    public void CLOption(int);
    
                    public void CLOption(String);
    
                    public 
                    final void 
                    addArgument(String);
    
                    public 
                    final int 
                    getArgumentCount();
    
                    public 
                    final String 
                    toString();
}

                

org/apache/axis/utils/CLOptionDescriptor.class

                    package org.apache.axis.utils;

                    public 
                    final 
                    synchronized 
                    class CLOptionDescriptor {
    
                    public 
                    static 
                    final int 
                    ARGUMENT_REQUIRED = 2;
    
                    public 
                    static 
                    final int 
                    ARGUMENT_OPTIONAL = 4;
    
                    public 
                    static 
                    final int 
                    ARGUMENT_DISALLOWED = 8;
    
                    public 
                    static 
                    final int 
                    ARGUMENTS_REQUIRED_2 = 16;
    
                    public 
                    static 
                    final int 
                    DUPLICATES_ALLOWED = 32;
    
                    private 
                    final int 
                    m_id;
    
                    private 
                    final int 
                    m_flags;
    
                    private 
                    final String 
                    m_name;
    
                    private 
                    final String 
                    m_description;
    
                    private 
                    final int[] 
                    m_incompatible;
    
                    public void CLOptionDescriptor(String, int, int, String);
    
                    public void CLOptionDescriptor(String, int, int, String, int[]);
    
                    protected 
                    final int[] 
                    getIncompatble();
    
                    protected 
                    final int[] 
                    getIncompatible();
    
                    public 
                    final String 
                    getDescription();
    
                    public 
                    final int 
                    getFlags();
    
                    public 
                    final int 
                    getId();
    
                    public 
                    final String 
                    getName();
    
                    public 
                    final String 
                    toString();
}

                

org/apache/axis/utils/CLUtil.class

                    package org.apache.axis.utils;

                    public 
                    final 
                    synchronized 
                    class CLUtil {
    
                    private 
                    static 
                    final int 
                    MAX_DESCRIPTION_COLUMN_LENGTH = 60;
    
                    public 
                    static 
                    final StringBuffer 
                    describeOptions(CLOptionDescriptor[]);
    
                    private void CLUtil();
}

                

org/apache/axis/utils/ClassUtils$1.class

                    package org.apache.axis.utils;

                    synchronized 
                    class ClassUtils$1 
                    implements java.security.PrivilegedAction {
    void ClassUtils$1(String, ClassLoader);
    
                    public Object 
                    run();
}

                

org/apache/axis/utils/ClassUtils$2.class

                    package org.apache.axis.utils;

                    synchronized 
                    class ClassUtils$2 
                    implements java.security.PrivilegedAction {
    void ClassUtils$2(String);
    
                    public Object 
                    run();
}

                

org/apache/axis/utils/ClassUtils.class

                    package org.apache.axis.utils;

                    public 
                    final 
                    synchronized 
                    class ClassUtils {
    
                    private 
                    static ClassLoader 
                    defaultClassLoader;
    
                    private 
                    static java.util.Hashtable 
                    classloaders;
    
                    public void ClassUtils();
    
                    public 
                    static void 
                    setDefaultClassLoader(ClassLoader);
    
                    public 
                    static ClassLoader 
                    getDefaultClassLoader();
    
                    public 
                    static void 
                    setClassLoader(String, ClassLoader);
    
                    public 
                    static ClassLoader 
                    getClassLoader(String);
    
                    public 
                    static void 
                    removeClassLoader(String);
    
                    public 
                    static Class 
                    forName(String) 
                    throws ClassNotFoundException;
    
                    public 
                    static Class 
                    forName(String, boolean, ClassLoader) 
                    throws ClassNotFoundException;
    
                    private 
                    static Class 
                    loadClass(String) 
                    throws ClassNotFoundException;
    
                    public 
                    static java.io.InputStream 
                    getResourceAsStream(Class, String, boolean);
    
                    public 
                    static java.io.InputStream 
                    getResourceAsStream(Class, String);
    
                    public 
                    static ClassLoader 
                    createClassLoader(String, ClassLoader) 
                    throws SecurityException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/utils/ClasspathUtils$1.class

                    package org.apache.axis.utils;

                    synchronized 
                    class ClasspathUtils$1 {
}

                

org/apache/axis/utils/ClasspathUtils$JavaArchiveFilter.class

                    package org.apache.axis.utils;

                    synchronized 
                    class ClasspathUtils$JavaArchiveFilter 
                    implements java.io.FileFilter {
    
                    private void ClasspathUtils$JavaArchiveFilter();
    
                    public boolean 
                    accept(java.io.File);
}

                

org/apache/axis/utils/ClasspathUtils.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class ClasspathUtils {
    
                    public void ClasspathUtils();
    
                    public 
                    static String 
                    expandDirs(String);
    
                    public 
                    static boolean 
                    isJar(java.io.InputStream);
    
                    public 
                    static String 
                    getDefaultClasspath(org.apache.axis.MessageContext);
    
                    private 
                    static void 
                    getClassPathFromDirectoryProperty(StringBuffer, String);
    
                    private 
                    static void 
                    getClassPathFromProperty(StringBuffer, String);
    
                    private 
                    static void 
                    fillClassPath(ClassLoader, StringBuffer);
}

                

org/apache/axis/utils/DOM2Writer.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class DOM2Writer {
    
                    public void DOM2Writer();
    
                    public 
                    static String 
                    nodeToString(org.w3c.dom.Node, boolean);
    
                    public 
                    static void 
                    serializeAsXML(org.w3c.dom.Node, java.io.Writer, boolean);
    
                    public 
                    static void 
                    serializeAsXML(org.w3c.dom.Node, java.io.Writer, boolean, boolean);
    
                    private 
                    static void 
                    print(org.w3c.dom.Node, NSStack, org.w3c.dom.Node, java.io.PrintWriter, boolean, int);
    
                    private 
                    static void 
                    printNamespaceDecl(org.w3c.dom.Node, NSStack, org.w3c.dom.Node, java.io.PrintWriter);
    
                    private 
                    static void 
                    printNamespaceDecl(org.w3c.dom.Element, org.w3c.dom.Node, NSStack, org.w3c.dom.Node, java.io.PrintWriter);
    
                    public 
                    static String 
                    normalize(String);
}

                

org/apache/axis/utils/DefaultAuthenticator.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class DefaultAuthenticator 
                    extends java.net.Authenticator {
    
                    private org.apache.axis.components.net.TransportClientProperties 
                    tcp;
    
                    private String 
                    user;
    
                    private String 
                    password;
    
                    public void DefaultAuthenticator(String, String);
    
                    protected java.net.PasswordAuthentication 
                    getPasswordAuthentication();
    
                    private org.apache.axis.components.net.TransportClientProperties 
                    getTransportClientProperties();
}

                

org/apache/axis/utils/DefaultEntityResolver.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class DefaultEntityResolver 
                    implements org.xml.sax.EntityResolver {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void DefaultEntityResolver();
    
                    public org.xml.sax.InputSource 
                    resolveEntity(String, String);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/utils/FieldPropertyDescriptor.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class FieldPropertyDescriptor 
                    extends BeanPropertyDescriptor {
    
                    private reflect.Field 
                    field;
    
                    public void FieldPropertyDescriptor(String, reflect.Field);
    
                    public String 
                    getName();
    
                    public boolean 
                    isReadable();
    
                    public boolean 
                    isWriteable();
    
                    public boolean 
                    isIndexed();
    
                    public Object 
                    get(Object) 
                    throws reflect.InvocationTargetException, IllegalAccessException;
    
                    public void 
                    set(Object, Object) 
                    throws reflect.InvocationTargetException, IllegalAccessException;
    
                    public Object 
                    get(Object, int) 
                    throws reflect.InvocationTargetException, IllegalAccessException;
    
                    public void 
                    set(Object, int, Object) 
                    throws reflect.InvocationTargetException, IllegalAccessException;
    
                    public Class 
                    getType();
    
                    public Class 
                    getActualType();
    
                    public reflect.Field 
                    getField();
}

                

org/apache/axis/utils/IDKey.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class IDKey {
    
                    private Object 
                    value;
    
                    private int 
                    id;
    
                    public void IDKey(Object);
    
                    public int 
                    hashCode();
    
                    public boolean 
                    equals(Object);
}

                

org/apache/axis/utils/IOUtils.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class IOUtils {
    
                    private void IOUtils();
    
                    public 
                    static int 
                    readFully(java.io.InputStream, byte[]) 
                    throws java.io.IOException;
    
                    public 
                    static int 
                    readFully(java.io.InputStream, byte[], int, int) 
                    throws java.io.IOException;
}

                

org/apache/axis/utils/IdentityHashMap.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class IdentityHashMap 
                    extends java.util.HashMap {
    
                    public void IdentityHashMap(int, float);
    
                    public void IdentityHashMap(int);
    
                    public void IdentityHashMap();
    
                    public void IdentityHashMap(java.util.Map);
    
                    public Object 
                    get(Object);
    
                    public Object 
                    put(Object, Object);
    
                    public Object 
                    add(Object);
    
                    public Object 
                    remove(Object);
    
                    public boolean 
                    containsKey(Object);
}

                

org/apache/axis/utils/JWSClassLoader.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class JWSClassLoader 
                    extends ClassLoader {
    
                    private String 
                    classFile;
    
                    private String 
                    name;
    
                    public void JWSClassLoader(String, ClassLoader, String) 
                    throws java.io.FileNotFoundException, java.io.IOException;
    
                    public java.io.InputStream 
                    getResourceAsStream(String);
}

                

org/apache/axis/utils/JavaUtils$ConvertCache.class

                    package org.apache.axis.utils;

                    public 
                    abstract 
                    interface JavaUtils$ConvertCache {
    
                    public 
                    abstract void 
                    setConvertedValue(Class, Object);
    
                    public 
                    abstract Object 
                    getConvertedValue(Class);
    
                    public 
                    abstract Class 
                    getDestClass();
}

                

org/apache/axis/utils/JavaUtils$HolderException.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class JavaUtils$HolderException 
                    extends Exception {
    
                    public void JavaUtils$HolderException(String);
}

                

org/apache/axis/utils/JavaUtils.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class JavaUtils {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public 
                    static 
                    final char 
                    NL = 10;
    
                    public 
                    static 
                    final char 
                    CR = 13;
    
                    public 
                    static 
                    final String 
                    LS;
    
                    static 
                    final String[] 
                    keywords;
    
                    static 
                    final java.text.Collator 
                    englishCollator;
    
                    static 
                    final char 
                    keywordPrefix = 95;
    
                    private 
                    static java.util.WeakHashMap 
                    enumMap;
    
                    private 
                    static boolean 
                    checkForAttachmentSupport;
    
                    private 
                    static boolean 
                    attachmentSupportEnabled;
    
                    private void JavaUtils();
    
                    public 
                    static Class 
                    getWrapperClass(Class);
    
                    public 
                    static String 
                    getWrapper(String);
    
                    public 
                    static Class 
                    getPrimitiveClass(Class);
    
                    public 
                    static Class 
                    getPrimitiveClassFromName(String);
    
                    public 
                    static boolean 
                    isBasic(Class);
    
                    public 
                    static Object 
                    convert(Object, Class);
    
                    public 
                    static boolean 
                    isConvertable(Object, Class);
    
                    public 
                    static boolean 
                    isConvertable(Object, Class, boolean);
    
                    public 
                    static java.awt.Image 
                    getImageFromStream(java.io.InputStream);
    
                    public 
                    static boolean 
                    isJavaId(String);
    
                    public 
                    static boolean 
                    isJavaKeyword(String);
    
                    public 
                    static String 
                    makeNonJavaKeyword(String);
    
                    public 
                    static String 
                    getLoadableClassName(String);
    
                    public 
                    static String 
                    getTextClassName(String);
    
                    public 
                    static String 
                    xmlNameToJava(String);
    
                    private 
                    static boolean 
                    isPunctuation(char);
    
                    public 
                    static 
                    final String 
                    replace(String, String, String);
    
                    public 
                    static Class 
                    getHolderValueType(Class);
    
                    public 
                    static Object 
                    getHolderValue(Object) 
                    throws JavaUtils$HolderException;
    
                    public 
                    static void 
                    setHolderValue(Object, Object) 
                    throws JavaUtils$HolderException;
    
                    public 
                    static boolean 
                    isEnumClass(Class);
    
                    private 
                    static boolean 
                    isEnumClassSub(Class);
    
                    public 
                    static String 
                    stackToString(Throwable);
    
                    public 
                    static 
                    final boolean 
                    isTrue(String);
    
                    public 
                    static 
                    final boolean 
                    isTrueExplicitly(String);
    
                    public 
                    static 
                    final boolean 
                    isTrueExplicitly(Object, boolean);
    
                    public 
                    static 
                    final boolean 
                    isTrueExplicitly(Object);
    
                    public 
                    static 
                    final boolean 
                    isTrue(Object, boolean);
    
                    public 
                    static 
                    final boolean 
                    isTrue(Object);
    
                    public 
                    static 
                    final boolean 
                    isFalse(String);
    
                    public 
                    static 
                    final boolean 
                    isFalseExplicitly(String);
    
                    public 
                    static 
                    final boolean 
                    isFalseExplicitly(Object, boolean);
    
                    public 
                    static 
                    final boolean 
                    isFalseExplicitly(Object);
    
                    public 
                    static 
                    final boolean 
                    isFalse(Object, boolean);
    
                    public 
                    static 
                    final boolean 
                    isFalse(Object);
    
                    public 
                    static String 
                    mimeToJava(String);
    
                    public 
                    static 
                    synchronized boolean 
                    isAttachmentSupported();
    
                    public 
                    static String 
                    getUniqueValue(java.util.Collection, String);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/utils/LockableHashtable.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class LockableHashtable 
                    extends java.util.Hashtable {
    java.util.Vector 
                    lockedEntries;
    
                    private java.util.Hashtable 
                    parent;
    
                    public void LockableHashtable();
    
                    public void LockableHashtable(int, float);
    
                    public void LockableHashtable(java.util.Map);
    
                    public void LockableHashtable(int);
    
                    public 
                    synchronized void 
                    setParent(java.util.Hashtable);
    
                    public 
                    synchronized java.util.Hashtable 
                    getParent();
    
                    public java.util.Set 
                    getAllKeys();
    
                    public 
                    synchronized Object 
                    get(Object);
    
                    public 
                    synchronized Object 
                    put(Object, Object, boolean);
    
                    public 
                    synchronized Object 
                    put(Object, Object);
    
                    public 
                    synchronized Object 
                    remove(Object);
    
                    public boolean 
                    isKeyLocked(Object);
}

                

org/apache/axis/utils/Mapping.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class Mapping 
                    implements java.io.Serializable {
    
                    private String 
                    namespaceURI;
    
                    private String 
                    prefix;
    
                    public void Mapping(String, String);
    
                    public String 
                    getNamespaceURI();
    
                    public void 
                    setNamespaceURI(String);
    
                    public String 
                    getPrefix();
    
                    public void 
                    setPrefix(String);
}

                

org/apache/axis/utils/Messages.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class Messages {
    
                    private 
                    static 
                    final Class 
                    thisClass;
    
                    private 
                    static 
                    final String 
                    projectName;
    
                    private 
                    static 
                    final String 
                    resourceName;
    
                    private 
                    static 
                    final java.util.Locale 
                    locale;
    
                    private 
                    static 
                    final String 
                    packageName;
    
                    private 
                    static 
                    final ClassLoader 
                    classLoader;
    
                    private 
                    static 
                    final java.util.ResourceBundle 
                    parent;
    
                    private 
                    static 
                    final org.apache.axis.i18n.MessageBundle 
                    messageBundle;
    
                    public void Messages();
    
                    public 
                    static String 
                    getMessage(String) 
                    throws java.util.MissingResourceException;
    
                    public 
                    static String 
                    getMessage(String, String) 
                    throws java.util.MissingResourceException;
    
                    public 
                    static String 
                    getMessage(String, String, String) 
                    throws java.util.MissingResourceException;
    
                    public 
                    static String 
                    getMessage(String, String, String, String) 
                    throws java.util.MissingResourceException;
    
                    public 
                    static String 
                    getMessage(String, String, String, String, String) 
                    throws java.util.MissingResourceException;
    
                    public 
                    static String 
                    getMessage(String, String, String, String, String, String) 
                    throws java.util.MissingResourceException;
    
                    public 
                    static String 
                    getMessage(String, String[]) 
                    throws java.util.MissingResourceException;
    
                    public 
                    static java.util.ResourceBundle 
                    getResourceBundle();
    
                    public 
                    static org.apache.axis.i18n.MessageBundle 
                    getMessageBundle();
    
                    private 
                    static 
                    final String 
                    getPackage(String);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/utils/NSStack.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class NSStack {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private Mapping[] 
                    stack;
    
                    private int 
                    top;
    
                    private int 
                    iterator;
    
                    private int 
                    currentDefaultNS;
    
                    private boolean 
                    optimizePrefixes;
    
                    private 
                    final boolean 
                    traceEnabled;
    
                    public void NSStack(boolean);
    
                    public void NSStack();
    
                    public void 
                    push();
    
                    public void 
                    pop();
    
                    public java.util.ArrayList 
                    cloneFrame();
    
                    private void 
                    clearFrame();
    
                    public Mapping 
                    topOfFrame();
    
                    public Mapping 
                    next();
    
                    public void 
                    add(String, String);
    
                    public String 
                    getPrefix(String, boolean);
    
                    public String 
                    getPrefix(String);
    
                    public String 
                    getNamespaceURI(String);
    
                    public void 
                    dump(String);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/utils/NetworkUtils.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class NetworkUtils {
    
                    public 
                    static 
                    final String 
                    LOCALHOST = 127.0.0.1;
    
                    public 
                    static 
                    final String 
                    LOCALHOST_IPV6 = 0:0:0:0:0:0:0:1;
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private void NetworkUtils();
    
                    public 
                    static String 
                    getLocalHostname();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/utils/Options.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class Options {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    String[] 
                    args;
    java.util.Vector 
                    usedArgs;
    java.net.URL 
                    defaultURL;
    
                    public void Options(String[]) 
                    throws java.net.MalformedURLException;
    
                    public void 
                    setDefaultURL(String) 
                    throws java.net.MalformedURLException;
    
                    public void 
                    setDefaultURL(java.net.URL);
    
                    public int 
                    isFlagSet(char);
    
                    public String 
                    isValueSet(char);
    
                    public String 
                    getRemainingFlags();
    
                    public String[] 
                    getRemainingArgs();
    
                    public String 
                    getURL() 
                    throws java.net.MalformedURLException;
    
                    public String 
                    getHost();
    
                    public int 
                    getPort();
    
                    public String 
                    getUser();
    
                    public String 
                    getPassword();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/utils/ParserControl.class

                    package org.apache.axis.utils;

                    public 
                    abstract 
                    interface ParserControl {
    
                    public 
                    abstract boolean 
                    isFinished(int);
}

                

org/apache/axis/utils/SOAPMonitor$1.class

                    package org.apache.axis.utils;

                    synchronized 
                    class SOAPMonitor$1 
                    implements Runnable {
    void SOAPMonitor$1(SOAPMonitor$BarThread);
    
                    public void 
                    run();
}

                

org/apache/axis/utils/SOAPMonitor$BarThread.class

                    package org.apache.axis.utils;

                    synchronized 
                    class SOAPMonitor$BarThread 
                    extends Thread {
    
                    private int 
                    wait;
    javax.swing.JProgressBar 
                    progressBar;
    
                    public void SOAPMonitor$BarThread(SOAPMonitor, javax.swing.JProgressBar);
    
                    public void 
                    run();
}

                

org/apache/axis/utils/SOAPMonitor$LoginDlg.class

                    package org.apache.axis.utils;

                    synchronized 
                    class SOAPMonitor$LoginDlg 
                    extends javax.swing.JDialog 
                    implements java.awt.event.ActionListener {
    
                    private javax.swing.JButton 
                    ok_button;
    
                    private javax.swing.JButton 
                    cancel_button;
    
                    private javax.swing.JTextField 
                    user;
    
                    private javax.swing.JPasswordField 
                    pass;
    
                    private javax.swing.JTextField 
                    url;
    
                    private boolean 
                    loginState;
    
                    public void SOAPMonitor$LoginDlg(SOAPMonitor);
    
                    public void 
                    actionPerformed(java.awt.event.ActionEvent);
    
                    public String 
                    getURL();
    
                    public boolean 
                    isLogin();
}

                

org/apache/axis/utils/SOAPMonitor$MyWindowAdapter.class

                    package org.apache.axis.utils;

                    synchronized 
                    class SOAPMonitor$MyWindowAdapter 
                    extends java.awt.event.WindowAdapter {
    void SOAPMonitor$MyWindowAdapter(SOAPMonitor);
    
                    public void 
                    windowClosing(java.awt.event.WindowEvent);
}

                

org/apache/axis/utils/SOAPMonitor$SOAPMonitorData.class

                    package org.apache.axis.utils;

                    synchronized 
                    class SOAPMonitor$SOAPMonitorData {
    
                    private Long 
                    id;
    
                    private String 
                    time;
    
                    private String 
                    target;
    
                    private String 
                    soap_request;
    
                    private String 
                    soap_response;
    
                    public void SOAPMonitor$SOAPMonitorData(SOAPMonitor, Long, String, String);
    
                    public Long 
                    getId();
    
                    public String 
                    getTime();
    
                    public String 
                    getTargetService();
    
                    public String 
                    getStatus();
    
                    public String 
                    getSOAPRequest();
    
                    public void 
                    setSOAPResponse(String);
    
                    public String 
                    getSOAPResponse();
}

                

org/apache/axis/utils/SOAPMonitor$SOAPMonitorFilter.class

                    package org.apache.axis.utils;

                    synchronized 
                    class SOAPMonitor$SOAPMonitorFilter 
                    implements java.awt.event.ActionListener {
    
                    private javax.swing.JDialog 
                    dialog;
    
                    private javax.swing.JPanel 
                    panel;
    
                    private javax.swing.JPanel 
                    buttons;
    
                    private javax.swing.JButton 
                    ok_button;
    
                    private javax.swing.JButton 
                    cancel_button;
    
                    private SOAPMonitor$ServiceFilterPanel 
                    include_panel;
    
                    private SOAPMonitor$ServiceFilterPanel 
                    exclude_panel;
    
                    private javax.swing.JPanel 
                    status_panel;
    
                    private javax.swing.JCheckBox 
                    status_box;
    
                    private javax.swing.border.EmptyBorder 
                    empty_border;
    
                    private javax.swing.border.EmptyBorder 
                    indent_border;
    
                    private javax.swing.JPanel 
                    status_options;
    
                    private javax.swing.ButtonGroup 
                    status_group;
    
                    private javax.swing.JRadioButton 
                    status_active;
    
                    private javax.swing.JRadioButton 
                    status_complete;
    
                    private java.util.Vector 
                    filter_include_list;
    
                    private java.util.Vector 
                    filter_exclude_list;
    
                    private boolean 
                    filter_active;
    
                    private boolean 
                    filter_complete;
    
                    private boolean 
                    ok_pressed;
    
                    public void SOAPMonitor$SOAPMonitorFilter(SOAPMonitor);
    
                    public java.util.Vector 
                    getFilterIncludeList();
    
                    public java.util.Vector 
                    getFilterExcludeList();
    
                    public boolean 
                    getFilterActive();
    
                    public boolean 
                    getFilterComplete();
    
                    public void 
                    showDialog();
    
                    public void 
                    actionPerformed(java.awt.event.ActionEvent);
    
                    public boolean 
                    okPressed();
}

                

org/apache/axis/utils/SOAPMonitor$SOAPMonitorPage.class

                    package org.apache.axis.utils;

                    synchronized 
                    class SOAPMonitor$SOAPMonitorPage 
                    extends javax.swing.JPanel 
                    implements Runnable, javax.swing.event.ListSelectionListener, java.awt.event.ActionListener {
    
                    private 
                    final String 
                    STATUS_ACTIVE;
    
                    private 
                    final String 
                    STATUS_STOPPED;
    
                    private 
                    final String 
                    STATUS_CLOSED;
    
                    private 
                    final String 
                    STATUS_NOCONNECT;
    
                    private String 
                    host;
    
                    private java.net.Socket 
                    socket;
    
                    private java.io.ObjectInputStream 
                    in;
    
                    private java.io.ObjectOutputStream 
                    out;
    
                    private SOAPMonitor$SOAPMonitorTableModel 
                    model;
    
                    private javax.swing.JTable 
                    table;
    
                    private javax.swing.JScrollPane 
                    scroll;
    
                    private javax.swing.JPanel 
                    list_panel;
    
                    private javax.swing.JPanel 
                    list_buttons;
    
                    private javax.swing.JButton 
                    remove_button;
    
                    private javax.swing.JButton 
                    remove_all_button;
    
                    private javax.swing.JButton 
                    filter_button;
    
                    private javax.swing.JPanel 
                    details_panel;
    
                    private javax.swing.JPanel 
                    details_header;
    
                    private javax.swing.JSplitPane 
                    details_soap;
    
                    private javax.swing.JPanel 
                    details_buttons;
    
                    private javax.swing.JLabel 
                    details_time;
    
                    private javax.swing.JLabel 
                    details_target;
    
                    private javax.swing.JLabel 
                    details_status;
    
                    private javax.swing.JLabel 
                    details_time_value;
    
                    private javax.swing.JLabel 
                    details_target_value;
    
                    private javax.swing.JLabel 
                    details_status_value;
    
                    private javax.swing.border.EmptyBorder 
                    empty_border;
    
                    private javax.swing.border.EtchedBorder 
                    etched_border;
    
                    private javax.swing.JPanel 
                    request_panel;
    
                    private javax.swing.JPanel 
                    response_panel;
    
                    private javax.swing.JLabel 
                    request_label;
    
                    private javax.swing.JLabel 
                    response_label;
    
                    private SOAPMonitor$SOAPMonitorTextArea 
                    request_text;
    
                    private SOAPMonitor$SOAPMonitorTextArea 
                    response_text;
    
                    private javax.swing.JScrollPane 
                    request_scroll;
    
                    private javax.swing.JScrollPane 
                    response_scroll;
    
                    private javax.swing.JButton 
                    layout_button;
    
                    private javax.swing.JSplitPane 
                    split;
    
                    private javax.swing.JPanel 
                    status_area;
    
                    private javax.swing.JPanel 
                    status_buttons;
    
                    private javax.swing.JButton 
                    start_button;
    
                    private javax.swing.JButton 
                    stop_button;
    
                    private javax.swing.JLabel 
                    status_text;
    
                    private javax.swing.JPanel 
                    status_text_panel;
    
                    private SOAPMonitor$SOAPMonitorFilter 
                    filter;
    
                    private java.awt.GridBagLayout 
                    details_header_layout;
    
                    private java.awt.GridBagConstraints 
                    details_header_constraints;
    
                    private javax.swing.JCheckBox 
                    reflow_xml;
    
                    public void SOAPMonitor$SOAPMonitorPage(SOAPMonitor, String);
    
                    public String 
                    getHost();
    
                    public void 
                    setStatus(String);
    
                    public void 
                    setErrorStatus(String);
    
                    public void 
                    start();
    
                    public void 
                    stop();
    
                    public void 
                    run();
    
                    public void 
                    valueChanged(javax.swing.event.ListSelectionEvent);
    
                    public void 
                    actionPerformed(java.awt.event.ActionEvent);
}

                

org/apache/axis/utils/SOAPMonitor$SOAPMonitorTableModel.class

                    package org.apache.axis.utils;

                    synchronized 
                    class SOAPMonitor$SOAPMonitorTableModel 
                    extends javax.swing.table.AbstractTableModel {
    
                    private 
                    final String[] 
                    column_names;
    
                    private java.util.Vector 
                    data;
    
                    private java.util.Vector 
                    filter_include;
    
                    private java.util.Vector 
                    filter_exclude;
    
                    private boolean 
                    filter_active;
    
                    private boolean 
                    filter_complete;
    
                    private java.util.Vector 
                    filter_data;
    
                    public void SOAPMonitor$SOAPMonitorTableModel(SOAPMonitor);
    
                    public int 
                    getColumnCount();
    
                    public int 
                    getRowCount();
    
                    public String 
                    getColumnName(int);
    
                    public Object 
                    getValueAt(int, int);
    
                    public boolean 
                    filterMatch(SOAPMonitor$SOAPMonitorData);
    
                    public void 
                    addData(SOAPMonitor$SOAPMonitorData);
    
                    public SOAPMonitor$SOAPMonitorData 
                    findData(Long);
    
                    public int 
                    findRow(SOAPMonitor$SOAPMonitorData);
    
                    public void 
                    clearAll();
    
                    public void 
                    removeRow(int);
    
                    public void 
                    setFilter(SOAPMonitor$SOAPMonitorFilter);
    
                    public void 
                    applyFilter();
    
                    public SOAPMonitor$SOAPMonitorData 
                    getData(int);
    
                    public void 
                    updateData(SOAPMonitor$SOAPMonitorData);
}

                

org/apache/axis/utils/SOAPMonitor$SOAPMonitorTextArea.class

                    package org.apache.axis.utils;

                    synchronized 
                    class SOAPMonitor$SOAPMonitorTextArea 
                    extends javax.swing.JTextArea {
    
                    private boolean 
                    format;
    
                    private String 
                    original;
    
                    private String 
                    formatted;
    
                    public void SOAPMonitor$SOAPMonitorTextArea(SOAPMonitor);
    
                    public void 
                    setText(String);
    
                    public void 
                    setReflowXML(boolean);
    
                    public void 
                    doFormat();
}

                

org/apache/axis/utils/SOAPMonitor$ServiceFilterPanel.class

                    package org.apache.axis.utils;

                    synchronized 
                    class SOAPMonitor$ServiceFilterPanel 
                    extends javax.swing.JPanel 
                    implements java.awt.event.ActionListener, javax.swing.event.ListSelectionListener, javax.swing.event.DocumentListener {
    
                    private javax.swing.JCheckBox 
                    service_box;
    
                    private java.util.Vector 
                    filter_list;
    
                    private java.util.Vector 
                    service_data;
    
                    private javax.swing.JList 
                    service_list;
    
                    private javax.swing.JScrollPane 
                    service_scroll;
    
                    private javax.swing.JButton 
                    remove_service_button;
    
                    private javax.swing.JPanel 
                    remove_service_panel;
    
                    private javax.swing.border.EmptyBorder 
                    indent_border;
    
                    private javax.swing.border.EmptyBorder 
                    empty_border;
    
                    private javax.swing.JPanel 
                    service_area;
    
                    private javax.swing.JPanel 
                    add_service_area;
    
                    private javax.swing.JTextField 
                    add_service_field;
    
                    private javax.swing.JButton 
                    add_service_button;
    
                    private javax.swing.JPanel 
                    add_service_panel;
    
                    public void SOAPMonitor$ServiceFilterPanel(SOAPMonitor, String, java.util.Vector);
    
                    public java.util.Vector 
                    getServiceList();
    
                    public void 
                    actionPerformed(java.awt.event.ActionEvent);
    
                    public void 
                    changedUpdate(javax.swing.event.DocumentEvent);
    
                    public void 
                    insertUpdate(javax.swing.event.DocumentEvent);
    
                    public void 
                    removeUpdate(javax.swing.event.DocumentEvent);
    
                    public void 
                    valueChanged(javax.swing.event.ListSelectionEvent);
}

                

org/apache/axis/utils/SOAPMonitor.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class SOAPMonitor 
                    extends javax.swing.JFrame 
                    implements java.awt.event.ActionListener, javax.swing.event.ChangeListener {
    
                    private javax.swing.JPanel 
                    main_panel;
    
                    private javax.swing.JTabbedPane 
                    tabbed_pane;
    
                    private javax.swing.JTabbedPane 
                    top_pane;
    
                    private int 
                    port;
    
                    private String 
                    axisHost;
    
                    private int 
                    axisPort;
    
                    private String 
                    axisURL;
    
                    private java.util.Vector 
                    pages;
    
                    private 
                    final String 
                    titleStr;
    
                    private javax.swing.JPanel 
                    set_panel;
    
                    private javax.swing.JLabel 
                    titleLabel;
    
                    private javax.swing.JButton 
                    add_btn;
    
                    private javax.swing.JButton 
                    del_btn;
    
                    private javax.swing.JButton 
                    save_btn;
    
                    private javax.swing.JButton 
                    login_btn;
    
                    private javax.swing.DefaultListModel 
                    model1;
    
                    private javax.swing.DefaultListModel 
                    model2;
    
                    private javax.swing.JList 
                    list1;
    
                    private javax.swing.JList 
                    list2;
    
                    private java.util.HashMap 
                    serviceMap;
    
                    private org.w3c.dom.Document 
                    originalDoc;
    
                    private 
                    static String 
                    axisUser;
    
                    private 
                    static String 
                    axisPass;
    
                    private org.apache.axis.client.AdminClient 
                    adminClient;
    
                    public 
                    static void 
                    main(String[]) 
                    throws Exception;
    
                    public void SOAPMonitor();
    
                    private boolean 
                    doLogin();
    
                    private org.w3c.dom.Document 
                    getServerWSDD();
    
                    private boolean 
                    doDeploy(org.w3c.dom.Document);
    
                    private org.w3c.dom.Document 
                    getNewDocumentAsNode(org.w3c.dom.Node);
    
                    private org.w3c.dom.Node 
                    addMonitor(org.w3c.dom.Node);
    
                    private org.w3c.dom.Node 
                    delMonitor(org.w3c.dom.Node);
    
                    private boolean 
                    isMonitored(org.w3c.dom.Node);
    
                    private org.w3c.dom.Node 
                    addAuthenticate(org.w3c.dom.Node);
    
                    private void 
                    addPage(SOAPMonitor$SOAPMonitorPage);
    
                    private void 
                    delPage();
    
                    public void 
                    start();
    
                    public void 
                    stop();
    
                    public void 
                    actionPerformed(java.awt.event.ActionEvent);
    
                    public void 
                    stateChanged(javax.swing.event.ChangeEvent);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/utils/SessionUtils.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class SessionUtils {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    protected 
                    static 
                    final int 
                    SESSION_ID_BYTES = 16;
    
                    protected 
                    static java.util.Random 
                    random;
    
                    protected 
                    static String 
                    randomClass;
    
                    private 
                    static String 
                    thisHost;
    
                    public void SessionUtils();
    
                    public 
                    static 
                    synchronized String 
                    generateSessionId();
    
                    public 
                    static 
                    synchronized Long 
                    generateSession();
    
                    private 
                    static 
                    synchronized java.util.Random 
                    getRandom();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/utils/StringUtils.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class StringUtils {
    
                    public 
                    static 
                    final String[] 
                    EMPTY_STRING_ARRAY;
    
                    private void StringUtils();
    
                    public 
                    static boolean 
                    startsWithIgnoreWhitespaces(String, String);
    
                    public 
                    static String[] 
                    split(String, char);
    
                    public 
                    static boolean 
                    isEmpty(String);
    
                    public 
                    static String 
                    strip(String);
    
                    public 
                    static String 
                    strip(String, String);
    
                    public 
                    static String 
                    stripStart(String, String);
    
                    private 
                    static int 
                    getStripStart(String, String);
    
                    public 
                    static String 
                    stripEnd(String, String);
    
                    private 
                    static int 
                    getStripEnd(String, String);
    
                    public 
                    static String 
                    escapeNumericChar(String);
    
                    public 
                    static void 
                    escapeNumericChar(java.io.Writer, String) 
                    throws java.io.IOException;
    
                    public 
                    static String 
                    unescapeNumericChar(String);
    
                    public 
                    static void 
                    unescapeNumericChar(java.io.Writer, String) 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/utils/TeeOutputStream.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class TeeOutputStream 
                    extends java.io.OutputStream {
    
                    private java.io.OutputStream 
                    left;
    
                    private java.io.OutputStream 
                    right;
    
                    public void TeeOutputStream(java.io.OutputStream, java.io.OutputStream);
    
                    public void 
                    close() 
                    throws java.io.IOException;
    
                    public void 
                    flush() 
                    throws java.io.IOException;
    
                    public void 
                    write(byte[]) 
                    throws java.io.IOException;
    
                    public void 
                    write(byte[], int, int) 
                    throws java.io.IOException;
    
                    public void 
                    write(int) 
                    throws java.io.IOException;
}

                

org/apache/axis/utils/Token.class

                    package org.apache.axis.utils;

                    synchronized 
                    class Token {
    
                    public 
                    static 
                    final int 
                    TOKEN_SEPARATOR = 0;
    
                    public 
                    static 
                    final int 
                    TOKEN_STRING = 1;
    
                    private 
                    final int 
                    m_type;
    
                    private 
                    final String 
                    m_value;
    
                    public void Token(int, String);
    
                    public 
                    final String 
                    getValue();
    
                    public 
                    final int 
                    getType();
    
                    public 
                    final String 
                    toString();
}

                

org/apache/axis/utils/URLHashSet.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class URLHashSet 
                    extends java.util.HashSet {
    
                    public void URLHashSet();
    
                    public boolean 
                    add(java.net.URL);
    
                    public boolean 
                    remove(java.net.URL);
    
                    public boolean 
                    contains(java.net.URL);
    
                    public 
                    static java.net.URL 
                    normalize(java.net.URL);
    
                    private 
                    static String 
                    cleanup(String);
    
                    private 
                    static String[] 
                    tokenize(String, String, boolean);
}

                

org/apache/axis/utils/WSDLUtils.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class WSDLUtils {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void WSDLUtils();
    
                    public 
                    static String 
                    getAddressFromPort(javax.wsdl.Port);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/utils/XMLChar.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class XMLChar {
    
                    private 
                    static 
                    final byte[] 
                    CHARS;
    
                    public 
                    static 
                    final int 
                    MASK_VALID = 1;
    
                    public 
                    static 
                    final int 
                    MASK_SPACE = 2;
    
                    public 
                    static 
                    final int 
                    MASK_NAME_START = 4;
    
                    public 
                    static 
                    final int 
                    MASK_NAME = 8;
    
                    public 
                    static 
                    final int 
                    MASK_PUBID = 16;
    
                    public 
                    static 
                    final int 
                    MASK_CONTENT = 32;
    
                    public 
                    static 
                    final int 
                    MASK_NCNAME_START = 64;
    
                    public 
                    static 
                    final int 
                    MASK_NCNAME = 128;
    
                    public void XMLChar();
    
                    public 
                    static boolean 
                    isSupplemental(int);
    
                    public 
                    static int 
                    supplemental(char, char);
    
                    public 
                    static char 
                    highSurrogate(int);
    
                    public 
                    static char 
                    lowSurrogate(int);
    
                    public 
                    static boolean 
                    isHighSurrogate(int);
    
                    public 
                    static boolean 
                    isLowSurrogate(int);
    
                    public 
                    static boolean 
                    isValid(int);
    
                    public 
                    static boolean 
                    isInvalid(int);
    
                    public 
                    static boolean 
                    isContent(int);
    
                    public 
                    static boolean 
                    isMarkup(int);
    
                    public 
                    static boolean 
                    isSpace(int);
    
                    public 
                    static boolean 
                    isXML11Space(int);
    
                    public 
                    static boolean 
                    isNameStart(int);
    
                    public 
                    static boolean 
                    isName(int);
    
                    public 
                    static boolean 
                    isNCNameStart(int);
    
                    public 
                    static boolean 
                    isNCName(int);
    
                    public 
                    static boolean 
                    isPubid(int);
    
                    public 
                    static boolean 
                    isValidName(String);
    
                    public 
                    static boolean 
                    isValidNCName(String);
    
                    public 
                    static boolean 
                    isValidNmtoken(String);
    
                    public 
                    static boolean 
                    isValidIANAEncoding(String);
    
                    public 
                    static boolean 
                    isValidJavaEncoding(String);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/utils/XMLUtils$1.class

                    package org.apache.axis.utils;

                    synchronized 
                    class XMLUtils$1 {
}

                

org/apache/axis/utils/XMLUtils$ParserErrorHandler.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class XMLUtils$ParserErrorHandler 
                    implements org.xml.sax.ErrorHandler {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void XMLUtils$ParserErrorHandler();
    
                    private String 
                    getParseExceptionInfo(org.xml.sax.SAXParseException);
    
                    public void 
                    warning(org.xml.sax.SAXParseException) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    error(org.xml.sax.SAXParseException) 
                    throws org.xml.sax.SAXException;
    
                    public void 
                    fatalError(org.xml.sax.SAXParseException) 
                    throws org.xml.sax.SAXException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/utils/XMLUtils$ThreadLocalDocumentBuilder.class

                    package org.apache.axis.utils;

                    synchronized 
                    class XMLUtils$ThreadLocalDocumentBuilder 
                    extends ThreadLocal {
    
                    private void XMLUtils$ThreadLocalDocumentBuilder();
    
                    protected Object 
                    initialValue();
}

                

org/apache/axis/utils/XMLUtils.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class XMLUtils {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public 
                    static 
                    final String 
                    httpAuthCharEncoding = ISO-8859-1;
    
                    private 
                    static 
                    final String 
                    saxParserFactoryProperty = javax.xml.parsers.SAXParserFactory;
    
                    private 
                    static javax.xml.parsers.DocumentBuilderFactory 
                    dbf;
    
                    private 
                    static javax.xml.parsers.SAXParserFactory 
                    saxFactory;
    
                    private 
                    static java.util.Stack 
                    saxParsers;
    
                    private 
                    static org.xml.sax.helpers.DefaultHandler 
                    doNothingContentHandler;
    
                    private 
                    static String 
                    EMPTY;
    
                    private 
                    static java.io.ByteArrayInputStream 
                    bais;
    
                    private 
                    static boolean 
                    tryReset;
    
                    protected 
                    static boolean 
                    enableParserReuse;
    
                    private 
                    static XMLUtils$ThreadLocalDocumentBuilder 
                    documentBuilder;
    
                    public void XMLUtils();
    
                    public 
                    static String 
                    xmlEncodeString(String);
    
                    public 
                    static org.apache.axis.components.encoding.XMLEncoder 
                    getXMLEncoder(org.apache.axis.MessageContext);
    
                    public 
                    static org.apache.axis.components.encoding.XMLEncoder 
                    getXMLEncoder(String);
    
                    public 
                    static String 
                    getEncoding(org.apache.axis.MessageContext);
    
                    public 
                    static String 
                    getEncoding();
    
                    public 
                    static void 
                    initSAXFactory(String, boolean, boolean);
    
                    private 
                    static javax.xml.parsers.DocumentBuilderFactory 
                    getDOMFactory();
    
                    public 
                    static javax.xml.parsers.DocumentBuilder 
                    getDocumentBuilder() 
                    throws javax.xml.parsers.ParserConfigurationException;
    
                    public 
                    static void 
                    releaseDocumentBuilder(javax.xml.parsers.DocumentBuilder);
    
                    public 
                    static 
                    synchronized javax.xml.parsers.SAXParser 
                    getSAXParser();
    
                    public 
                    static void 
                    releaseSAXParser(javax.xml.parsers.SAXParser);
    
                    public 
                    static org.w3c.dom.Document 
                    newDocument() 
                    throws javax.xml.parsers.ParserConfigurationException;
    
                    public 
                    static org.w3c.dom.Document 
                    newDocument(org.xml.sax.InputSource) 
                    throws javax.xml.parsers.ParserConfigurationException, org.xml.sax.SAXException, java.io.IOException;
    
                    public 
                    static org.w3c.dom.Document 
                    newDocument(java.io.InputStream) 
                    throws javax.xml.parsers.ParserConfigurationException, org.xml.sax.SAXException, java.io.IOException;
    
                    public 
                    static org.w3c.dom.Document 
                    newDocument(String) 
                    throws javax.xml.parsers.ParserConfigurationException, org.xml.sax.SAXException, java.io.IOException;
    
                    public 
                    static org.w3c.dom.Document 
                    newDocument(String, String, String) 
                    throws javax.xml.parsers.ParserConfigurationException, org.xml.sax.SAXException, java.io.IOException;
    
                    private 
                    static String 
                    privateElementToString(org.w3c.dom.Element, boolean);
    
                    public 
                    static String 
                    ElementToString(org.w3c.dom.Element);
    
                    public 
                    static String 
                    DocumentToString(org.w3c.dom.Document);
    
                    public 
                    static String 
                    PrettyDocumentToString(org.w3c.dom.Document);
    
                    public 
                    static void 
                    privateElementToWriter(org.w3c.dom.Element, java.io.Writer, boolean, boolean);
    
                    public 
                    static void 
                    ElementToStream(org.w3c.dom.Element, java.io.OutputStream);
    
                    public 
                    static void 
                    PrettyElementToStream(org.w3c.dom.Element, java.io.OutputStream);
    
                    public 
                    static void 
                    ElementToWriter(org.w3c.dom.Element, java.io.Writer);
    
                    public 
                    static void 
                    PrettyElementToWriter(org.w3c.dom.Element, java.io.Writer);
    
                    public 
                    static void 
                    DocumentToStream(org.w3c.dom.Document, java.io.OutputStream);
    
                    public 
                    static void 
                    PrettyDocumentToStream(org.w3c.dom.Document, java.io.OutputStream);
    
                    private 
                    static java.io.Writer 
                    getWriter(java.io.OutputStream);
    
                    public 
                    static void 
                    DocumentToWriter(org.w3c.dom.Document, java.io.Writer);
    
                    public 
                    static void 
                    PrettyDocumentToWriter(org.w3c.dom.Document, java.io.Writer);
    
                    public 
                    static org.w3c.dom.Element 
                    StringToElement(String, String, String);
    
                    public 
                    static String 
                    getInnerXMLString(org.w3c.dom.Element);
    
                    public 
                    static String 
                    getPrefix(String, org.w3c.dom.Node);
    
                    public 
                    static String 
                    getNamespace(String, org.w3c.dom.Node, org.w3c.dom.Node);
    
                    public 
                    static String 
                    getNamespace(String, org.w3c.dom.Node);
    
                    public 
                    static javax.xml.namespace.QName 
                    getQNameFromString(String, org.w3c.dom.Node);
    
                    public 
                    static javax.xml.namespace.QName 
                    getFullQNameFromString(String, org.w3c.dom.Node);
    
                    private 
                    static javax.xml.namespace.QName 
                    getQNameFromString(String, org.w3c.dom.Node, boolean);
    
                    public 
                    static String 
                    getStringForQName(javax.xml.namespace.QName, org.w3c.dom.Element);
    
                    public 
                    static String 
                    getChildCharacterData(org.w3c.dom.Element);
    
                    public 
                    static org.xml.sax.InputSource 
                    getInputSourceFromURI(String);
    
                    public 
                    static org.xml.sax.InputSource 
                    sourceToInputSource(javax.xml.transform.Source);
    
                    private 
                    static org.xml.sax.InputSource 
                    getInputSourceFromURI(String, String, String) 
                    throws java.io.IOException, java.net.ProtocolException, java.io.UnsupportedEncodingException;
    
                    public 
                    static 
                    final String 
                    base64encode(byte[]);
    
                    public 
                    static org.xml.sax.InputSource 
                    getEmptyInputSource();
    
                    public 
                    static org.w3c.dom.Node 
                    findNode(org.w3c.dom.Node, javax.xml.namespace.QName);
    
                    public 
                    static void 
                    normalize(org.w3c.dom.Node);
    
                    public 
                    static String 
                    trim(String);
    
                    public 
                    static org.w3c.dom.Element[] 
                    asElementArray(java.util.List);
    
                    public 
                    static String 
                    getEncoding(org.apache.axis.Message, org.apache.axis.MessageContext);
    
                    public 
                    static String 
                    getEncoding(org.apache.axis.Message, org.apache.axis.MessageContext, org.apache.axis.components.encoding.XMLEncoder);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/utils/bytecode/ChainedParamReader.class

                    package org.apache.axis.utils.bytecode;

                    public 
                    synchronized 
                    class ChainedParamReader {
    
                    private java.util.List 
                    chain;
    
                    private java.util.List 
                    clsChain;
    
                    private java.util.Map 
                    methodToParamMap;
    
                    public void ChainedParamReader(Class) 
                    throws java.io.IOException;
    
                    public String[] 
                    getParameterNames(reflect.Constructor);
    
                    public String[] 
                    getParameterNames(reflect.Method);
}

                

org/apache/axis/utils/bytecode/ClassReader$NameAndType.class

                    package org.apache.axis.utils.bytecode;

                    synchronized 
                    class ClassReader$NameAndType {
    String 
                    name;
    String 
                    type;
    
                    public void ClassReader$NameAndType(String, String);
}

                

org/apache/axis/utils/bytecode/ClassReader.class

                    package org.apache.axis.utils.bytecode;

                    public 
                    synchronized 
                    class ClassReader 
                    extends java.io.ByteArrayInputStream {
    
                    private 
                    static 
                    final int 
                    CONSTANT_Class = 7;
    
                    private 
                    static 
                    final int 
                    CONSTANT_Fieldref = 9;
    
                    private 
                    static 
                    final int 
                    CONSTANT_Methodref = 10;
    
                    private 
                    static 
                    final int 
                    CONSTANT_InterfaceMethodref = 11;
    
                    private 
                    static 
                    final int 
                    CONSTANT_String = 8;
    
                    private 
                    static 
                    final int 
                    CONSTANT_Integer = 3;
    
                    private 
                    static 
                    final int 
                    CONSTANT_Float = 4;
    
                    private 
                    static 
                    final int 
                    CONSTANT_Long = 5;
    
                    private 
                    static 
                    final int 
                    CONSTANT_Double = 6;
    
                    private 
                    static 
                    final int 
                    CONSTANT_NameAndType = 12;
    
                    private 
                    static 
                    final int 
                    CONSTANT_Utf8 = 1;
    
                    private int[] 
                    cpoolIndex;
    
                    private Object[] 
                    cpool;
    
                    private java.util.Map 
                    attrMethods;
    
                    protected 
                    static byte[] 
                    getBytes(Class) 
                    throws java.io.IOException;
    
                    static String 
                    classDescriptorToName(String);
    
                    protected 
                    static java.util.Map 
                    findAttributeReaders(Class);
    
                    protected 
                    static String 
                    getSignature(reflect.Member, Class[]);
    
                    private 
                    static void 
                    addDescriptor(StringBuffer, Class);
    
                    protected 
                    final int 
                    readShort();
    
                    protected 
                    final int 
                    readInt();
    
                    protected void 
                    skipFully(int) 
                    throws java.io.IOException;
    
                    protected 
                    final reflect.Member 
                    resolveMethod(int) 
                    throws java.io.IOException, ClassNotFoundException, NoSuchMethodException;
    
                    protected 
                    final reflect.Field 
                    resolveField(int) 
                    throws java.io.IOException, ClassNotFoundException, NoSuchFieldException;
    
                    protected 
                    final ClassReader$NameAndType 
                    resolveNameAndType(int) 
                    throws java.io.IOException;
    
                    protected 
                    final Class 
                    resolveClass(int) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    protected 
                    final String 
                    resolveUtf8(int) 
                    throws java.io.IOException;
    
                    protected 
                    final void 
                    readCpool() 
                    throws java.io.IOException;
    
                    protected 
                    final void 
                    skipAttributes() 
                    throws java.io.IOException;
    
                    protected 
                    final void 
                    readAttributes() 
                    throws java.io.IOException;
    
                    public void 
                    readCode() 
                    throws java.io.IOException;
    
                    protected void ClassReader(byte[], java.util.Map);
}

                

org/apache/axis/utils/bytecode/ParamNameExtractor.class

                    package org.apache.axis.utils.bytecode;

                    public 
                    synchronized 
                    class ParamNameExtractor {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void ParamNameExtractor();
    
                    public 
                    static String[] 
                    getParameterNamesFromDebugInfo(reflect.Method);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/utils/bytecode/ParamReader$MethodInfo.class

                    package org.apache.axis.utils.bytecode;

                    synchronized 
                    class ParamReader$MethodInfo {
    String[] 
                    names;
    int 
                    maxLocals;
    
                    public void ParamReader$MethodInfo(int);
}

                

org/apache/axis/utils/bytecode/ParamReader.class

                    package org.apache.axis.utils.bytecode;

                    public 
                    synchronized 
                    class ParamReader 
                    extends ClassReader {
    
                    private String 
                    methodName;
    
                    private java.util.Map 
                    methods;
    
                    private Class[] 
                    paramTypes;
    
                    public void ParamReader(Class) 
                    throws java.io.IOException;
    
                    public void ParamReader(byte[]) 
                    throws java.io.IOException;
    
                    public void 
                    readCode() 
                    throws java.io.IOException;
    
                    public String[] 
                    getParameterNames(reflect.Constructor);
    
                    public String[] 
                    getParameterNames(reflect.Method);
    
                    protected String[] 
                    getParameterNames(reflect.Member, Class[]);
    
                    private ParamReader$MethodInfo 
                    getMethodInfo();
    
                    public void 
                    readLocalVariableTable() 
                    throws java.io.IOException;
}

                

org/apache/axis/utils/cache/ClassCache.class

                    package org.apache.axis.utils.cache;

                    public 
                    synchronized 
                    class ClassCache {
    java.util.Hashtable 
                    classCache;
    
                    public void ClassCache();
    
                    public 
                    synchronized void 
                    registerClass(String, Class);
    
                    public 
                    synchronized void 
                    deregisterClass(String);
    
                    public boolean 
                    isClassRegistered(String);
    
                    public JavaClass 
                    lookup(String, ClassLoader) 
                    throws ClassNotFoundException;
}

                

org/apache/axis/utils/cache/JavaClass.class

                    package org.apache.axis.utils.cache;

                    public 
                    synchronized 
                    class JavaClass 
                    implements java.io.Serializable {
    
                    private 
                    static java.util.Hashtable 
                    classes;
    
                    private java.util.Hashtable 
                    methods;
    
                    private Class 
                    jc;
    
                    public 
                    static 
                    synchronized JavaClass 
                    find(Class);
    
                    public void JavaClass(Class);
    
                    public Class 
                    getJavaClass();
    
                    public reflect.Method[] 
                    getMethod(String);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/utils/cache/JavaMethod.class

                    package org.apache.axis.utils.cache;

                    public 
                    synchronized 
                    class JavaMethod {
    
                    private reflect.Method[] 
                    methods;
    
                    public void JavaMethod(Class, String);
    
                    public reflect.Method[] 
                    getMethod();
}

                

org/apache/axis/utils/cache/MethodCache$MethodKey.class

                    package org.apache.axis.utils.cache;

                    synchronized 
                    class MethodCache$MethodKey {
    
                    private 
                    final String 
                    methodName;
    
                    private 
                    final Class[] 
                    parameterTypes;
    void MethodCache$MethodKey(String, Class[]);
    
                    public boolean 
                    equals(Object);
    
                    public int 
                    hashCode();
}

                

org/apache/axis/utils/cache/MethodCache.class

                    package org.apache.axis.utils.cache;

                    public 
                    synchronized 
                    class MethodCache {
    
                    private 
                    static 
                    transient MethodCache 
                    instance;
    
                    private 
                    static 
                    transient ThreadLocal 
                    cache;
    
                    private 
                    static 
                    final Object 
                    NULL_OBJECT;
    
                    private void MethodCache();
    
                    public 
                    static MethodCache 
                    getInstance();
    
                    private java.util.Map 
                    getMethodCache();
    
                    public reflect.Method 
                    getMethod(Class, String, Class[]) 
                    throws NoSuchMethodException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/utils/tcpmon$1.class

                    package org.apache.axis.utils;

                    synchronized 
                    class tcpmon$1 
                    implements java.awt.event.ActionListener {
    void tcpmon$1(tcpmon$AdminPage, String);
    
                    public void 
                    actionPerformed(java.awt.event.ActionEvent);
}

                

org/apache/axis/utils/tcpmon$10.class

                    package org.apache.axis.utils;

                    synchronized 
                    class tcpmon$10 
                    implements java.awt.event.ActionListener {
    void tcpmon$10(tcpmon$Listener, String);
    
                    public void 
                    actionPerformed(java.awt.event.ActionEvent);
}

                

org/apache/axis/utils/tcpmon$11.class

                    package org.apache.axis.utils;

                    synchronized 
                    class tcpmon$11 
                    implements java.awt.event.ActionListener {
    void tcpmon$11(tcpmon$Listener, String);
    
                    public void 
                    actionPerformed(java.awt.event.ActionEvent);
}

                

org/apache/axis/utils/tcpmon$12.class

                    package org.apache.axis.utils;

                    synchronized 
                    class tcpmon$12 
                    implements java.awt.event.ActionListener {
    void tcpmon$12(tcpmon$Listener, String);
    
                    public void 
                    actionPerformed(java.awt.event.ActionEvent);
}

                

org/apache/axis/utils/tcpmon$13.class

                    package org.apache.axis.utils;

                    synchronized 
                    class tcpmon$13 
                    implements java.awt.event.ActionListener {
    void tcpmon$13(tcpmon$Listener, String);
    
                    public void 
                    actionPerformed(java.awt.event.ActionEvent);
}

                

org/apache/axis/utils/tcpmon$14.class

                    package org.apache.axis.utils;

                    synchronized 
                    class tcpmon$14 
                    implements java.awt.event.ActionListener {
    void tcpmon$14(tcpmon$Listener, String);
    
                    public void 
                    actionPerformed(java.awt.event.ActionEvent);
}

                

org/apache/axis/utils/tcpmon$2.class

                    package org.apache.axis.utils;

                    synchronized 
                    class tcpmon$2 
                    implements java.awt.event.ActionListener {
    void tcpmon$2(tcpmon$AdminPage, String);
    
                    public void 
                    actionPerformed(java.awt.event.ActionEvent);
}

                

org/apache/axis/utils/tcpmon$3.class

                    package org.apache.axis.utils;

                    synchronized 
                    class tcpmon$3 
                    implements java.awt.event.ActionListener {
    void tcpmon$3(tcpmon$AdminPage, String);
    
                    public void 
                    actionPerformed(java.awt.event.ActionEvent);
}

                

org/apache/axis/utils/tcpmon$4.class

                    package org.apache.axis.utils;

                    synchronized 
                    class tcpmon$4 
                    implements java.awt.event.ActionListener {
    void tcpmon$4(tcpmon$AdminPage, String);
    
                    public void 
                    actionPerformed(java.awt.event.ActionEvent);
}

                

org/apache/axis/utils/tcpmon$5.class

                    package org.apache.axis.utils;

                    synchronized 
                    class tcpmon$5 
                    implements java.awt.event.ActionListener {
    void tcpmon$5(tcpmon$AdminPage, String, tcpmon);
    
                    public void 
                    actionPerformed(java.awt.event.ActionEvent);
}

                

org/apache/axis/utils/tcpmon$6.class

                    package org.apache.axis.utils;

                    synchronized 
                    class tcpmon$6 
                    extends javax.swing.plaf.basic.BasicButtonListener {
    void tcpmon$6(tcpmon$Listener, javax.swing.AbstractButton);
    
                    public void 
                    stateChanged(javax.swing.event.ChangeEvent);
}

                

org/apache/axis/utils/tcpmon$7.class

                    package org.apache.axis.utils;

                    synchronized 
                    class tcpmon$7 
                    implements java.awt.event.ActionListener {
    void tcpmon$7(tcpmon$Listener, String);
    
                    public void 
                    actionPerformed(java.awt.event.ActionEvent);
}

                

org/apache/axis/utils/tcpmon$8.class

                    package org.apache.axis.utils;

                    synchronized 
                    class tcpmon$8 
                    implements javax.swing.event.ListSelectionListener {
    void tcpmon$8(tcpmon$Listener);
    
                    public void 
                    valueChanged(javax.swing.event.ListSelectionEvent);
}

                

org/apache/axis/utils/tcpmon$9.class

                    package org.apache.axis.utils;

                    synchronized 
                    class tcpmon$9 
                    implements java.awt.event.ActionListener {
    void tcpmon$9(tcpmon$Listener, String);
    
                    public void 
                    actionPerformed(java.awt.event.ActionEvent);
}

                

org/apache/axis/utils/tcpmon$AdminPage.class

                    package org.apache.axis.utils;

                    synchronized 
                    class tcpmon$AdminPage 
                    extends javax.swing.JPanel {
    
                    public javax.swing.JRadioButton 
                    listenerButton;
    
                    public javax.swing.JRadioButton 
                    proxyButton;
    
                    public javax.swing.JLabel 
                    hostLabel;
    
                    public javax.swing.JLabel 
                    tportLabel;
    
                    public tcpmon$NumberField 
                    port;
    
                    public tcpmon$HostnameField 
                    host;
    
                    public tcpmon$NumberField 
                    tport;
    
                    public javax.swing.JTabbedPane 
                    noteb;
    
                    public javax.swing.JCheckBox 
                    HTTPProxyBox;
    
                    public tcpmon$HostnameField 
                    HTTPProxyHost;
    
                    public tcpmon$NumberField 
                    HTTPProxyPort;
    
                    public javax.swing.JLabel 
                    HTTPProxyHostLabel;
    
                    public javax.swing.JLabel 
                    HTTPProxyPortLabel;
    
                    public javax.swing.JLabel 
                    delayTimeLabel;
    
                    public javax.swing.JLabel 
                    delayBytesLabel;
    
                    public tcpmon$NumberField 
                    delayTime;
    
                    public tcpmon$NumberField 
                    delayBytes;
    
                    public javax.swing.JCheckBox 
                    delayBox;
    
                    public void tcpmon$AdminPage(tcpmon, javax.swing.JTabbedPane, String);
}

                

org/apache/axis/utils/tcpmon$Connection.class

                    package org.apache.axis.utils;

                    synchronized 
                    class tcpmon$Connection 
                    extends Thread {
    tcpmon$Listener 
                    listener;
    boolean 
                    active;
    String 
                    fromHost;
    String 
                    time;
    javax.swing.JTextArea 
                    inputText;
    javax.swing.JScrollPane 
                    inputScroll;
    javax.swing.JTextArea 
                    outputText;
    javax.swing.JScrollPane 
                    outputScroll;
    java.net.Socket 
                    inSocket;
    java.net.Socket 
                    outSocket;
    Thread 
                    clientThread;
    Thread 
                    serverThread;
    tcpmon$SocketRR 
                    rr1;
    tcpmon$SocketRR 
                    rr2;
    java.io.InputStream 
                    inputStream;
    String 
                    HTTPProxyHost;
    int 
                    HTTPProxyPort;
    
                    private tcpmon$SlowLinkSimulator 
                    slowLink;
    
                    public void tcpmon$Connection(tcpmon, tcpmon$Listener);
    
                    public void tcpmon$Connection(tcpmon, tcpmon$Listener, java.net.Socket);
    
                    public void tcpmon$Connection(tcpmon, tcpmon$Listener, java.io.InputStream);
    
                    public void 
                    run();
    
                    synchronized void 
                    wakeUp();
    
                    public void 
                    halt();
    
                    public void 
                    remove();
}

                

org/apache/axis/utils/tcpmon$HostnameField.class

                    package org.apache.axis.utils;

                    synchronized 
                    class tcpmon$HostnameField 
                    extends tcpmon$RestrictedTextField {
    
                    private 
                    static 
                    final String 
                    VALID_TEXT = 0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWZYZ-.;
    
                    public void tcpmon$HostnameField(int);
    
                    public void tcpmon$HostnameField();
}

                

org/apache/axis/utils/tcpmon$Listener.class

                    package org.apache.axis.utils;

                    synchronized 
                    class tcpmon$Listener 
                    extends javax.swing.JPanel {
    
                    public java.net.Socket 
                    inputSocket;
    
                    public java.net.Socket 
                    outputSocket;
    
                    public javax.swing.JTextField 
                    portField;
    
                    public javax.swing.JTextField 
                    hostField;
    
                    public javax.swing.JTextField 
                    tPortField;
    
                    public javax.swing.JCheckBox 
                    isProxyBox;
    
                    public javax.swing.JButton 
                    stopButton;
    
                    public javax.swing.JButton 
                    removeButton;
    
                    public javax.swing.JButton 
                    removeAllButton;
    
                    public javax.swing.JCheckBox 
                    xmlFormatBox;
    
                    public javax.swing.JCheckBox 
                    numericBox;
    
                    public javax.swing.JButton 
                    saveButton;
    
                    public javax.swing.JButton 
                    resendButton;
    
                    public javax.swing.JButton 
                    switchButton;
    
                    public javax.swing.JButton 
                    closeButton;
    
                    public javax.swing.JTable 
                    connectionTable;
    
                    public javax.swing.table.DefaultTableModel 
                    tableModel;
    
                    public javax.swing.JSplitPane 
                    outPane;
    
                    public java.net.ServerSocket 
                    sSocket;
    
                    public tcpmon$SocketWaiter 
                    sw;
    
                    public javax.swing.JPanel 
                    leftPanel;
    
                    public javax.swing.JPanel 
                    rightPanel;
    
                    public javax.swing.JTabbedPane 
                    notebook;
    
                    public String 
                    HTTPProxyHost;
    
                    public int 
                    HTTPProxyPort;
    
                    public int 
                    delayBytes;
    
                    public int 
                    delayTime;
    
                    public tcpmon$SlowLinkSimulator 
                    slowLink;
    
                    public 
                    final java.util.Vector 
                    connections;
    
                    public void tcpmon$Listener(tcpmon, javax.swing.JTabbedPane, String, int, String, int, boolean, tcpmon$SlowLinkSimulator);
    
                    public void 
                    setLeft(java.awt.Component);
    
                    public void 
                    setRight(java.awt.Component);
    
                    public void 
                    start();
    
                    public void 
                    close();
    
                    public void 
                    stop();
    
                    public void 
                    remove();
    
                    public void 
                    removeAll();
    
                    public void 
                    save();
    
                    public void 
                    resend();
}

                

org/apache/axis/utils/tcpmon$NumberField.class

                    package org.apache.axis.utils;

                    synchronized 
                    class tcpmon$NumberField 
                    extends tcpmon$RestrictedTextField {
    
                    private 
                    static 
                    final String 
                    VALID_TEXT = 0123456789;
    
                    public void tcpmon$NumberField();
    
                    public void tcpmon$NumberField(int);
    
                    public int 
                    getValue(int);
    
                    public void 
                    setValue(int);
}

                

org/apache/axis/utils/tcpmon$RestrictedTextField$RestrictedDocument.class

                    package org.apache.axis.utils;

                    synchronized 
                    class tcpmon$RestrictedTextField$RestrictedDocument 
                    extends javax.swing.text.PlainDocument {
    
                    public void tcpmon$RestrictedTextField$RestrictedDocument(tcpmon$RestrictedTextField);
    
                    public void 
                    insertString(int, String, javax.swing.text.AttributeSet) 
                    throws javax.swing.text.BadLocationException;
}

                

org/apache/axis/utils/tcpmon$RestrictedTextField.class

                    package org.apache.axis.utils;

                    synchronized 
                    class tcpmon$RestrictedTextField 
                    extends javax.swing.JTextField {
    
                    protected String 
                    validText;
    
                    public void tcpmon$RestrictedTextField(String);
    
                    public void tcpmon$RestrictedTextField(int, String);
    
                    public void tcpmon$RestrictedTextField(String, String);
    
                    public void tcpmon$RestrictedTextField(String, int, String);
    
                    private void 
                    setValidText(String);
    
                    public javax.swing.text.Document 
                    createDefaultModel();
}

                

org/apache/axis/utils/tcpmon$SlowLinkSimulator.class

                    package org.apache.axis.utils;

                    synchronized 
                    class tcpmon$SlowLinkSimulator {
    
                    private int 
                    delayBytes;
    
                    private int 
                    delayTime;
    
                    private int 
                    currentBytes;
    
                    private int 
                    totalBytes;
    
                    public void tcpmon$SlowLinkSimulator(int, int);
    
                    public void tcpmon$SlowLinkSimulator(tcpmon$SlowLinkSimulator);
    
                    public int 
                    getTotalBytes();
    
                    public void 
                    pump(int);
    
                    public int 
                    getCurrentBytes();
    
                    public void 
                    setCurrentBytes(int);
}

                

org/apache/axis/utils/tcpmon$SocketRR.class

                    package org.apache.axis.utils;

                    synchronized 
                    class tcpmon$SocketRR 
                    extends Thread {
    java.net.Socket 
                    inSocket;
    java.net.Socket 
                    outSocket;
    javax.swing.JTextArea 
                    textArea;
    java.io.InputStream 
                    in;
    java.io.OutputStream 
                    out;
    boolean 
                    xmlFormat;
    boolean 
                    numericEnc;
    
                    volatile boolean 
                    done;
    javax.swing.table.TableModel 
                    tmodel;
    int 
                    tableIndex;
    String 
                    type;
    tcpmon$Connection 
                    myConnection;
    tcpmon$SlowLinkSimulator 
                    slowLink;
    
                    public void tcpmon$SocketRR(tcpmon, tcpmon$Connection, java.net.Socket, java.io.InputStream, java.net.Socket, java.io.OutputStream, javax.swing.JTextArea, boolean, boolean, javax.swing.table.TableModel, int, String, tcpmon$SlowLinkSimulator);
    
                    public boolean 
                    isDone();
    
                    public void 
                    run();
    
                    private String 
                    getEncoding();
    
                    public void 
                    halt();
}

                

org/apache/axis/utils/tcpmon$SocketWaiter.class

                    package org.apache.axis.utils;

                    synchronized 
                    class tcpmon$SocketWaiter 
                    extends Thread {
    java.net.ServerSocket 
                    sSocket;
    tcpmon$Listener 
                    listener;
    int 
                    port;
    boolean 
                    pleaseStop;
    
                    public void tcpmon$SocketWaiter(tcpmon, tcpmon$Listener, int);
    
                    public void 
                    run();
    
                    public void 
                    halt();
}

                

org/apache/axis/utils/tcpmon.class

                    package org.apache.axis.utils;

                    public 
                    synchronized 
                    class tcpmon 
                    extends javax.swing.JFrame {
    
                    private javax.swing.JTabbedPane 
                    notebook;
    
                    private 
                    static 
                    final int 
                    STATE_COLUMN = 0;
    
                    private 
                    static 
                    final int 
                    TIME_COLUMN = 1;
    
                    private 
                    static 
                    final int 
                    INHOST_COLUMN = 2;
    
                    private 
                    static 
                    final int 
                    OUTHOST_COLUMN = 3;
    
                    private 
                    static 
                    final int 
                    REQ_COLUMN = 4;
    
                    private 
                    static 
                    final String 
                    DEFAULT_HOST = 127.0.0.1;
    
                    private 
                    static 
                    final int 
                    DEFAULT_PORT = 8080;
    
                    private 
                    static java.util.ResourceBundle 
                    messages;
    
                    public void tcpmon(int, String, int, boolean);
    
                    public void tcpmon(int, String, int);
    
                    private 
                    static void 
                    setupLookAndFeel(boolean) 
                    throws Exception;
    
                    public 
                    static void 
                    main(String[]);
    
                    public 
                    static String 
                    getMessage(String, String);
    
                    private 
                    static void 
                    initializeMessages();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/utils/tcpmon.properties

# Translation instructions. # 1. Each message line is of the form key=value. Translate the value, DO NOT translate the key. # 2. The messages may contain arguments that will be filled in by the runtime. These are of the form: {0}, {1}, etc. These must appear as is in the message, though the order may be changed to support proper language syntax. # 3. If a single quote character is to appear in the resulting message, it must appear in this file as two consecutive single quote characters. # 4. Lines beginning with "#" (like this one) are comment lines and may contain translation instructions. They need not be translated unless your translated file, rather than this file, will serve as a base for other translators. actAs00=Act as a... active00=Active add00=Add admin00=Admin close00=Close done00=Done resp00=Resp req00=Req error00=Error host00=Host: hostname00=Hostname listener00=Listener listenPort00=Listen Port # listenPort01=Listen Port: mostRecent00=Most Recent newTCP00=Create a new TCP/IP Monitor... options00=Options port00=Port # port01=Port port02=Port: proxy00=Proxy proxySupport00=HTTP Proxy Support removeAll00=Remove All removeSelected00=Remove Selected request00=Request... request01=Request requestHost00=Request Host resend00=Resend response00=Response save00=Save start00=Start state00=State stop00=Stop switch00=Switch Layout targetHost00=Target Host targetHost01=Target Host: targetHostname00=Target Hostname targetPort00=Target Port # targetPort01=Target Port: tcpmon00=TCPMonitor time00=Time usage00=Usage: wait00=Waiting for Connection... wait01=Waiting for Connection # NOTE: in xmlFormat00, do not translate "XML" xmlFormat00=XML Format numericEnc00=Numeric #NOTE: this is a SimpleDateFormat format string to declare the layout of date #and time in the message log. It does need i18n, but not 'translation', per se. dateformat00=yyyy-MM-dd HH:mm:ss delay00=Simulate Slow Connection delay01=Bytes per Pause delay02=Delay in Milliseconds

org/apache/axis/utils/tcpmon_ja.properties

# Translation instructions. # 1. Each message line is of the form key=value. Translate the value, DO NOT translate the key. # 2. The messages may contain arguments that will be filled in by the runtime. These are of the form: {0}, {1}, etc. These must appear as is in the message, though the order may be changed to support proper language syntax. # 3. If a single quote character is to appear in the resulting message, it must appear in this file as two consecutive single quote characters. # 4. Lines beginning with "#" (like this one) are comment lines and may contain translation instructions. They need not be translated unless your translated file, rather than this file, will serve as a base for other translators. actAs00=\u52d5\u4f5c\u306e\u8a2d\u5b9a... active00=\u30a2\u30af\u30c6\u30a3\u30d6 add00=\u8ffd\u52a0 admin00=\u7ba1\u7406 close00=\u9589\u3058\u308b done00=\u5b8c\u4e86 resp00=Resp req00=Req error00=\u30a8\u30e9\u30fc host00=\u30db\u30b9\u30c8: hostname00=\u30db\u30b9\u30c8\u540d listener00=\u5f85\u3061\u53d7\u3051 listenPort00=\u5f85\u3061\u53d7\u3051\u30dd\u30fc\u30c8 # listenPort01=\u5f85\u3061\u53d7\u3051\u30dd\u30fc\u30c8: mostRecent00=\u6700\u3082\u6700\u8fd1\u306e\u7d50\u679c newTCP00=\u65b0\u3057\u3044TCP/IP\u30e2\u30cb\u30bf\u3092\u751f\u6210... options00=\u30aa\u30d7\u30b7\u30e7\u30f3 port00=\u30dd\u30fc\u30c8 # port01=\u30dd\u30fc\u30c8 port02=\u30dd\u30fc\u30c8: proxy00=\u30d7\u30ed\u30ad\u30b7 proxySupport00=HTTP\u30d7\u30ed\u30ad\u30b7\u30b5\u30dd\u30fc\u30c8 removeAll00=\u5168\u3066\u524a\u9664 removeSelected00=\u9078\u629e\u3057\u305f\u7d50\u679c\u3092\u524a\u9664 request00=\u30ea\u30af\u30a8\u30b9\u30c8... request01=\u30ea\u30af\u30a8\u30b9\u30c8 requestHost00=\u30ea\u30af\u30a8\u30b9\u30c8\u30db\u30b9\u30c8 resend00=\u518d\u9001 response00=\u30ec\u30b9\u30dd\u30f3\u30b9 save00=\u4fdd\u5b58 start00=\u958b\u59cb state00=\u72b6\u614b stop00=\u505c\u6b62 switch00=\u30ec\u30a4\u30a2\u30a6\u30c8\u5909\u66f4 targetHost=\u30bf\u30fc\u30b2\u30c3\u30c8\u30db\u30b9\u30c8 targetHost01=\u30bf\u30fc\u30b2\u30c3\u30c8\u30db\u30b9\u30c8: targetHostname00=\u30bf\u30fc\u30b2\u30c3\u30c8\u30db\u30b9\u30c8\u540d targetPort00=\u30bf\u30fc\u30b2\u30c3\u30c8\u30dd\u30fc\u30c8 # targetPort01=\u30bf\u30fc\u30b2\u30c3\u30c8\u30dd\u30fc\u30c8: tcpmon00=TCP\u30e2\u30cb\u30bf time00=\u51e6\u7406\u6642\u9593 usage00=\u4f7f\u7528\u65b9\u6cd5: wait00=\u63a5\u7d9a\u3092\u5f85\u3061\u53d7\u3051\u4e2d... wait01=\u63a5\u7d9a\u3092\u5f85\u3061\u53d7\u3051\u4e2d # NOTE: in xmlFormat00, do not translate "XML" xmlFormat00=XML\u30d5\u30a9\u30fc\u30de\u30c3\u30c8 numericEnc00=\u30cb\u30e5\u30fc\u30e1\u30ea\u30c3\u30af\u8868\u793a #NOTE: this is a SimpleDateFormat format string to declare the layout of date #and time in the message log. It does need i18n, but not 'translation', per se. dateformat00=yyyy-MM-dd HH:mm:ss delay00=\u9045\u3044\u63a5\u7d9a\u3092\u30b7\u30df\u30e5\u30ec\u30fc\u30c8 delay01=\u6307\u5b9a\u3057\u305f\u30d0\u30a4\u30c8\u6bce\u306b\u30dd\u30fc\u30ba delay02=\uff11\u30df\u30ea\u79d2\u6bce\u306e\u9045\u5ef6

org/apache/axis/utils/tcpmon_ko.properties

# Translation instructions. # 1. Each message line is of the form key=value. Translate the value, DO NOT translate the key. # 2. The messages may contain arguments that will be filled in by the runtime. These are of the form: {0}, {1}, etc. These must appear as is in the message, though the order may be changed to support proper language syntax. # 3. If a single quote character is to appear in the resulting message, it must appear in this file as two consecutive single quote characters. # 4. Lines beginning with "#" (like this one) are comment lines and may contain translation instructions. They need not be translated unless your translated file, rather than this file, will serve as a base for other translators. actAs00=\ub3d9\uc791 \uc124\uc815... active00=\ud65c\uc131\ud654 add00=\ucd94\uac00 admin00=\uad00\ub9ac close00=\ub2eb\uae30 done00=\uc644\ub8cc resp00=Resp req00=Req error00=\uc624\ub958 host00=\ud638\uc2a4\ud2b8: hostname00=\ud638\uc2a4\ud2b8 \uc774\ub984 listener00=\ub9ac\uc2a4\ub108 listenPort00=\ub9ac\uc2a4\ub108 \ud3ec\ud2b8 # listenPort01=\ub9ac\uc2a4\ub108 \ud3ec\ud2b8: mostRecent00=\uac00\uc7a5 \ucd5c\uadfc\uc758 \uacb0\uacfc newTCP00=\uc0c8\ub85c\uc6b4 TCP \ubaa8\ub2c8\ud130 \uc0dd\uc131... options00=\uc635\uc158 port00=\ud3ec\ud2b8 # port01=\ud3ec\ud2b8 port02=\ud3ec\ud2b8: proxy00=\ud504\ub77d\uc2dc proxySupport00=HTTP \ud504\ub77d\uc2dc \uc9c0\uc6d0 removeAll00=\uc804\ubd80 \uc0ad\uc81c removeSelected00=\uc120\ud0dd \uc0ad\uc81c request00=\uc694\uccad... request01=\uc694\uccad requestHost00=\uc694\uccad \ud638\uc2a4\ud2b8 resend00=\uc7ac\uc1a1\uc2e0 response00=\uc751\ub2f5 save00=\ubcf4\uc874 start00=\uc2dc\uc791 state00=\uc0c1\ud0dc stop00=\uc911\uc9c0 switch00=\ud45c\uc2dc\ubc29\uc2dd \ubcc0\uacbd targetHost=\ub300\uc0c1 \ud638\uc2a4\ud2b8 targetHost01=\ub300\uc0c1 \ud638\uc2a4\ud2b8: targetHostname00=\ub300\uc0c1 \ud638\uc2a4\ud2b8 \uc774\ub984 targetPort00=\ub300\uc0c1 \ud3ec\ud2b8 # targetPort01=\ub300\uc0c1 \ud3ec\ud2b8: tcpmon00=TCP\ubaa8\ub2c8\ud130 time00=\ucc98\ub9ac \uc2dc\uac01 usage00=\uc0ac\uc6a9\ubc29\ubc95: wait00=\uc811\uc18d\uc744 \uae30\ub2e4\ub9ac\ub294 \uc911... wait01=\uc811\uc18d\uc744 \uae30\ub2e4\ub9ac\ub294 \uc911 # NOTE: in xmlFormat00, do not translate "XML" xmlFormat00=XML\ud615\uc2dd #NOTE: this is a SimpleDateFormat format string to declare the layout of date #and time in the message log. It does need i18n, but not 'translation', per se. dateformat00=yyyy-MM-dd HH:mm:ss delay00=\ub290\ub9b0 \uc5f0\uacb0\uc744 \ud749\ub0b4 delay01=\uc9c0\uc815\ud55c \ubc14\uc774\ud2b8\ub2f9 \ud734\uc9c0 delay02=1\ucc9c\ubd84\uc758 1\ucd08\ub2f9 \uc9c0\uc5f0

org/apache/axis/wsdl/Java2WSDL.class

                    package org.apache.axis.wsdl;

                    public 
                    synchronized 
                    class Java2WSDL {
    
                    protected 
                    static 
                    final int 
                    INHERITED_CLASS_OPT = 97;
    
                    protected 
                    static 
                    final int 
                    SOAPACTION_OPT = 65;
    
                    protected 
                    static 
                    final int 
                    BINDING_NAME_OPT = 98;
    
                    protected 
                    static 
                    final int 
                    STOP_CLASSES_OPT = 99;
    
                    protected 
                    static 
                    final int 
                    IMPORT_SCHEMA_OPT = 67;
    
                    protected 
                    static 
                    final int 
                    EXTRA_CLASSES_OPT = 101;
    
                    protected 
                    static 
                    final int 
                    HELP_OPT = 104;
    
                    protected 
                    static 
                    final int 
                    IMPL_CLASS_OPT = 105;
    
                    protected 
                    static 
                    final int 
                    INPUT_OPT = 73;
    
                    protected 
                    static 
                    final int 
                    LOCATION_OPT = 108;
    
                    protected 
                    static 
                    final int 
                    LOCATION_IMPORT_OPT = 76;
    
                    protected 
                    static 
                    final int 
                    METHODS_ALLOWED_OPT = 109;
    
                    protected 
                    static 
                    final int 
                    NAMESPACE_OPT = 110;
    
                    protected 
                    static 
                    final int 
                    NAMESPACE_IMPL_OPT = 78;
    
                    protected 
                    static 
                    final int 
                    OUTPUT_OPT = 111;
    
                    protected 
                    static 
                    final int 
                    OUTPUT_IMPL_OPT = 79;
    
                    protected 
                    static 
                    final int 
                    PACKAGE_OPT = 112;
    
                    protected 
                    static 
                    final int 
                    PORTTYPE_NAME_OPT = 80;
    
                    protected 
                    static 
                    final int 
                    SERVICE_PORT_NAME_OPT = 115;
    
                    protected 
                    static 
                    final int 
                    SERVICE_ELEMENT_NAME_OPT = 83;
    
                    protected 
                    static 
                    final int 
                    TYPEMAPPING_OPT = 84;
    
                    protected 
                    static 
                    final int 
                    USE_OPT = 117;
    
                    protected 
                    static 
                    final int 
                    OUTPUT_WSDL_MODE_OPT = 119;
    
                    protected 
                    static 
                    final int 
                    METHODS_NOTALLOWED_OPT = 120;
    
                    protected 
                    static 
                    final int 
                    CLASSPATH_OPT = 88;
    
                    protected 
                    static 
                    final int 
                    STYLE_OPT = 121;
    
                    protected 
                    static 
                    final int 
                    DEPLOY_OPT = 100;
    
                    protected org.apache.axis.utils.CLOptionDescriptor[] 
                    options;
    
                    protected fromJava.Emitter 
                    emitter;
    
                    protected String 
                    className;
    
                    protected String 
                    wsdlFilename;
    
                    protected String 
                    wsdlImplFilename;
    
                    protected java.util.HashMap 
                    namespaceMap;
    
                    protected int 
                    mode;
    boolean 
                    locationSet;
    
                    protected String 
                    typeMappingVersion;
    
                    protected boolean 
                    isDeploy;
    
                    protected void Java2WSDL();
    
                    protected fromJava.Emitter 
                    createEmitter();
    
                    protected void 
                    addOptions(org.apache.axis.utils.CLOptionDescriptor[]);
    
                    protected boolean 
                    parseOption(org.apache.axis.utils.CLOption);
    
                    protected boolean 
                    validateOptions();
    
                    protected int 
                    run(String[]);
    
                    protected void 
                    generateServerSide(fromJava.Emitter, String) 
                    throws Exception;
    
                    protected void 
                    printUsage();
    
                    public 
                    static void 
                    main(String[]);
}

                

org/apache/axis/wsdl/Skeleton.class

                    package org.apache.axis.wsdl;

                    public 
                    abstract 
                    interface Skeleton 
                    extends java.io.Serializable {
}

                

org/apache/axis/wsdl/SkeletonImpl$MetaInfo.class

                    package org.apache.axis.wsdl;

                    synchronized 
                    class SkeletonImpl$MetaInfo {
    javax.xml.namespace.QName[] 
                    names;
    javax.xml.rpc.ParameterMode[] 
                    modes;
    String 
                    inputNamespace;
    String 
                    outputNamespace;
    String 
                    soapAction;
    void SkeletonImpl$MetaInfo(SkeletonImpl, javax.xml.namespace.QName[], javax.xml.rpc.ParameterMode[], String, String, String);
}

                

org/apache/axis/wsdl/SkeletonImpl.class

                    package org.apache.axis.wsdl;

                    public 
                    synchronized 
                    class SkeletonImpl 
                    implements Skeleton {
    
                    private 
                    static java.util.HashMap 
                    table;
    
                    public void SkeletonImpl();
    
                    public void 
                    add(String, javax.xml.namespace.QName[], javax.xml.rpc.ParameterMode[], String, String, String);
    
                    public void 
                    add(String, String[], javax.xml.rpc.ParameterMode[], String, String, String);
    
                    public javax.xml.namespace.QName 
                    getParameterName(String, int);
    
                    public javax.xml.rpc.ParameterMode 
                    getParameterMode(String, int);
    
                    public String 
                    getInputNamespace(String);
    
                    public String 
                    getOutputNamespace(String);
    
                    public String 
                    getSOAPAction(String);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/wsdl/WSDL2Java.class

                    package org.apache.axis.wsdl;

                    public 
                    synchronized 
                    class WSDL2Java 
                    extends gen.WSDL2 {
    
                    protected 
                    static 
                    final int 
                    SERVER_OPT = 115;
    
                    protected 
                    static 
                    final int 
                    SKELETON_DEPLOY_OPT = 83;
    
                    protected 
                    static 
                    final int 
                    NAMESPACE_OPT = 78;
    
                    protected 
                    static 
                    final int 
                    NAMESPACE_FILE_OPT = 102;
    
                    protected 
                    static 
                    final int 
                    OUTPUT_OPT = 111;
    
                    protected 
                    static 
                    final int 
                    SCOPE_OPT = 100;
    
                    protected 
                    static 
                    final int 
                    TEST_OPT = 116;
    
                    protected 
                    static 
                    final int 
                    BUILDFILE_OPT = 66;
    
                    protected 
                    static 
                    final int 
                    PACKAGE_OPT = 112;
    
                    protected 
                    static 
                    final int 
                    ALL_OPT = 97;
    
                    protected 
                    static 
                    final int 
                    TYPEMAPPING_OPT = 84;
    
                    protected 
                    static 
                    final int 
                    FACTORY_CLASS_OPT = 70;
    
                    protected 
                    static 
                    final int 
                    HELPER_CLASS_OPT = 72;
    
                    protected 
                    static 
                    final int 
                    USERNAME_OPT = 85;
    
                    protected 
                    static 
                    final int 
                    PASSWORD_OPT = 80;
    
                    protected 
                    static 
                    final int 
                    CLASSPATH_OPT = 88;
    
                    protected boolean 
                    bPackageOpt;
    
                    protected 
                    static 
                    final int 
                    NS_INCLUDE_OPT = 105;
    
                    protected 
                    static 
                    final int 
                    NS_EXCLUDE_OPT = 120;
    
                    protected 
                    static 
                    final int 
                    IMPL_CLASS_OPT = 99;
    
                    protected 
                    static 
                    final int 
                    ALLOW_INVALID_URL_OPT = 117;
    
                    protected 
                    static 
                    final int 
                    WRAP_ARRAYS_OPT = 119;
    
                    private toJava.Emitter 
                    emitter;
    
                    protected 
                    static 
                    final org.apache.axis.utils.CLOptionDescriptor[] 
                    options;
    
                    protected void WSDL2Java();
    
                    protected gen.Parser 
                    createParser();
    
                    protected void 
                    parseOption(org.apache.axis.utils.CLOption);
    
                    protected void 
                    validateOptions();
    
                    public 
                    static void 
                    main(String[]);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/wsdl/fromJava/Emitter.class

                    package org.apache.axis.wsdl.fromJava;

                    public 
                    synchronized 
                    class Emitter {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public 
                    static 
                    final int 
                    MODE_ALL = 0;
    
                    public 
                    static 
                    final int 
                    MODE_INTERFACE = 1;
    
                    public 
                    static 
                    final int 
                    MODE_IMPLEMENTATION = 2;
    
                    private Class 
                    cls;
    
                    private Class[] 
                    extraClasses;
    
                    private Class 
                    implCls;
    
                    private java.util.Vector 
                    allowedMethods;
    
                    private java.util.Vector 
                    disallowedMethods;
    
                    private java.util.ArrayList 
                    stopClasses;
    
                    private boolean 
                    useInheritedMethods;
    
                    private String 
                    intfNS;
    
                    private String 
                    implNS;
    
                    private String 
                    inputSchema;
    
                    private String 
                    inputWSDL;
    
                    private String 
                    locationUrl;
    
                    private String 
                    importUrl;
    
                    private String 
                    servicePortName;
    
                    private String 
                    serviceElementName;
    
                    private String 
                    targetService;
    
                    private String 
                    description;
    
                    private org.apache.axis.constants.Style 
                    style;
    
                    private org.apache.axis.constants.Use 
                    use;
    
                    private org.apache.axis.encoding.TypeMapping 
                    tm;
    
                    private org.apache.axis.encoding.TypeMappingRegistry 
                    tmr;
    
                    private Namespaces 
                    namespaces;
    
                    private java.util.Map 
                    exceptionMsg;
    
                    private java.util.Map 
                    usedElementNames;
    
                    private java.util.ArrayList 
                    encodingList;
    
                    protected Types 
                    types;
    
                    private String 
                    clsName;
    
                    private String 
                    portTypeName;
    
                    private String 
                    bindingName;
    
                    private org.apache.axis.description.ServiceDesc 
                    serviceDesc;
    
                    private org.apache.axis.description.JavaServiceDesc 
                    serviceDesc2;
    
                    private String 
                    soapAction;
    
                    private boolean 
                    emitAllTypes;
    
                    private String 
                    versionMessage;
    
                    private java.util.HashMap 
                    qName2ClassMap;
    
                    public 
                    static 
                    final int 
                    MODE_RPC = 0;
    
                    public 
                    static 
                    final int 
                    MODE_DOCUMENT = 1;
    
                    public 
                    static 
                    final int 
                    MODE_DOC_WRAPPED = 2;
    
                    protected 
                    static org.apache.axis.encoding.TypeMapping 
                    standardTypes;
    org.w3c.dom.Document 
                    docHolder;
    
                    public void Emitter();
    
                    public void 
                    emit(String, String) 
                    throws java.io.IOException, javax.wsdl.WSDLException, org.xml.sax.SAXException, javax.xml.parsers.ParserConfigurationException;
    
                    public void 
                    emit(String) 
                    throws java.io.IOException, javax.wsdl.WSDLException, org.xml.sax.SAXException, javax.xml.parsers.ParserConfigurationException;
    
                    public org.w3c.dom.Document 
                    emit(int) 
                    throws java.io.IOException, javax.wsdl.WSDLException, org.xml.sax.SAXException, javax.xml.parsers.ParserConfigurationException;
    
                    public String 
                    emitToString(int) 
                    throws java.io.IOException, javax.wsdl.WSDLException, org.xml.sax.SAXException, javax.xml.parsers.ParserConfigurationException;
    
                    public void 
                    emit(String, int) 
                    throws java.io.IOException, javax.wsdl.WSDLException, org.xml.sax.SAXException, javax.xml.parsers.ParserConfigurationException;
    
                    public javax.wsdl.Definition 
                    getWSDL() 
                    throws java.io.IOException, javax.wsdl.WSDLException, org.xml.sax.SAXException, javax.xml.parsers.ParserConfigurationException;
    
                    public javax.wsdl.Definition 
                    getIntfWSDL() 
                    throws java.io.IOException, javax.wsdl.WSDLException, org.xml.sax.SAXException, javax.xml.parsers.ParserConfigurationException;
    
                    public javax.wsdl.Definition 
                    getImplWSDL() 
                    throws java.io.IOException, javax.wsdl.WSDLException, org.xml.sax.SAXException, javax.xml.parsers.ParserConfigurationException;
    
                    protected void 
                    init(int);
    
                    protected javax.wsdl.Definition 
                    createDefinition() 
                    throws javax.wsdl.WSDLException, org.xml.sax.SAXException, java.io.IOException, javax.xml.parsers.ParserConfigurationException;
    
                    protected Types 
                    createTypes(javax.wsdl.Definition) 
                    throws java.io.IOException, javax.wsdl.WSDLException, org.xml.sax.SAXException, javax.xml.parsers.ParserConfigurationException;
    
                    protected org.w3c.dom.Element 
                    createDocumentationElement(String);
    
                    protected void 
                    writeDefinitions(javax.wsdl.Definition, String);
    
                    protected void 
                    writeImport(javax.wsdl.Definition, String, String);
    
                    protected javax.wsdl.Binding 
                    writeBinding(javax.wsdl.Definition, boolean);
    
                    private void 
                    createDocumentFragment();
    
                    protected void 
                    writeService(javax.wsdl.Definition, javax.wsdl.Binding);
    
                    protected void 
                    writePortType(javax.wsdl.Definition, javax.wsdl.Binding) 
                    throws javax.wsdl.WSDLException, org.apache.axis.AxisFault;
    
                    protected void 
                    writeMessages(javax.wsdl.Definition, javax.wsdl.Operation, org.apache.axis.description.OperationDesc, javax.wsdl.BindingOperation) 
                    throws javax.wsdl.WSDLException, org.apache.axis.AxisFault;
    
                    protected javax.wsdl.BindingOperation 
                    writeOperation(javax.wsdl.Definition, javax.wsdl.Binding, org.apache.axis.description.OperationDesc);
    
                    protected javax.wsdl.BindingOperation 
                    writeBindingOperation(javax.wsdl.Definition, javax.wsdl.Binding, javax.wsdl.Operation, org.apache.axis.description.OperationDesc);
    
                    protected javax.wsdl.extensions.soap.SOAPHeader 
                    writeSOAPHeader(org.apache.axis.description.ParameterDesc, javax.xml.namespace.QName, String);
    
                    protected javax.wsdl.extensions.ExtensibilityElement 
                    writeSOAPBody(javax.xml.namespace.QName);
    
                    protected javax.wsdl.extensions.soap.SOAPFault 
                    writeSOAPFault(org.apache.axis.description.FaultDesc);
    
                    protected javax.wsdl.Message 
                    writeRequestMessage(javax.wsdl.Definition, org.apache.axis.description.OperationDesc, javax.wsdl.BindingOperation) 
                    throws javax.wsdl.WSDLException, org.apache.axis.AxisFault;
    
                    private boolean 
                    writeHeaderParts(javax.wsdl.Definition, java.util.ArrayList, javax.wsdl.BindingOperation, javax.wsdl.Message, boolean) 
                    throws javax.wsdl.WSDLException, org.apache.axis.AxisFault;
    
                    protected javax.xml.namespace.QName 
                    getRequestQName(org.apache.axis.description.OperationDesc);
    
                    private void 
                    qualifyOperation(org.apache.axis.description.OperationDesc);
    
                    protected javax.xml.namespace.QName 
                    getResponseQName(org.apache.axis.description.OperationDesc);
    
                    public String 
                    writeWrapperPart(javax.wsdl.Definition, javax.wsdl.Message, org.apache.axis.description.OperationDesc, boolean) 
                    throws org.apache.axis.AxisFault;
    
                    protected javax.wsdl.Message 
                    writeResponseMessage(javax.wsdl.Definition, org.apache.axis.description.OperationDesc, javax.wsdl.BindingOperation) 
                    throws javax.wsdl.WSDLException, org.apache.axis.AxisFault;
    
                    protected javax.wsdl.Message 
                    writeFaultMessage(javax.wsdl.Definition, org.apache.axis.description.FaultDesc) 
                    throws javax.wsdl.WSDLException, org.apache.axis.AxisFault;
    
                    public String 
                    writePartToMessage(javax.wsdl.Definition, javax.wsdl.Message, boolean, org.apache.axis.description.ParameterDesc) 
                    throws javax.wsdl.WSDLException, org.apache.axis.AxisFault;
    
                    protected javax.xml.namespace.QName 
                    createMessageName(javax.wsdl.Definition, String);
    
                    protected void 
                    prettyDocumentToFile(org.w3c.dom.Document, String) 
                    throws java.io.IOException;
    
                    public Class 
                    getCls();
    
                    public void 
                    setCls(Class);
    
                    public void 
                    setClsSmart(Class, String);
    
                    public void 
                    setCls(String) 
                    throws ClassNotFoundException;
    
                    public Class 
                    getImplCls();
    
                    public void 
                    setImplCls(Class);
    
                    public void 
                    setImplCls(String);
    
                    public String 
                    getIntfNamespace();
    
                    public void 
                    setIntfNamespace(String);
    
                    public String 
                    getImplNamespace();
    
                    public void 
                    setImplNamespace(String);
    
                    public java.util.Vector 
                    getAllowedMethods();
    
                    public void 
                    setAllowedMethods(String);
    
                    public void 
                    setAllowedMethods(java.util.Vector);
    
                    public boolean 
                    getUseInheritedMethods();
    
                    public void 
                    setUseInheritedMethods(boolean);
    
                    public void 
                    setDisallowedMethods(java.util.Vector);
    
                    public void 
                    setDisallowedMethods(String);
    
                    public java.util.Vector 
                    getDisallowedMethods();
    
                    public void 
                    setStopClasses(java.util.ArrayList);
    
                    public void 
                    setStopClasses(String);
    
                    public java.util.ArrayList 
                    getStopClasses();
    
                    public java.util.Map 
                    getNamespaceMap();
    
                    public void 
                    setNamespaceMap(java.util.Map);
    
                    public String 
                    getInputWSDL();
    
                    public void 
                    setInputWSDL(String);
    
                    public String 
                    getInputSchema();
    
                    public void 
                    setInputSchema(String);
    
                    public String 
                    getLocationUrl();
    
                    public void 
                    setLocationUrl(String);
    
                    public String 
                    getImportUrl();
    
                    public void 
                    setImportUrl(String);
    
                    public String 
                    getServicePortName();
    
                    public void 
                    setServicePortName(String);
    
                    public String 
                    getServiceElementName();
    
                    public void 
                    setServiceElementName(String);
    
                    public String 
                    getPortTypeName();
    
                    public void 
                    setPortTypeName(String);
    
                    public String 
                    getBindingName();
    
                    public void 
                    setBindingName(String);
    
                    public String 
                    getTargetService();
    
                    public void 
                    setTargetService(String);
    
                    public String 
                    getDescription();
    
                    public void 
                    setDescription(String);
    
                    public String 
                    getSoapAction();
    
                    public void 
                    setSoapAction(String);
    
                    public org.apache.axis.encoding.TypeMapping 
                    getTypeMapping();
    
                    public void 
                    setTypeMapping(org.apache.axis.encoding.TypeMapping);
    
                    public org.apache.axis.encoding.TypeMapping 
                    getDefaultTypeMapping();
    
                    public void 
                    setDefaultTypeMapping(org.apache.axis.encoding.TypeMapping);
    
                    public void 
                    setTypeMappingRegistry(org.apache.axis.encoding.TypeMappingRegistry);
    
                    public org.apache.axis.constants.Style 
                    getStyle();
    
                    public void 
                    setStyle(String);
    
                    public void 
                    setStyle(org.apache.axis.constants.Style);
    
                    public org.apache.axis.constants.Use 
                    getUse();
    
                    public void 
                    setUse(String);
    
                    public void 
                    setUse(org.apache.axis.constants.Use);
    
                    public void 
                    setMode(int);
    
                    public int 
                    getMode();
    
                    public org.apache.axis.description.ServiceDesc 
                    getServiceDesc();
    
                    public void 
                    setServiceDesc(org.apache.axis.description.ServiceDesc);
    
                    public Class[] 
                    getExtraClasses();
    
                    public void 
                    setExtraClasses(Class[]);
    
                    public void 
                    setExtraClasses(String) 
                    throws ClassNotFoundException;
    
                    public void 
                    setEmitAllTypes(boolean);
    
                    public String 
                    getVersionMessage();
    
                    public void 
                    setVersionMessage(String);
    
                    public java.util.HashMap 
                    getQName2ClassMap();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/wsdl/fromJava/Namespaces.class

                    package org.apache.axis.wsdl.fromJava;

                    public 
                    synchronized 
                    class Namespaces 
                    extends java.util.HashMap {
    
                    private int 
                    prefixCount;
    
                    private java.util.HashMap 
                    namespacePrefixMap;
    
                    public void Namespaces();
    
                    public String 
                    getCreate(String);
    
                    public String 
                    getCreate(String, String);
    
                    public Object 
                    put(Object, Object, String);
    
                    public void 
                    putAll(java.util.Map);
    
                    public String 
                    getCreatePrefix(String);
    
                    public void 
                    putPrefix(String, String);
    
                    public void 
                    putAllPrefix(java.util.Map);
    
                    public 
                    static String 
                    makeNamespace(String);
    
                    public 
                    static String 
                    makeNamespace(String, String);
    
                    public 
                    static String 
                    getPackage(String);
    
                    private 
                    static String 
                    makeNamespaceFromPackageName(String);
    
                    private 
                    static String 
                    makeNamespaceFromPackageName(String, String);
    
                    public java.util.Iterator 
                    getNamespaces();
}

                

org/apache/axis/wsdl/fromJava/Types$1.class

                    package org.apache.axis.wsdl.fromJava;

                    synchronized 
                    class Types$1 
                    extends org.apache.axis.wsdl.symbolTable.BaseTypeMapping {
    void Types$1(Types);
    
                    public String 
                    getBaseName(javax.xml.namespace.QName);
}

                

org/apache/axis/wsdl/fromJava/Types$2.class

                    package org.apache.axis.wsdl.fromJava;

                    synchronized 
                    class Types$2 
                    extends org.apache.axis.wsdl.symbolTable.BaseTypeMapping {
    void Types$2(Types);
    
                    public String 
                    getBaseName(javax.xml.namespace.QName);
}

                

org/apache/axis/wsdl/fromJava/Types.class

                    package org.apache.axis.wsdl.fromJava;

                    public 
                    synchronized 
                    class Types {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    javax.wsdl.Definition 
                    def;
    Namespaces 
                    namespaces;
    org.apache.axis.encoding.TypeMapping 
                    tm;
    org.apache.axis.encoding.TypeMapping 
                    defaultTM;
    String 
                    targetNamespace;
    org.w3c.dom.Element 
                    wsdlTypesElem;
    java.util.HashMap 
                    schemaTypes;
    java.util.HashMap 
                    schemaElementNames;
    java.util.HashMap 
                    schemaUniqueElementNames;
    java.util.HashMap 
                    wrapperMap;
    java.util.List 
                    stopClasses;
    java.util.List 
                    beanCompatErrs;
    
                    private org.apache.axis.description.ServiceDesc 
                    serviceDesc;
    
                    private java.util.Set 
                    writtenElementQNames;
    Class[] 
                    mappedTypes;
    Emitter 
                    emitter;
    org.w3c.dom.Document 
                    docHolder;
    
                    public 
                    static boolean 
                    isArray(Class);
    
                    private 
                    static Class 
                    getComponentType(Class);
    
                    public void Types(javax.wsdl.Definition, org.apache.axis.encoding.TypeMapping, org.apache.axis.encoding.TypeMapping, Namespaces, String, java.util.List, org.apache.axis.description.ServiceDesc);
    
                    public void Types(javax.wsdl.Definition, org.apache.axis.encoding.TypeMapping, org.apache.axis.encoding.TypeMapping, Namespaces, String, java.util.List, org.apache.axis.description.ServiceDesc, Emitter);
    
                    public Namespaces 
                    getNamespaces();
    
                    public void 
                    loadInputSchema(String) 
                    throws java.io.IOException, javax.wsdl.WSDLException, org.xml.sax.SAXException, javax.xml.parsers.ParserConfigurationException;
    
                    private void 
                    processSymTabEntries(org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public void 
                    loadInputTypes(String) 
                    throws java.io.IOException, javax.wsdl.WSDLException, org.xml.sax.SAXException, javax.xml.parsers.ParserConfigurationException;
    
                    public javax.xml.namespace.QName 
                    writeTypeForPart(Class, javax.xml.namespace.QName) 
                    throws org.apache.axis.AxisFault;
    
                    public javax.xml.namespace.QName 
                    writeTypeAndSubTypeForPart(Class, javax.xml.namespace.QName) 
                    throws org.apache.axis.AxisFault;
    
                    public javax.xml.namespace.QName 
                    writeElementForPart(Class, javax.xml.namespace.QName) 
                    throws org.apache.axis.AxisFault;
    
                    public org.w3c.dom.Element 
                    writeWrapperElement(javax.xml.namespace.QName, boolean, boolean) 
                    throws org.apache.axis.AxisFault;
    
                    public void 
                    writeWrappedParameter(org.w3c.dom.Element, String, javax.xml.namespace.QName, Class) 
                    throws org.apache.axis.AxisFault;
    
                    private boolean 
                    isAnonymousType(javax.xml.namespace.QName);
    
                    private javax.xml.namespace.QName 
                    writeTypeAsElement(Class, javax.xml.namespace.QName) 
                    throws org.apache.axis.AxisFault;
    
                    private javax.xml.namespace.QName 
                    writeTypeNamespace(Class, javax.xml.namespace.QName);
    
                    private void 
                    writeTypeNamespace(String);
    
                    public javax.xml.namespace.QName 
                    getTypeQName(Class);
    
                    public String 
                    getQNameString(javax.xml.namespace.QName);
    
                    public 
                    static String 
                    getPackageNameFromFullName(String);
    
                    public 
                    static String 
                    getLocalNameFromFullName(String);
    
                    public void 
                    writeSchemaTypeDecl(javax.xml.namespace.QName, org.w3c.dom.Element) 
                    throws org.apache.axis.AxisFault;
    
                    public void 
                    writeSchemaElementDecl(javax.xml.namespace.QName, org.w3c.dom.Element) 
                    throws org.apache.axis.AxisFault;
    
                    public void 
                    writeSchemaElement(javax.xml.namespace.QName, org.w3c.dom.Element) 
                    throws org.apache.axis.AxisFault;
    
                    public void 
                    writeSchemaElement(String, org.w3c.dom.Element) 
                    throws org.apache.axis.AxisFault;
    
                    private boolean 
                    isPresent(String, String);
    
                    private void 
                    writeWsdlTypesElement();
    
                    public String 
                    writeType(Class) 
                    throws org.apache.axis.AxisFault;
    
                    public String 
                    writeType(Class, javax.xml.namespace.QName) 
                    throws org.apache.axis.AxisFault;
    
                    public org.w3c.dom.Element 
                    createArrayElement(String);
    
                    public org.w3c.dom.Element 
                    createLiteralArrayElement(String, javax.xml.namespace.QName);
    
                    public 
                    static boolean 
                    isEnumClass(Class);
    
                    public org.w3c.dom.Element 
                    writeEnumType(javax.xml.namespace.QName, Class) 
                    throws NoSuchMethodException, IllegalAccessException, org.apache.axis.AxisFault;
    
                    public void 
                    writeElementDecl(javax.xml.namespace.QName, Class, javax.xml.namespace.QName, boolean, javax.xml.namespace.QName) 
                    throws org.apache.axis.AxisFault;
    
                    public org.w3c.dom.Element 
                    createElement(String, String, boolean, boolean, org.w3c.dom.Document);
    
                    public org.w3c.dom.Element 
                    createAttributeElement(String, Class, javax.xml.namespace.QName, boolean, org.w3c.dom.Document) 
                    throws org.apache.axis.AxisFault;
    boolean 
                    isSimpleType(Class);
    
                    public boolean 
                    isAcceptableAsAttribute(Class);
    boolean 
                    implementsSimpleType(Class);
    
                    private boolean 
                    addToTypesList(javax.xml.namespace.QName);
    
                    private boolean 
                    addToElementsList(javax.xml.namespace.QName);
    
                    public 
                    static boolean 
                    isNullable(Class);
    
                    private void 
                    createDocumentFragment();
    
                    public void 
                    updateNamespaces();
    
                    public void 
                    insertTypesFragment(org.w3c.dom.Document);
    
                    public java.util.List 
                    getStopClasses();
    
                    public org.w3c.dom.Element 
                    createElement(String);
    
                    protected boolean 
                    isBeanCompatible(Class, boolean);
    
                    public org.w3c.dom.Element 
                    createElementWithAnonymousType(String, Class, boolean, org.w3c.dom.Document) 
                    throws org.apache.axis.AxisFault;
    
                    private boolean 
                    makeTypeElement(Class, javax.xml.namespace.QName, org.w3c.dom.Element) 
                    throws org.apache.axis.AxisFault;
    
                    public org.apache.axis.description.ServiceDesc 
                    getServiceDesc();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/wsdl/gen/Generator.class

                    package org.apache.axis.wsdl.gen;

                    public 
                    abstract 
                    interface Generator {
    
                    public 
                    abstract void 
                    generate() 
                    throws java.io.IOException;
}

                

org/apache/axis/wsdl/gen/GeneratorFactory.class

                    package org.apache.axis.wsdl.gen;

                    public 
                    abstract 
                    interface GeneratorFactory {
    
                    public 
                    abstract void 
                    generatorPass(javax.wsdl.Definition, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public 
                    abstract Generator 
                    getGenerator(javax.wsdl.Message, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public 
                    abstract Generator 
                    getGenerator(javax.wsdl.PortType, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public 
                    abstract Generator 
                    getGenerator(javax.wsdl.Binding, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public 
                    abstract Generator 
                    getGenerator(javax.wsdl.Service, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public 
                    abstract Generator 
                    getGenerator(org.apache.axis.wsdl.symbolTable.TypeEntry, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public 
                    abstract Generator 
                    getGenerator(javax.wsdl.Definition, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public 
                    abstract void 
                    setBaseTypeMapping(org.apache.axis.wsdl.symbolTable.BaseTypeMapping);
    
                    public 
                    abstract org.apache.axis.wsdl.symbolTable.BaseTypeMapping 
                    getBaseTypeMapping();
}

                

org/apache/axis/wsdl/gen/NoopFactory$1.class

                    package org.apache.axis.wsdl.gen;

                    synchronized 
                    class NoopFactory$1 
                    extends org.apache.axis.wsdl.symbolTable.BaseTypeMapping {
    org.apache.axis.encoding.TypeMapping 
                    defaultTM;
    void NoopFactory$1(NoopFactory);
    
                    public String 
                    getBaseName(javax.xml.namespace.QName);
}

                

org/apache/axis/wsdl/gen/NoopFactory.class

                    package org.apache.axis.wsdl.gen;

                    public 
                    synchronized 
                    class NoopFactory 
                    implements GeneratorFactory {
    
                    private org.apache.axis.wsdl.symbolTable.BaseTypeMapping 
                    btm;
    
                    public void NoopFactory();
    
                    public void 
                    generatorPass(javax.wsdl.Definition, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public Generator 
                    getGenerator(javax.wsdl.Message, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public Generator 
                    getGenerator(javax.wsdl.PortType, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public Generator 
                    getGenerator(javax.wsdl.Binding, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public Generator 
                    getGenerator(javax.wsdl.Service, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public Generator 
                    getGenerator(org.apache.axis.wsdl.symbolTable.TypeEntry, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public Generator 
                    getGenerator(javax.wsdl.Definition, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public void 
                    setBaseTypeMapping(org.apache.axis.wsdl.symbolTable.BaseTypeMapping);
    
                    public org.apache.axis.wsdl.symbolTable.BaseTypeMapping 
                    getBaseTypeMapping();
}

                

org/apache/axis/wsdl/gen/NoopGenerator.class

                    package org.apache.axis.wsdl.gen;

                    public 
                    synchronized 
                    class NoopGenerator 
                    implements Generator {
    
                    public void NoopGenerator();
    
                    public void 
                    generate() 
                    throws java.io.IOException;
}

                

org/apache/axis/wsdl/gen/Parser$WSDLRunnable.class

                    package org.apache.axis.wsdl.gen;

                    synchronized 
                    class Parser$WSDLRunnable 
                    implements Runnable {
    
                    private org.apache.axis.wsdl.symbolTable.SymbolTable 
                    symbolTable;
    
                    private String 
                    wsdlURI;
    
                    private Exception 
                    failure;
    
                    public void Parser$WSDLRunnable(Parser, org.apache.axis.wsdl.symbolTable.SymbolTable, String);
    
                    public void 
                    run();
    
                    public Exception 
                    getFailure();
}

                

org/apache/axis/wsdl/gen/Parser.class

                    package org.apache.axis.wsdl.gen;

                    public 
                    synchronized 
                    class Parser {
    
                    protected boolean 
                    debug;
    
                    protected boolean 
                    quiet;
    
                    protected boolean 
                    imports;
    
                    protected boolean 
                    verbose;
    
                    protected boolean 
                    nowrap;
    
                    protected String 
                    username;
    
                    protected String 
                    password;
    
                    protected boolean 
                    wrapArrays;
    
                    private long 
                    timeoutms;
    
                    private GeneratorFactory 
                    genFactory;
    
                    private org.apache.axis.wsdl.symbolTable.SymbolTable 
                    symbolTable;
    
                    public void Parser();
    
                    public boolean 
                    isDebug();
    
                    public void 
                    setDebug(boolean);
    
                    public boolean 
                    isQuiet();
    
                    public void 
                    setQuiet(boolean);
    
                    public boolean 
                    isImports();
    
                    public void 
                    setImports(boolean);
    
                    public boolean 
                    isVerbose();
    
                    public void 
                    setVerbose(boolean);
    
                    public boolean 
                    isNowrap();
    
                    public void 
                    setNowrap(boolean);
    
                    public long 
                    getTimeout();
    
                    public void 
                    setTimeout(long);
    
                    public String 
                    getUsername();
    
                    public void 
                    setUsername(String);
    
                    public String 
                    getPassword();
    
                    public void 
                    setPassword(String);
    
                    public GeneratorFactory 
                    getFactory();
    
                    public void 
                    setFactory(GeneratorFactory);
    
                    public org.apache.axis.wsdl.symbolTable.SymbolTable 
                    getSymbolTable();
    
                    public javax.wsdl.Definition 
                    getCurrentDefinition();
    
                    public String 
                    getWSDLURI();
    
                    public void 
                    run(String) 
                    throws Exception;
    
                    public void 
                    run(String, org.w3c.dom.Document) 
                    throws java.io.IOException, org.xml.sax.SAXException, javax.wsdl.WSDLException, javax.xml.parsers.ParserConfigurationException;
    
                    protected void 
                    sanityCheck(org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    private void 
                    generate(org.apache.axis.wsdl.symbolTable.SymbolTable) 
                    throws java.io.IOException;
    
                    private void 
                    generateTypes(org.apache.axis.wsdl.symbolTable.SymbolTable) 
                    throws java.io.IOException;
}

                

org/apache/axis/wsdl/gen/WSDL2.class

                    package org.apache.axis.wsdl.gen;

                    public 
                    synchronized 
                    class WSDL2 {
    
                    protected 
                    static 
                    final int 
                    DEBUG_OPT = 68;
    
                    protected 
                    static 
                    final int 
                    HELP_OPT = 104;
    
                    protected 
                    static 
                    final int 
                    NETWORK_TIMEOUT_OPT = 79;
    
                    protected 
                    static 
                    final int 
                    NOIMPORTS_OPT = 110;
    
                    protected 
                    static 
                    final int 
                    VERBOSE_OPT = 118;
    
                    protected 
                    static 
                    final int 
                    NOWRAP_OPT = 87;
    
                    protected 
                    static 
                    final int 
                    QUIET_OPT = 113;
    
                    protected org.apache.axis.utils.CLOptionDescriptor[] 
                    options;
    
                    protected String 
                    wsdlURI;
    
                    protected Parser 
                    parser;
    
                    protected void WSDL2();
    
                    protected Parser 
                    createParser();
    
                    protected Parser 
                    getParser();
    
                    protected void 
                    addOptions(org.apache.axis.utils.CLOptionDescriptor[]);
    
                    protected void 
                    removeOption(String);
    
                    protected void 
                    parseOption(org.apache.axis.utils.CLOption);
    
                    protected void 
                    validateOptions();
    
                    private void 
                    checkForAuthInfo(String);
    
                    protected void 
                    printUsage();
    
                    protected void 
                    run(String[]);
    
                    public 
                    static void 
                    main(String[]);
}

                

org/apache/axis/wsdl/symbolTable/BackslashUtil.class

                    package org.apache.axis.wsdl.symbolTable;

                    public 
                    synchronized 
                    class BackslashUtil 
                    implements java.io.Serializable {
    
                    public void BackslashUtil();
    
                    public 
                    static javax.xml.namespace.QName 
                    getQNameWithBackslashlessLocal(javax.xml.namespace.QName);
    
                    public 
                    static javax.xml.namespace.QName 
                    getQNameWithBackslashedLocal(javax.xml.namespace.QName);
    
                    public 
                    static javax.xml.namespace.QName 
                    getQNameWithDifferentLocal(javax.xml.namespace.QName, String);
    
                    public 
                    static String 
                    applyBackslashes(String);
    
                    public 
                    static String 
                    stripBackslashes(String);
    
                    public 
                    static String 
                    transformBackslashes(String, boolean);
}

                

org/apache/axis/wsdl/symbolTable/BaseType.class

                    package org.apache.axis.wsdl.symbolTable;

                    public 
                    synchronized 
                    class BaseType 
                    extends Type {
    
                    public void BaseType(javax.xml.namespace.QName);
}

                

org/apache/axis/wsdl/symbolTable/BaseTypeMapping.class

                    package org.apache.axis.wsdl.symbolTable;

                    public 
                    abstract 
                    synchronized 
                    class BaseTypeMapping {
    
                    public void BaseTypeMapping();
    
                    public 
                    abstract String 
                    getBaseName(javax.xml.namespace.QName);
}

                

org/apache/axis/wsdl/symbolTable/BindingEntry$OperationAttr.class

                    package org.apache.axis.wsdl.symbolTable;

                    public 
                    synchronized 
                    class BindingEntry$OperationAttr {
    
                    private org.apache.axis.constants.Use 
                    inputBodyType;
    
                    private org.apache.axis.constants.Use 
                    outputBodyType;
    
                    private java.util.HashMap 
                    faultBodyTypeMap;
    
                    public void BindingEntry$OperationAttr(org.apache.axis.constants.Use, org.apache.axis.constants.Use, java.util.HashMap);
    
                    public void BindingEntry$OperationAttr();
    
                    public org.apache.axis.constants.Use 
                    getInputBodyType();
    
                    protected void 
                    setInputBodyType(org.apache.axis.constants.Use);
    
                    public org.apache.axis.constants.Use 
                    getOutputBodyType();
    
                    protected void 
                    setOutputBodyType(org.apache.axis.constants.Use);
    
                    public java.util.HashMap 
                    getFaultBodyTypeMap();
    
                    protected void 
                    setFaultBodyTypeMap(java.util.HashMap);
}

                

org/apache/axis/wsdl/symbolTable/BindingEntry.class

                    package org.apache.axis.wsdl.symbolTable;

                    public 
                    synchronized 
                    class BindingEntry 
                    extends SymTabEntry {
    
                    public 
                    static 
                    final int 
                    TYPE_SOAP = 0;
    
                    public 
                    static 
                    final int 
                    TYPE_HTTP_GET = 1;
    
                    public 
                    static 
                    final int 
                    TYPE_HTTP_POST = 2;
    
                    public 
                    static 
                    final int 
                    TYPE_UNKNOWN = 3;
    
                    public 
                    static 
                    final int 
                    USE_ENCODED = 0;
    
                    public 
                    static 
                    final int 
                    USE_LITERAL = 1;
    
                    private javax.wsdl.Binding 
                    binding;
    
                    private int 
                    bindingType;
    
                    private org.apache.axis.constants.Style 
                    bindingStyle;
    
                    private boolean 
                    hasLiteral;
    
                    private java.util.HashMap 
                    attributes;
    
                    private java.util.HashMap 
                    parameters;
    
                    private java.util.HashMap 
                    faults;
    
                    private java.util.Map 
                    mimeTypes;
    
                    private java.util.Map 
                    headerParts;
    
                    private java.util.ArrayList 
                    dimeOps;
    
                    public 
                    static 
                    final int 
                    NO_HEADER = 0;
    
                    public 
                    static 
                    final int 
                    IN_HEADER = 1;
    
                    public 
                    static 
                    final int 
                    OUT_HEADER = 2;
    
                    public void BindingEntry(javax.wsdl.Binding, int, org.apache.axis.constants.Style, boolean, java.util.HashMap, java.util.Map, java.util.Map);
    
                    public void BindingEntry(javax.wsdl.Binding);
    
                    public Parameters 
                    getParameters(javax.wsdl.Operation);
    
                    public java.util.HashMap 
                    getParameters();
    
                    public void 
                    setParameters(java.util.HashMap);
    
                    public MimeInfo 
                    getMIMEInfo(String, String);
    
                    public java.util.Map 
                    getMIMETypes();
    
                    public void 
                    setMIMEInfo(String, String, String, String);
    
                    public void 
                    setOperationDIME(String);
    
                    public boolean 
                    isOperationDIME(String);
    
                    public boolean 
                    isInHeaderPart(String, String);
    
                    public boolean 
                    isOutHeaderPart(String, String);
    
                    private int 
                    headerPart(String, String);
    
                    public java.util.Map 
                    getHeaderParts();
    
                    public void 
                    setHeaderPart(String, String, int);
    
                    public javax.wsdl.Binding 
                    getBinding();
    
                    public int 
                    getBindingType();
    
                    protected void 
                    setBindingType(int);
    
                    public org.apache.axis.constants.Style 
                    getBindingStyle();
    
                    protected void 
                    setBindingStyle(org.apache.axis.constants.Style);
    
                    public boolean 
                    hasLiteral();
    
                    protected void 
                    setHasLiteral(boolean);
    
                    public org.apache.axis.constants.Use 
                    getInputBodyType(javax.wsdl.Operation);
    
                    protected void 
                    setInputBodyType(javax.wsdl.Operation, org.apache.axis.constants.Use);
    
                    public org.apache.axis.constants.Use 
                    getOutputBodyType(javax.wsdl.Operation);
    
                    protected void 
                    setOutputBodyType(javax.wsdl.Operation, org.apache.axis.constants.Use);
    
                    protected void 
                    setBodyType(javax.wsdl.Operation, org.apache.axis.constants.Use, boolean);
    
                    public org.apache.axis.constants.Use 
                    getFaultBodyType(javax.wsdl.Operation, String);
    
                    public java.util.HashMap 
                    getFaults();
    
                    public void 
                    setFaults(java.util.HashMap);
    
                    public java.util.Set 
                    getOperations();
    
                    protected void 
                    setFaultBodyTypeMap(javax.wsdl.Operation, java.util.HashMap);
}

                

org/apache/axis/wsdl/symbolTable/CollectionElement.class

                    package org.apache.axis.wsdl.symbolTable;

                    public 
                    synchronized 
                    class CollectionElement 
                    extends DefinedElement 
                    implements CollectionTE {
    
                    public void CollectionElement(javax.xml.namespace.QName, TypeEntry, org.w3c.dom.Node, String);
}

                

org/apache/axis/wsdl/symbolTable/CollectionTE.class

                    package org.apache.axis.wsdl.symbolTable;

                    public 
                    abstract 
                    interface CollectionTE {
}

                

org/apache/axis/wsdl/symbolTable/CollectionType.class

                    package org.apache.axis.wsdl.symbolTable;

                    public 
                    synchronized 
                    class CollectionType 
                    extends DefinedType 
                    implements CollectionTE {
    
                    private boolean 
                    wrapped;
    
                    public void CollectionType(javax.xml.namespace.QName, TypeEntry, org.w3c.dom.Node, String, boolean);
    
                    public boolean 
                    isWrapped();
}

                

org/apache/axis/wsdl/symbolTable/ContainedAttribute.class

                    package org.apache.axis.wsdl.symbolTable;

                    public 
                    synchronized 
                    class ContainedAttribute 
                    extends ContainedEntry {
    
                    private boolean 
                    optional;
    
                    protected void ContainedAttribute(TypeEntry, javax.xml.namespace.QName);
    
                    public void 
                    setOptional(boolean);
    
                    public boolean 
                    getOptional();
}

                

org/apache/axis/wsdl/symbolTable/ContainedEntry.class

                    package org.apache.axis.wsdl.symbolTable;

                    public 
                    synchronized 
                    class ContainedEntry 
                    extends SymTabEntry {
    
                    protected TypeEntry 
                    type;
    
                    protected void ContainedEntry(TypeEntry, javax.xml.namespace.QName);
    
                    public TypeEntry 
                    getType();
    
                    public void 
                    setType(TypeEntry);
}

                

org/apache/axis/wsdl/symbolTable/DefinedElement.class

                    package org.apache.axis.wsdl.symbolTable;

                    public 
                    synchronized 
                    class DefinedElement 
                    extends Element {
    
                    public void DefinedElement(javax.xml.namespace.QName, TypeEntry, org.w3c.dom.Node, String);
    
                    public void DefinedElement(javax.xml.namespace.QName, org.w3c.dom.Node);
}

                

org/apache/axis/wsdl/symbolTable/DefinedType.class

                    package org.apache.axis.wsdl.symbolTable;

                    public 
                    synchronized 
                    class DefinedType 
                    extends Type {
    
                    protected TypeEntry 
                    extensionBase;
    
                    protected boolean 
                    searchedForExtensionBase;
    
                    public void DefinedType(javax.xml.namespace.QName, org.w3c.dom.Node);
    
                    public void DefinedType(javax.xml.namespace.QName, TypeEntry, org.w3c.dom.Node, String);
    
                    public TypeEntry 
                    getComplexTypeExtensionBase(SymbolTable);
}

                

org/apache/axis/wsdl/symbolTable/Element.class

                    package org.apache.axis.wsdl.symbolTable;

                    public 
                    abstract 
                    synchronized 
                    class Element 
                    extends TypeEntry {
    
                    protected void Element(javax.xml.namespace.QName, TypeEntry, org.w3c.dom.Node, String);
    
                    protected void Element(javax.xml.namespace.QName, org.w3c.dom.Node);
}

                

org/apache/axis/wsdl/symbolTable/ElementDecl.class

                    package org.apache.axis.wsdl.symbolTable;

                    public 
                    synchronized 
                    class ElementDecl 
                    extends ContainedEntry {
    
                    private String 
                    documentation;
    
                    private boolean 
                    minOccursIs0;
    
                    private boolean 
                    nillable;
    
                    private boolean 
                    optional;
    
                    private boolean 
                    anyElement;
    
                    private boolean 
                    maxOccursIsUnbounded;
    
                    private boolean 
                    maxOccursExactOne;
    
                    public void ElementDecl(TypeEntry, javax.xml.namespace.QName);
    
                    public boolean 
                    getMinOccursIs0();
    
                    public void 
                    setMinOccursIs0(boolean);
    
                    public boolean 
                    getMaxOccursIsUnbounded();
    
                    public void 
                    setMaxOccursIsUnbounded(boolean);
    
                    public boolean 
                    getMaxOccursIsExactlyOne();
    
                    public void 
                    setMaxOccursIsExactlyOne(boolean);
    
                    public void 
                    setNillable(boolean);
    
                    public boolean 
                    getNillable();
    
                    public void 
                    setOptional(boolean);
    
                    public boolean 
                    getOptional();
    
                    public boolean 
                    getAnyElement();
    
                    public void 
                    setAnyElement(boolean);
    
                    public String 
                    getDocumentation();
    
                    public void 
                    setDocumentation(String);
}

                

org/apache/axis/wsdl/symbolTable/FaultInfo.class

                    package org.apache.axis.wsdl.symbolTable;

                    public 
                    synchronized 
                    class FaultInfo {
    
                    private javax.wsdl.Message 
                    message;
    
                    private javax.xml.namespace.QName 
                    xmlType;
    
                    private org.apache.axis.constants.Use 
                    use;
    
                    private javax.xml.namespace.QName 
                    qName;
    
                    private String 
                    name;
    
                    public void FaultInfo(javax.wsdl.Fault, org.apache.axis.constants.Use, String, SymbolTable);
    
                    public void FaultInfo(javax.wsdl.extensions.soap.SOAPHeaderFault, SymbolTable) 
                    throws java.io.IOException;
    
                    public void FaultInfo(javax.xml.namespace.QName, String, String, String, SymbolTable) 
                    throws java.io.IOException;
    
                    public javax.wsdl.Message 
                    getMessage();
    
                    public javax.xml.namespace.QName 
                    getXMLType();
    
                    public org.apache.axis.constants.Use 
                    getUse();
    
                    public javax.xml.namespace.QName 
                    getQName();
    
                    public String 
                    getName();
    
                    private javax.wsdl.Part 
                    getFaultPart();
    
                    private javax.xml.namespace.QName 
                    getFaultType(SymbolTable, javax.wsdl.Part);
}

                

org/apache/axis/wsdl/symbolTable/MessageEntry.class

                    package org.apache.axis.wsdl.symbolTable;

                    public 
                    synchronized 
                    class MessageEntry 
                    extends SymTabEntry {
    
                    private javax.wsdl.Message 
                    message;
    
                    public void MessageEntry(javax.wsdl.Message);
    
                    public javax.wsdl.Message 
                    getMessage();
}

                

org/apache/axis/wsdl/symbolTable/MimeInfo.class

                    package org.apache.axis.wsdl.symbolTable;

                    public 
                    synchronized 
                    class MimeInfo {
    String 
                    type;
    String 
                    dims;
    
                    public void MimeInfo(String, String);
    
                    public String 
                    getDimensions();
    
                    public String 
                    getType();
    
                    public String 
                    toString();
}

                

org/apache/axis/wsdl/symbolTable/Parameter.class

                    package org.apache.axis.wsdl.symbolTable;

                    public 
                    synchronized 
                    class Parameter {
    
                    public 
                    static 
                    final byte 
                    IN = 1;
    
                    public 
                    static 
                    final byte 
                    OUT = 2;
    
                    public 
                    static 
                    final byte 
                    INOUT = 3;
    
                    private javax.xml.namespace.QName 
                    qname;
    
                    private String 
                    name;
    
                    private MimeInfo 
                    mimeInfo;
    
                    private TypeEntry 
                    type;
    
                    private byte 
                    mode;
    
                    private boolean 
                    inHeader;
    
                    private boolean 
                    outHeader;
    
                    private boolean 
                    omittable;
    
                    private boolean 
                    nillable;
    
                    public void Parameter();
    
                    public String 
                    toString();
    
                    public javax.xml.namespace.QName 
                    getQName();
    
                    public String 
                    getName();
    
                    public void 
                    setName(String);
    
                    public void 
                    setQName(javax.xml.namespace.QName);
    
                    public MimeInfo 
                    getMIMEInfo();
    
                    public void 
                    setMIMEInfo(MimeInfo);
    
                    public TypeEntry 
                    getType();
    
                    public void 
                    setType(TypeEntry);
    
                    public byte 
                    getMode();
    
                    public void 
                    setMode(byte);
    
                    public boolean 
                    isInHeader();
    
                    public void 
                    setInHeader(boolean);
    
                    public boolean 
                    isOutHeader();
    
                    public void 
                    setOutHeader(boolean);
    
                    public boolean 
                    isOmittable();
    
                    public void 
                    setOmittable(boolean);
    
                    public boolean 
                    isNillable();
    
                    public void 
                    setNillable(boolean);
}

                

org/apache/axis/wsdl/symbolTable/Parameters.class

                    package org.apache.axis.wsdl.symbolTable;

                    public 
                    synchronized 
                    class Parameters {
    
                    public javax.wsdl.OperationType 
                    mep;
    
                    public java.util.Vector 
                    list;
    
                    public Parameter 
                    returnParam;
    
                    public java.util.Map 
                    faults;
    
                    public String 
                    signature;
    
                    public int 
                    inputs;
    
                    public int 
                    inouts;
    
                    public int 
                    outputs;
    
                    public void Parameters();
    
                    public String 
                    toString();
}

                

org/apache/axis/wsdl/symbolTable/PortEntry.class

                    package org.apache.axis.wsdl.symbolTable;

                    public 
                    synchronized 
                    class PortEntry 
                    extends SymTabEntry {
    
                    private javax.wsdl.Port 
                    port;
    
                    public void PortEntry(javax.wsdl.Port);
    
                    public javax.wsdl.Port 
                    getPort();
}

                

org/apache/axis/wsdl/symbolTable/PortTypeEntry.class

                    package org.apache.axis.wsdl.symbolTable;

                    public 
                    synchronized 
                    class PortTypeEntry 
                    extends SymTabEntry {
    
                    private javax.wsdl.PortType 
                    portType;
    
                    public void PortTypeEntry(javax.wsdl.PortType);
    
                    public javax.wsdl.PortType 
                    getPortType();
}

                

org/apache/axis/wsdl/symbolTable/SchemaUtils.class

                    package org.apache.axis.wsdl.symbolTable;

                    public 
                    synchronized 
                    class SchemaUtils {
    
                    static 
                    final javax.xml.namespace.QName 
                    VALUE_QNAME;
    
                    private 
                    static String[] 
                    schemaTypes;
    
                    private 
                    static 
                    final java.util.Set 
                    schemaTypeSet;
    
                    public void SchemaUtils();
    
                    public 
                    static boolean 
                    isMixed(org.w3c.dom.Node);
    
                    public 
                    static org.w3c.dom.Node 
                    getUnionNode(org.w3c.dom.Node);
    
                    public 
                    static org.w3c.dom.Node 
                    getListNode(org.w3c.dom.Node);
    
                    public 
                    static boolean 
                    isSimpleTypeWithUnion(org.w3c.dom.Node);
    
                    public 
                    static boolean 
                    isWrappedType(org.w3c.dom.Node);
    
                    public 
                    static java.util.Vector 
                    getContainedElementDeclarations(org.w3c.dom.Node, SymbolTable);
    
                    private 
                    static java.util.Vector 
                    processChoiceNode(org.w3c.dom.Node, SymbolTable);
    
                    private 
                    static org.w3c.dom.Node 
                    getChildByName(org.w3c.dom.Node, String) 
                    throws org.w3c.dom.DOMException;
    
                    public 
                    static String 
                    getTextByPath(org.w3c.dom.Node, String) 
                    throws org.w3c.dom.DOMException;
    
                    public 
                    static String 
                    getAnnotationDocumentation(org.w3c.dom.Node);
    
                    private 
                    static java.util.Vector 
                    processSequenceNode(org.w3c.dom.Node, SymbolTable);
    
                    private 
                    static java.util.Vector 
                    processGroupNode(org.w3c.dom.Node, SymbolTable);
    
                    private 
                    static java.util.Vector 
                    processAllNode(org.w3c.dom.Node, SymbolTable);
    
                    private 
                    static ElementDecl 
                    processChildElementNode(org.w3c.dom.Node, SymbolTable);
    
                    public 
                    static javax.xml.namespace.QName 
                    getElementAnonQName(org.w3c.dom.Node);
    
                    public 
                    static javax.xml.namespace.QName 
                    getAttributeAnonQName(org.w3c.dom.Node);
    
                    public 
                    static boolean 
                    isSimpleTypeOrSimpleContent(org.w3c.dom.Node);
    
                    private 
                    static boolean 
                    isXSDNode(org.w3c.dom.Node, String);
    
                    public 
                    static TypeEntry 
                    getComplexElementRestrictionBase(org.w3c.dom.Node, SymbolTable);
    
                    public 
                    static TypeEntry 
                    getComplexElementExtensionBase(org.w3c.dom.Node, SymbolTable);
    
                    public 
                    static javax.xml.namespace.QName 
                    getSimpleTypeBase(org.w3c.dom.Node);
    
                    public 
                    static javax.xml.namespace.QName[] 
                    getContainedSimpleTypes(org.w3c.dom.Node);
    
                    public 
                    static org.w3c.dom.Node 
                    getRestrictionOrExtensionNode(org.w3c.dom.Node);
    
                    public 
                    static javax.xml.namespace.QName 
                    getArrayComponentQName(org.w3c.dom.Node, javax.xml.rpc.holders.IntHolder, javax.xml.rpc.holders.BooleanHolder, javax.xml.rpc.holders.QNameHolder, javax.xml.rpc.holders.BooleanHolder, SymbolTable);
    
                    public 
                    static javax.xml.namespace.QName 
                    getCollectionComponentQName(org.w3c.dom.Node, javax.xml.rpc.holders.QNameHolder, javax.xml.rpc.holders.BooleanHolder, SymbolTable);
    
                    private 
                    static javax.xml.namespace.QName 
                    getArrayComponentQName_JAXRPC(org.w3c.dom.Node, javax.xml.rpc.holders.IntHolder, javax.xml.rpc.holders.BooleanHolder, SymbolTable);
    
                    private 
                    static void 
                    addAttributeToVector(java.util.Vector, org.w3c.dom.Node, SymbolTable);
    
                    private 
                    static void 
                    addAttributeToVector(java.util.Vector, SymbolTable, javax.xml.namespace.QName, javax.xml.namespace.QName);
    
                    private 
                    static void 
                    addAttributeGroupToVector(java.util.Vector, org.w3c.dom.Node, SymbolTable);
    
                    public 
                    static java.util.Vector 
                    getContainedAttributeTypes(org.w3c.dom.Node, SymbolTable);
    
                    private 
                    static boolean 
                    isSimpleSchemaType(String);
    
                    public 
                    static boolean 
                    isSimpleSchemaType(javax.xml.namespace.QName);
    
                    public 
                    static TypeEntry 
                    getBaseType(TypeEntry, SymbolTable);
    
                    public 
                    static boolean 
                    isListWithItemType(org.w3c.dom.Node);
    
                    public 
                    static javax.xml.namespace.QName 
                    getListItemType(org.w3c.dom.Node);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/wsdl/symbolTable/ServiceEntry.class

                    package org.apache.axis.wsdl.symbolTable;

                    public 
                    synchronized 
                    class ServiceEntry 
                    extends SymTabEntry {
    
                    private javax.wsdl.Service 
                    service;
    
                    private String 
                    originalServiceName;
    
                    public void ServiceEntry(javax.wsdl.Service);
    
                    public String 
                    getOriginalServiceName();
    
                    public void 
                    setOriginalServiceName(String);
    
                    public javax.wsdl.Service 
                    getService();
}

                

org/apache/axis/wsdl/symbolTable/SymTabEntry.class

                    package org.apache.axis.wsdl.symbolTable;

                    public 
                    abstract 
                    synchronized 
                    class SymTabEntry {
    
                    protected javax.xml.namespace.QName 
                    qname;
    
                    protected String 
                    name;
    
                    private boolean 
                    isReferenced;
    
                    private java.util.HashMap 
                    dynamicVars;
    
                    protected void SymTabEntry(javax.xml.namespace.QName);
    
                    public 
                    final javax.xml.namespace.QName 
                    getQName();
    
                    public String 
                    getName();
    
                    public void 
                    setName(String);
    
                    public 
                    final boolean 
                    isReferenced();
    
                    public 
                    final void 
                    setIsReferenced(boolean);
    
                    public Object 
                    getDynamicVar(Object);
    
                    public void 
                    setDynamicVar(Object, Object);
    
                    public String 
                    toString();
    
                    protected String 
                    toString(String);
}

                

org/apache/axis/wsdl/symbolTable/SymbolTable.class

                    package org.apache.axis.wsdl.symbolTable;

                    public 
                    synchronized 
                    class SymbolTable {
    
                    protected java.util.HashMap 
                    derivedTypes;
    
                    private boolean 
                    addImports;
    
                    private java.util.HashMap 
                    symbolTable;
    
                    private 
                    final java.util.Map 
                    elementTypeEntries;
    
                    private 
                    final java.util.Map 
                    elementIndex;
    
                    private 
                    final java.util.Map 
                    typeTypeEntries;
    
                    private 
                    final java.util.Map 
                    typeIndex;
    
                    protected 
                    final java.util.Map 
                    node2ExtensionBase;
    
                    private boolean 
                    verbose;
    
                    protected boolean 
                    quiet;
    
                    private BaseTypeMapping 
                    btm;
    
                    private boolean 
                    nowrap;
    
                    private boolean 
                    wrapped;
    
                    public 
                    static 
                    final String 
                    ANON_TOKEN = >;
    
                    private javax.wsdl.Definition 
                    def;
    
                    private String 
                    wsdlURI;
    
                    private boolean 
                    wrapArrays;
    java.util.Set 
                    arrayTypeQNames;
    
                    private 
                    final java.util.Map 
                    elementFormDefaults;
    
                    private org.apache.axis.utils.URLHashSet 
                    importedFiles;
    
                    private 
                    static 
                    final int 
                    ABOVE_SCHEMA_LEVEL = -1;
    
                    private 
                    static 
                    final int 
                    SCHEMA_LEVEL = 0;
    
                    public void SymbolTable(BaseTypeMapping, boolean, boolean, boolean);
    
                    public boolean 
                    isQuiet();
    
                    public void 
                    setQuiet(boolean);
    
                    public java.util.HashMap 
                    getHashMap();
    
                    public java.util.Vector 
                    getSymbols(javax.xml.namespace.QName);
    
                    public SymTabEntry 
                    get(javax.xml.namespace.QName, Class);
    
                    public TypeEntry 
                    getTypeEntry(javax.xml.namespace.QName, boolean);
    
                    public Type 
                    getType(javax.xml.namespace.QName);
    
                    public Element 
                    getElement(javax.xml.namespace.QName);
    
                    public MessageEntry 
                    getMessageEntry(javax.xml.namespace.QName);
    
                    public PortTypeEntry 
                    getPortTypeEntry(javax.xml.namespace.QName);
    
                    public BindingEntry 
                    getBindingEntry(javax.xml.namespace.QName);
    
                    public ServiceEntry 
                    getServiceEntry(javax.xml.namespace.QName);
    
                    public java.util.Vector 
                    getTypes();
    
                    public java.util.Map 
                    getElementIndex();
    
                    public java.util.Map 
                    getTypeIndex();
    
                    public int 
                    getTypeEntryCount();
    
                    public javax.wsdl.Definition 
                    getDefinition();
    
                    public String 
                    getWSDLURI();
    
                    public boolean 
                    isWrapped();
    
                    public void 
                    setWrapped(boolean);
    
                    public void 
                    dump(java.io.PrintStream);
    
                    public void 
                    populate(String) 
                    throws java.io.IOException, javax.wsdl.WSDLException, org.xml.sax.SAXException, javax.xml.parsers.ParserConfigurationException;
    
                    public void 
                    populate(String, String, String) 
                    throws java.io.IOException, javax.wsdl.WSDLException, org.xml.sax.SAXException, javax.xml.parsers.ParserConfigurationException;
    
                    public void 
                    populate(String, org.w3c.dom.Document) 
                    throws java.io.IOException, org.xml.sax.SAXException, javax.wsdl.WSDLException, javax.xml.parsers.ParserConfigurationException;
    
                    protected void 
                    add(String, javax.wsdl.Definition, org.w3c.dom.Document) 
                    throws java.io.IOException, org.xml.sax.SAXException, javax.wsdl.WSDLException, javax.xml.parsers.ParserConfigurationException;
    
                    private void 
                    checkForUndefined(javax.wsdl.Definition, String) 
                    throws java.io.IOException;
    
                    private void 
                    checkForUndefined() 
                    throws java.io.IOException;
    
                    private void 
                    populate(java.net.URL, javax.wsdl.Definition, org.w3c.dom.Document, String) 
                    throws java.io.IOException, javax.xml.parsers.ParserConfigurationException, org.xml.sax.SAXException, javax.wsdl.WSDLException;
    
                    private 
                    static java.net.URL 
                    getURL(java.net.URL, String) 
                    throws java.io.IOException;
    
                    private 
                    static java.net.URL 
                    getFileURL(java.net.URL, String) 
                    throws java.io.IOException;
    
                    private void 
                    lookForImports(java.net.URL, org.w3c.dom.Node) 
                    throws java.io.IOException, javax.xml.parsers.ParserConfigurationException, org.xml.sax.SAXException, javax.wsdl.WSDLException;
    
                    public boolean 
                    isKnownNamespace(String);
    
                    public void 
                    populateTypes(java.net.URL, org.w3c.dom.Document) 
                    throws java.io.IOException, org.xml.sax.SAXException, javax.wsdl.WSDLException, javax.xml.parsers.ParserConfigurationException;
    
                    private void 
                    addTypes(java.net.URL, org.w3c.dom.Node, int) 
                    throws java.io.IOException, javax.xml.parsers.ParserConfigurationException, javax.wsdl.WSDLException, org.xml.sax.SAXException;
    
                    private void 
                    createTypeFromDef(org.w3c.dom.Node, boolean, boolean) 
                    throws java.io.IOException;
    
                    protected void 
                    createTypeFromRef(org.w3c.dom.Node) 
                    throws java.io.IOException;
    
                    private void 
                    populateMessages(javax.wsdl.Definition) 
                    throws java.io.IOException;
    
                    protected void 
                    ensureOperationMessageValid(javax.wsdl.Message) 
                    throws java.io.IOException;
    
                    protected void 
                    ensureOperationValid(javax.wsdl.Operation) 
                    throws java.io.IOException;
    
                    protected void 
                    ensureOperationsOfPortTypeValid(javax.wsdl.PortType) 
                    throws java.io.IOException;
    
                    private void 
                    populatePortTypes(javax.wsdl.Definition) 
                    throws java.io.IOException;
    
                    private void 
                    populateParameters() 
                    throws java.io.IOException;
    
                    public Parameters 
                    getOperationParameters(javax.wsdl.Operation, String, BindingEntry) 
                    throws java.io.IOException;
    
                    private int 
                    getPartIndex(String, java.util.Vector);
    
                    private void 
                    addInishParm(java.util.Vector, java.util.Vector, int, int, Parameters, boolean);
    
                    private void 
                    addOutParm(java.util.Vector, int, Parameters, boolean);
    
                    public void 
                    getParametersFromParts(java.util.Vector, java.util.Collection, boolean, String, BindingEntry) 
                    throws java.io.IOException;
    
                    private void 
                    fillParamInfo(Parameter, BindingEntry, String, String);
    
                    private javax.xml.namespace.QName 
                    getBindedParameterName(java.util.List, Parameter);
    
                    private void 
                    setMIMEInfo(Parameter, MimeInfo);
    
                    private void 
                    populateBindings(javax.wsdl.Definition) 
                    throws java.io.IOException;
    
                    private void 
                    fillInBindingInfo(BindingEntry, javax.wsdl.Operation, java.util.Iterator, java.util.ArrayList, boolean) 
                    throws java.io.IOException;
    
                    private void 
                    fillInDIMEInformation(javax.wsdl.extensions.UnknownExtensibilityElement, boolean, javax.wsdl.Operation, BindingEntry);
    
                    private void 
                    faultsFromSOAPFault(javax.wsdl.Binding, javax.wsdl.BindingOperation, javax.wsdl.Operation, java.util.ArrayList) 
                    throws java.io.IOException;
    
                    private void 
                    setBodyType(String, BindingEntry, javax.wsdl.Operation, boolean);
    
                    private org.apache.axis.constants.Use 
                    addMIMETypes(BindingEntry, javax.wsdl.extensions.mime.MIMEMultipartRelated, javax.wsdl.Operation) 
                    throws java.io.IOException;
    
                    private TypeEntry 
                    findPart(javax.wsdl.Operation, String);
    
                    private TypeEntry 
                    findPart(java.util.Iterator, String);
    
                    private void 
                    populateServices(javax.wsdl.Definition) 
                    throws java.io.IOException;
    
                    private void 
                    populatePorts(java.util.Map) 
                    throws java.io.IOException;
    
                    private void 
                    setReferences(javax.wsdl.Definition, org.w3c.dom.Document);
    
                    private void 
                    setTypeReferences(TypeEntry, org.w3c.dom.Document, boolean);
    
                    private void 
                    setMessageReferences(MessageEntry, javax.wsdl.Definition, org.w3c.dom.Document, boolean);
    
                    private void 
                    setPortTypeReferences(PortTypeEntry, BindingEntry, javax.wsdl.Definition, org.w3c.dom.Document);
    
                    private void 
                    setBindingReferences(BindingEntry, javax.wsdl.Definition, org.w3c.dom.Document);
    
                    private void 
                    setServiceReferences(ServiceEntry, javax.wsdl.Definition, org.w3c.dom.Document);
    
                    private SymTabEntry 
                    symbolTablePut(SymTabEntry) 
                    throws java.io.IOException;
    
                    protected boolean 
                    existsPortWithName(javax.xml.namespace.QName);
    
                    private javax.xml.namespace.QName 
                    getInnerCollectionComponentQName(org.w3c.dom.Node);
    
                    private 
                    static javax.xml.namespace.QName 
                    getInnerTypeQName(org.w3c.dom.Node);
    
                    protected void 
                    processTypes();
    
                    public java.util.List 
                    getMessageEntries();
    
                    public void 
                    setWrapArrays(boolean);
    
                    public java.util.Map 
                    getElementFormDefaults();
}

                

org/apache/axis/wsdl/symbolTable/Type.class

                    package org.apache.axis.wsdl.symbolTable;

                    public 
                    abstract 
                    synchronized 
                    class Type 
                    extends TypeEntry {
    
                    private boolean 
                    generated;
    
                    protected void Type(javax.xml.namespace.QName);
    
                    protected void Type(javax.xml.namespace.QName, TypeEntry, org.w3c.dom.Node, String);
    
                    protected void Type(javax.xml.namespace.QName, org.w3c.dom.Node);
    
                    public void 
                    setGenerated(boolean);
    
                    public boolean 
                    isGenerated();
}

                

org/apache/axis/wsdl/symbolTable/TypeEntry.class

                    package org.apache.axis.wsdl.symbolTable;

                    public 
                    abstract 
                    synchronized 
                    class TypeEntry 
                    extends SymTabEntry 
                    implements java.io.Serializable {
    
                    protected org.w3c.dom.Node 
                    node;
    
                    protected TypeEntry 
                    refType;
    
                    protected String 
                    dims;
    
                    protected boolean 
                    underlTypeNillable;
    
                    protected javax.xml.namespace.QName 
                    componentType;
    
                    protected javax.xml.namespace.QName 
                    itemQName;
    
                    protected boolean 
                    undefined;
    
                    protected boolean 
                    isBaseType;
    
                    protected boolean 
                    isSimpleType;
    
                    protected boolean 
                    onlyLiteralReference;
    
                    protected java.util.HashSet 
                    types;
    
                    protected java.util.Vector 
                    containedElements;
    
                    protected java.util.Vector 
                    containedAttributes;
    
                    protected void TypeEntry(javax.xml.namespace.QName, TypeEntry, org.w3c.dom.Node, String);
    
                    protected void TypeEntry(javax.xml.namespace.QName, org.w3c.dom.Node);
    
                    protected void TypeEntry(javax.xml.namespace.QName);
    
                    public org.w3c.dom.Node 
                    getNode();
    
                    public String 
                    getBaseType();
    
                    public boolean 
                    isBaseType();
    
                    public void 
                    setBaseType(boolean);
    
                    public boolean 
                    isSimpleType();
    
                    public void 
                    setSimpleType(boolean);
    
                    public boolean 
                    isOnlyLiteralReferenced();
    
                    public void 
                    setOnlyLiteralReference(boolean);
    
                    protected TypeEntry 
                    getUndefinedTypeRef();
    
                    protected boolean 
                    updateUndefined(TypeEntry, TypeEntry) 
                    throws java.io.IOException;
    
                    public TypeEntry 
                    getRefType();
    
                    public void 
                    setRefType(TypeEntry);
    
                    public String 
                    getDimensions();
    
                    public boolean 
                    getUnderlTypeNillable();
    
                    public void 
                    setUnderlTypeNillable(boolean);
    
                    public javax.xml.namespace.QName 
                    getComponentType();
    
                    public void 
                    setComponentType(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getItemQName();
    
                    public void 
                    setItemQName(javax.xml.namespace.QName);
    
                    public String 
                    toString();
    
                    protected String 
                    toString(String);
    
                    public java.util.HashSet 
                    getNestedTypes(SymbolTable, boolean);
    
                    public java.util.Vector 
                    getContainedAttributes();
    
                    public void 
                    setContainedAttributes(java.util.Vector);
    
                    public java.util.Vector 
                    getContainedElements();
    
                    public void 
                    setContainedElements(java.util.Vector);
}

                

org/apache/axis/wsdl/symbolTable/Undefined.class

                    package org.apache.axis.wsdl.symbolTable;

                    public 
                    abstract 
                    interface Undefined {
    
                    public 
                    abstract void 
                    register(TypeEntry);
    
                    public 
                    abstract void 
                    update(TypeEntry) 
                    throws java.io.IOException;
}

                

org/apache/axis/wsdl/symbolTable/UndefinedDelegate.class

                    package org.apache.axis.wsdl.symbolTable;

                    public 
                    synchronized 
                    class UndefinedDelegate 
                    implements Undefined {
    
                    private java.util.Vector 
                    list;
    
                    private TypeEntry 
                    undefinedType;
    void UndefinedDelegate(TypeEntry);
    
                    public void 
                    register(TypeEntry);
    
                    public void 
                    update(TypeEntry) 
                    throws java.io.IOException;
}

                

org/apache/axis/wsdl/symbolTable/UndefinedElement.class

                    package org.apache.axis.wsdl.symbolTable;

                    public 
                    synchronized 
                    class UndefinedElement 
                    extends Element 
                    implements Undefined {
    
                    private UndefinedDelegate 
                    delegate;
    
                    public void UndefinedElement(javax.xml.namespace.QName);
    
                    public void 
                    register(TypeEntry);
    
                    public void 
                    update(TypeEntry) 
                    throws java.io.IOException;
}

                

org/apache/axis/wsdl/symbolTable/UndefinedType.class

                    package org.apache.axis.wsdl.symbolTable;

                    public 
                    synchronized 
                    class UndefinedType 
                    extends Type 
                    implements Undefined {
    
                    private UndefinedDelegate 
                    delegate;
    
                    public void UndefinedType(javax.xml.namespace.QName);
    
                    public void 
                    register(TypeEntry);
    
                    public void 
                    update(TypeEntry) 
                    throws java.io.IOException;
}

                

org/apache/axis/wsdl/symbolTable/Utils.class

                    package org.apache.axis.wsdl.symbolTable;

                    public 
                    synchronized 
                    class Utils {
    
                    static 
                    final java.util.Map 
                    nsmap;
    
                    public void Utils();
    
                    static javax.xml.namespace.QName 
                    findQName(String, String);
    
                    public 
                    static String 
                    getScopedAttribute(org.w3c.dom.Node, String);
    
                    public 
                    static String 
                    getAttribute(org.w3c.dom.Node, String);
    
                    public 
                    static java.util.Vector 
                    getAttributesWithLocalName(org.w3c.dom.Node, String);
    
                    public 
                    static javax.xml.namespace.QName 
                    getNodeQName(org.w3c.dom.Node);
    
                    public 
                    static javax.xml.namespace.QName 
                    getNodeNameQName(org.w3c.dom.Node);
    
                    public 
                    static javax.xml.namespace.QName 
                    getTypeQName(org.w3c.dom.Node, javax.xml.rpc.holders.BooleanHolder, boolean);
    
                    public 
                    static javax.xml.namespace.QName[] 
                    getMemberTypeQNames(org.w3c.dom.Node);
    
                    private 
                    static javax.xml.namespace.QName 
                    getTypeQNameFromAttr(org.w3c.dom.Node, String);
    
                    public 
                    static javax.xml.namespace.QName 
                    getQNameFromPrefixedName(org.w3c.dom.Node, String);
    
                    public 
                    static java.util.HashSet 
                    getDerivedTypes(TypeEntry, SymbolTable);
    
                    private 
                    static void 
                    getDerivedTypes(TypeEntry, java.util.HashSet, SymbolTable);
    
                    protected 
                    static java.util.HashSet 
                    getNestedTypes(TypeEntry, SymbolTable, boolean);
    
                    private 
                    static void 
                    getNestedTypes(TypeEntry, java.util.HashSet, SymbolTable, boolean);
    
                    public 
                    static String 
                    genQNameAttributeString(javax.xml.namespace.QName, String);
    
                    public 
                    static String 
                    genQNameAttributeStringWithLastLocalPart(javax.xml.namespace.QName, String);
    
                    public 
                    static String 
                    getLastLocalPart(String);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/wsdl/toJava/DuplicateFileException.class

                    package org.apache.axis.wsdl.toJava;

                    public 
                    synchronized 
                    class DuplicateFileException 
                    extends java.io.IOException {
    
                    private String 
                    filename;
    
                    public void DuplicateFileException(String, String);
    
                    public String 
                    getFileName();
}

                

org/apache/axis/wsdl/toJava/Emitter$1.class

                    package org.apache.axis.wsdl.toJava;

                    synchronized 
                    class Emitter$1 
                    extends org.apache.axis.wsdl.symbolTable.BaseTypeMapping {
    
                    final org.apache.axis.encoding.TypeMapping 
                    defaultTM;
    void Emitter$1(Emitter);
    
                    public String 
                    getBaseName(javax.xml.namespace.QName);
}

                

org/apache/axis/wsdl/toJava/Emitter.class

                    package org.apache.axis.wsdl.toJava;

                    public 
                    synchronized 
                    class Emitter 
                    extends org.apache.axis.wsdl.gen.Parser {
    
                    public 
                    static 
                    final String 
                    DEFAULT_NSTOPKG_FILE = NStoPkg.properties;
    
                    protected java.util.HashMap 
                    namespaceMap;
    
                    protected String 
                    typeMappingVersion;
    
                    protected org.apache.axis.wsdl.symbolTable.BaseTypeMapping 
                    baseTypeMapping;
    
                    protected Namespaces 
                    namespaces;
    
                    protected String 
                    NStoPkgFilename;
    
                    private boolean 
                    bEmitServer;
    
                    private boolean 
                    bDeploySkeleton;
    
                    private boolean 
                    bEmitTestCase;
    
                    private boolean 
                    bGenerateAll;
    
                    private boolean 
                    bHelperGeneration;
    
                    private boolean 
                    bBuildFileGeneration;
    
                    private boolean 
                    typeCollisionProtection;
    
                    private boolean 
                    allowInvalidURL;
    
                    private String 
                    packageName;
    
                    private org.apache.axis.constants.Scope 
                    scope;
    
                    private GeneratedFileInfo 
                    fileInfo;
    
                    private java.util.HashMap 
                    delayedNamespacesMap;
    
                    private String 
                    outputDir;
    
                    protected java.util.List 
                    nsIncludes;
    
                    protected java.util.List 
                    nsExcludes;
    
                    protected java.util.List 
                    properties;
    
                    private String 
                    implementationClassName;
    
                    private org.apache.axis.encoding.TypeMapping 
                    defaultTM;
    
                    private org.apache.axis.encoding.TypeMappingRegistryImpl 
                    tmr;
    
                    private java.util.HashMap 
                    qName2ClassMap;
    
                    private org.apache.axis.description.ServiceDesc 
                    serviceDesc;
    
                    private boolean 
                    isDeploy;
    
                    public void Emitter();
    
                    public void 
                    setServerSide(boolean);
    
                    public boolean 
                    isServerSide();
    
                    public void 
                    setSkeletonWanted(boolean);
    
                    public boolean 
                    isSkeletonWanted();
    
                    public void 
                    setHelperWanted(boolean);
    
                    public boolean 
                    isHelperWanted();
    
                    public void 
                    setTestCaseWanted(boolean);
    
                    public boolean 
                    isTestCaseWanted();
    
                    public boolean 
                    isBuildFileWanted();
    
                    public void 
                    setBuildFileWanted(boolean);
    
                    public void 
                    setAllWanted(boolean);
    
                    public boolean 
                    isAllWanted();
    
                    public Namespaces 
                    getNamespaces();
    
                    public void 
                    setOutputDir(String);
    
                    public String 
                    getOutputDir();
    
                    public String 
                    getPackageName();
    
                    public void 
                    setPackageName(String);
    
                    public void 
                    setScope(org.apache.axis.constants.Scope);
    
                    public org.apache.axis.constants.Scope 
                    getScope();
    
                    public void 
                    setNStoPkg(String);
    
                    public void 
                    setNamespaceMap(java.util.HashMap);
    
                    public java.util.HashMap 
                    getNamespaceMap();
    
                    public void 
                    setNamespaceIncludes(java.util.List);
    
                    public java.util.List 
                    getNamespaceIncludes();
    
                    public void 
                    setNamespaceExcludes(java.util.List);
    
                    public java.util.List 
                    getNamespaceExcludes();
    
                    public void 
                    setProperties(java.util.List);
    
                    public java.util.List 
                    getProperties();
    
                    public org.apache.axis.encoding.TypeMapping 
                    getDefaultTypeMapping();
    
                    public void 
                    setDefaultTypeMapping(org.apache.axis.encoding.TypeMapping);
    
                    public void 
                    setFactory(String);
    
                    public GeneratedFileInfo 
                    getGeneratedFileInfo();
    
                    public java.util.List 
                    getGeneratedClassNames();
    
                    public java.util.List 
                    getGeneratedFileNames();
    
                    public String 
                    getPackage(String);
    
                    public String 
                    getPackage(javax.xml.namespace.QName);
    
                    public String 
                    getJavaName(javax.xml.namespace.QName);
    
                    protected String 
                    getJavaNameHook(javax.xml.namespace.QName);
    
                    public String 
                    getJavaVariableName(javax.xml.namespace.QName, javax.xml.namespace.QName, boolean);
    
                    protected String 
                    getJavaVariableNameHook(javax.xml.namespace.QName, javax.xml.namespace.QName, boolean);
    
                    public void 
                    run(String) 
                    throws Exception;
    
                    public void 
                    run(String, org.w3c.dom.Document) 
                    throws java.io.IOException, org.xml.sax.SAXException, javax.wsdl.WSDLException, javax.xml.parsers.ParserConfigurationException;
    
                    private void 
                    setup() 
                    throws java.io.IOException;
    
                    protected void 
                    sanityCheck(org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    private void 
                    getNStoPkgFromPropsFile(java.util.HashMap) 
                    throws java.io.IOException;
    
                    public String 
                    getTypeMappingVersion();
    
                    public void 
                    setTypeMappingVersion(String);
    
                    public org.apache.axis.wsdl.gen.GeneratorFactory 
                    getWriterFactory();
    
                    public void 
                    emit(String) 
                    throws Exception;
    
                    public void 
                    emit(String, org.w3c.dom.Document) 
                    throws java.io.IOException, org.xml.sax.SAXException, javax.wsdl.WSDLException, javax.xml.parsers.ParserConfigurationException;
    
                    public void 
                    generateServerSide(boolean);
    
                    public boolean 
                    getGenerateServerSide();
    
                    public void 
                    deploySkeleton(boolean);
    
                    public boolean 
                    getDeploySkeleton();
    
                    public void 
                    setHelperGeneration(boolean);
    
                    public boolean 
                    getHelperGeneration();
    
                    public void 
                    generateImports(boolean);
    
                    public void 
                    debug(boolean);
    
                    public boolean 
                    getDebug();
    
                    public void 
                    verbose(boolean);
    
                    public boolean 
                    getVerbose();
    
                    public void 
                    generateTestCase(boolean);
    
                    public void 
                    generateAll(boolean);
    
                    public boolean 
                    isTypeCollisionProtection();
    
                    public void 
                    setTypeCollisionProtection(boolean);
    
                    public String 
                    getImplementationClassName();
    
                    public void 
                    setImplementationClassName(String);
    
                    public boolean 
                    isAllowInvalidURL();
    
                    public void 
                    setAllowInvalidURL(boolean);
    
                    public void 
                    setQName2ClassMap(java.util.HashMap);
    
                    public java.util.HashMap 
                    getQName2ClassMap();
    
                    public org.apache.axis.description.ServiceDesc 
                    getServiceDesc();
    
                    public void 
                    setServiceDesc(org.apache.axis.description.ServiceDesc);
    
                    public boolean 
                    isDeploy();
    
                    public void 
                    setDeploy(boolean);
    
                    protected boolean 
                    doesExist(String);
    
                    public void 
                    setWrapArrays(boolean);
}

                

org/apache/axis/wsdl/toJava/FactoryProperty.class

                    package org.apache.axis.wsdl.toJava;

                    public 
                    synchronized 
                    class FactoryProperty {
    
                    private String 
                    name_;
    
                    private String 
                    value_;
    
                    public void FactoryProperty();
    
                    public String 
                    getName();
    
                    public String 
                    getValue();
    
                    public void 
                    setName(String);
    
                    public void 
                    setValue(String);
    
                    public String 
                    toString();
    
                    public boolean 
                    equals(Object);
}

                

org/apache/axis/wsdl/toJava/GeneratedFileInfo$Entry.class

                    package org.apache.axis.wsdl.toJava;

                    public 
                    synchronized 
                    class GeneratedFileInfo$Entry {
    
                    public String 
                    fileName;
    
                    public String 
                    className;
    
                    public String 
                    type;
    
                    public void GeneratedFileInfo$Entry(GeneratedFileInfo, String, String, String);
    
                    public String 
                    toString();
}

                

org/apache/axis/wsdl/toJava/GeneratedFileInfo.class

                    package org.apache.axis.wsdl.toJava;

                    public 
                    synchronized 
                    class GeneratedFileInfo {
    
                    protected java.util.ArrayList 
                    list;
    
                    public void GeneratedFileInfo();
    
                    public java.util.List 
                    getList();
    
                    public void 
                    add(String, String, String);
    
                    public java.util.List 
                    findType(String);
    
                    public GeneratedFileInfo$Entry 
                    findName(String);
    
                    public GeneratedFileInfo$Entry 
                    findClass(String);
    
                    public java.util.List 
                    getClassNames();
    
                    public java.util.List 
                    getFileNames();
    
                    public String 
                    toString();
}

                

org/apache/axis/wsdl/toJava/JavaBeanFaultWriter.class

                    package org.apache.axis.wsdl.toJava;

                    public 
                    synchronized 
                    class JavaBeanFaultWriter 
                    extends JavaBeanWriter {
    
                    public 
                    static 
                    final java.util.Set 
                    RESERVED_PROPERTY_NAMES;
    
                    protected void JavaBeanFaultWriter(Emitter, org.apache.axis.wsdl.symbolTable.TypeEntry, java.util.Vector, org.apache.axis.wsdl.symbolTable.TypeEntry, java.util.Vector, JavaWriter);
    
                    protected String 
                    getExtendsText();
    
                    protected void 
                    writeFileFooter(java.io.PrintWriter) 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/wsdl/toJava/JavaBeanHelperWriter.class

                    package org.apache.axis.wsdl.toJava;

                    public 
                    synchronized 
                    class JavaBeanHelperWriter 
                    extends JavaClassWriter {
    
                    protected org.apache.axis.wsdl.symbolTable.TypeEntry 
                    type;
    
                    protected java.util.Vector 
                    elements;
    
                    protected java.util.Vector 
                    attributes;
    
                    protected org.apache.axis.wsdl.symbolTable.TypeEntry 
                    extendType;
    
                    protected java.io.PrintWriter 
                    wrapperPW;
    
                    protected java.util.Vector 
                    elementMetaData;
    
                    protected boolean 
                    canSearchParents;
    
                    protected java.util.Set 
                    reservedPropNames;
    
                    protected void JavaBeanHelperWriter(Emitter, org.apache.axis.wsdl.symbolTable.TypeEntry, java.util.Vector, org.apache.axis.wsdl.symbolTable.TypeEntry, java.util.Vector, java.util.Set);
    
                    protected void 
                    setPrintWriter(java.io.PrintWriter);
    
                    protected java.io.PrintWriter 
                    getPrintWriter(String) 
                    throws java.io.IOException;
    
                    protected void 
                    registerFile(String);
    
                    protected String 
                    verboseMessage(String);
    
                    protected void 
                    writeFileHeader(java.io.PrintWriter) 
                    throws java.io.IOException;
    
                    protected void 
                    writeFileBody(java.io.PrintWriter) 
                    throws java.io.IOException;
    
                    protected void 
                    writeFileFooter(java.io.PrintWriter) 
                    throws java.io.IOException;
    
                    protected void 
                    closePrintWriter(java.io.PrintWriter);
    
                    protected void 
                    writeMetaData(java.io.PrintWriter) 
                    throws java.io.IOException;
    
                    private String 
                    getAsFieldName(String);
    
                    protected void 
                    writeSerializer(java.io.PrintWriter) 
                    throws java.io.IOException;
    
                    protected void 
                    writeDeserializer(java.io.PrintWriter) 
                    throws java.io.IOException;
}

                

org/apache/axis/wsdl/toJava/JavaBeanWriter.class

                    package org.apache.axis.wsdl.toJava;

                    public 
                    synchronized 
                    class JavaBeanWriter 
                    extends JavaClassWriter {
    
                    private org.apache.axis.wsdl.symbolTable.TypeEntry 
                    type;
    
                    private java.util.Vector 
                    elements;
    
                    private java.util.Vector 
                    attributes;
    
                    private org.apache.axis.wsdl.symbolTable.TypeEntry 
                    extendType;
    
                    protected JavaBeanHelperWriter 
                    helper;
    
                    protected java.util.Vector 
                    names;
    
                    protected java.util.ArrayList 
                    simpleValueTypes;
    
                    protected java.util.Set 
                    enumerationTypes;
    
                    protected java.io.PrintWriter 
                    pw;
    
                    protected boolean 
                    enableDefaultConstructor;
    
                    protected boolean 
                    enableFullConstructor;
    
                    protected boolean 
                    enableSimpleConstructors;
    
                    protected boolean 
                    enableToString;
    
                    protected boolean 
                    enableSetters;
    
                    protected boolean 
                    enableGetters;
    
                    protected boolean 
                    enableEquals;
    
                    protected boolean 
                    enableHashCode;
    
                    protected boolean 
                    enableMemberFields;
    
                    protected boolean 
                    isAny;
    
                    protected boolean 
                    isMixed;
    
                    protected boolean 
                    parentIsAny;
    
                    protected boolean 
                    parentIsMixed;
    
                    protected void JavaBeanWriter(Emitter, org.apache.axis.wsdl.symbolTable.TypeEntry, java.util.Vector, org.apache.axis.wsdl.symbolTable.TypeEntry, java.util.Vector, JavaWriter);
    
                    protected void 
                    writeFileHeader(java.io.PrintWriter) 
                    throws java.io.IOException;
    
                    protected void 
                    writeFileBody(java.io.PrintWriter) 
                    throws java.io.IOException;
    
                    protected void 
                    preprocess();
    
                    private String 
                    getAttributeName(org.apache.axis.wsdl.symbolTable.ContainedAttribute);
    
                    private String 
                    processTypeName(org.apache.axis.wsdl.symbolTable.ElementDecl, String);
    
                    protected String 
                    getBinaryTypeEncoderName(String);
    
                    protected org.apache.axis.wsdl.symbolTable.TypeEntry 
                    getElementDecl(String);
    
                    protected String 
                    getClassModifiers();
    
                    protected String 
                    getExtendsText();
    
                    protected String 
                    getImplementsText();
    
                    protected void 
                    writeMemberFields();
    
                    protected void 
                    writeDefaultConstructor();
    
                    protected void 
                    writeMinimalConstructor();
    
                    protected void 
                    writeFullConstructor();
    
                    protected void 
                    writeSimpleConstructors();
    
                    protected void 
                    writeSimpleTypeGetter(String, String, String);
    
                    private boolean 
                    isUnion();
    
                    protected void 
                    writeToStringMethod();
    
                    protected void 
                    writeSimpleTypeSetter(String);
    
                    protected void 
                    writeAccessMethods();
    
                    protected void 
                    writeEqualsMethod();
    
                    protected void 
                    writeHashCodeMethod();
    
                    public void 
                    generate() 
                    throws java.io.IOException;
}

                

org/apache/axis/wsdl/toJava/JavaBindingWriter.class

                    package org.apache.axis.wsdl.toJava;

                    public 
                    synchronized 
                    class JavaBindingWriter 
                    implements org.apache.axis.wsdl.gen.Generator {
    
                    protected org.apache.axis.wsdl.gen.Generator 
                    stubWriter;
    
                    protected org.apache.axis.wsdl.gen.Generator 
                    skelWriter;
    
                    protected org.apache.axis.wsdl.gen.Generator 
                    implWriter;
    
                    protected org.apache.axis.wsdl.gen.Generator 
                    interfaceWriter;
    
                    protected Emitter 
                    emitter;
    
                    protected javax.wsdl.Binding 
                    binding;
    
                    protected org.apache.axis.wsdl.symbolTable.SymbolTable 
                    symbolTable;
    
                    public 
                    static String 
                    INTERFACE_NAME;
    
                    public void JavaBindingWriter(Emitter, javax.wsdl.Binding, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    protected org.apache.axis.wsdl.gen.Generator 
                    getJavaInterfaceWriter(Emitter, org.apache.axis.wsdl.symbolTable.PortTypeEntry, org.apache.axis.wsdl.symbolTable.BindingEntry, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    protected org.apache.axis.wsdl.gen.Generator 
                    getJavaStubWriter(Emitter, org.apache.axis.wsdl.symbolTable.BindingEntry, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    protected org.apache.axis.wsdl.gen.Generator 
                    getJavaSkelWriter(Emitter, org.apache.axis.wsdl.symbolTable.BindingEntry, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    protected org.apache.axis.wsdl.gen.Generator 
                    getJavaImplWriter(Emitter, org.apache.axis.wsdl.symbolTable.BindingEntry, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public void 
                    generate() 
                    throws java.io.IOException;
    
                    protected void 
                    setGenerators();
    
                    protected void 
                    postSetGenerators();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/wsdl/toJava/JavaBuildFileWriter.class

                    package org.apache.axis.wsdl.toJava;

                    public 
                    synchronized 
                    class JavaBuildFileWriter 
                    extends JavaWriter {
    
                    protected javax.wsdl.Definition 
                    definition;
    
                    protected org.apache.axis.wsdl.symbolTable.SymbolTable 
                    symbolTable;
    
                    public void JavaBuildFileWriter(Emitter, javax.wsdl.Definition, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    protected String 
                    getFileName();
    
                    protected void 
                    writeFileBody(java.io.PrintWriter) 
                    throws java.io.IOException;
    
                    private java.util.StringTokenizer 
                    getClasspathComponets();
    
                    private String 
                    getJarFileName(String);
    
                    public void 
                    generate() 
                    throws java.io.IOException;
}

                

org/apache/axis/wsdl/toJava/JavaClassWriter.class

                    package org.apache.axis.wsdl.toJava;

                    public 
                    abstract 
                    synchronized 
                    class JavaClassWriter 
                    extends JavaWriter {
    
                    protected Namespaces 
                    namespaces;
    
                    protected String 
                    className;
    
                    protected String 
                    packageName;
    
                    protected void JavaClassWriter(Emitter, String, String);
    
                    protected String 
                    getFileName();
    
                    protected void 
                    registerFile(String);
    
                    protected void 
                    writeFileHeader(java.io.PrintWriter) 
                    throws java.io.IOException;
    
                    protected void 
                    writeHeaderComments(java.io.PrintWriter) 
                    throws java.io.IOException;
    
                    protected void 
                    writePackage(java.io.PrintWriter) 
                    throws java.io.IOException;
    
                    protected String 
                    getClassModifiers();
    
                    protected String 
                    getClassText();
    
                    protected String 
                    getExtendsText();
    
                    protected String 
                    getImplementsText();
    
                    protected String 
                    getPackage();
    
                    protected String 
                    getClassName();
    
                    protected void 
                    writeFileFooter(java.io.PrintWriter) 
                    throws java.io.IOException;
}

                

org/apache/axis/wsdl/toJava/JavaDefinitionWriter.class

                    package org.apache.axis.wsdl.toJava;

                    public 
                    synchronized 
                    class JavaDefinitionWriter 
                    implements org.apache.axis.wsdl.gen.Generator {
    
                    protected Emitter 
                    emitter;
    
                    protected javax.wsdl.Definition 
                    definition;
    
                    protected org.apache.axis.wsdl.symbolTable.SymbolTable 
                    symbolTable;
    
                    private java.util.HashSet 
                    importedFiles;
    
                    public void JavaDefinitionWriter(Emitter, javax.wsdl.Definition, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public void 
                    generate() 
                    throws java.io.IOException;
    
                    protected void 
                    writeFaults() 
                    throws java.io.IOException;
    
                    private void 
                    collectFaults(javax.wsdl.Definition, java.util.ArrayList) 
                    throws java.io.IOException;
}

                

org/apache/axis/wsdl/toJava/JavaDeployWriter.class

                    package org.apache.axis.wsdl.toJava;

                    public 
                    synchronized 
                    class JavaDeployWriter 
                    extends JavaWriter {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    protected javax.wsdl.Definition 
                    definition;
    
                    protected org.apache.axis.wsdl.symbolTable.SymbolTable 
                    symbolTable;
    
                    protected Emitter 
                    emitter;
    org.apache.axis.constants.Use 
                    use;
    
                    private 
                    static 
                    final java.util.Map 
                    mepStrings;
    
                    public void JavaDeployWriter(Emitter, javax.wsdl.Definition, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public void 
                    generate() 
                    throws java.io.IOException;
    
                    protected String 
                    getFileName();
    
                    protected void 
                    writeFileHeader(java.io.PrintWriter) 
                    throws java.io.IOException;
    
                    protected void 
                    writeFileBody(java.io.PrintWriter) 
                    throws java.io.IOException;
    
                    protected void 
                    writeDeployServices(java.io.PrintWriter) 
                    throws java.io.IOException;
    
                    protected void 
                    writeDeployTypes(java.io.PrintWriter, javax.wsdl.Binding, boolean, boolean, org.apache.axis.constants.Use) 
                    throws java.io.IOException;
    
                    protected void 
                    writeArrayTypeMapping(java.io.PrintWriter, String, String, String, String, javax.xml.namespace.QName) 
                    throws java.io.IOException;
    
                    protected void 
                    writeTypeMapping(java.io.PrintWriter, String, String, String, String, String, String) 
                    throws java.io.IOException;
    
                    protected void 
                    writeDeployPort(java.io.PrintWriter, javax.wsdl.Port, javax.wsdl.Service, org.apache.axis.wsdl.symbolTable.BindingEntry) 
                    throws java.io.IOException;
    
                    protected void 
                    writeDeployBinding(java.io.PrintWriter, org.apache.axis.wsdl.symbolTable.BindingEntry) 
                    throws java.io.IOException;
    
                    protected void 
                    writeOperation(java.io.PrintWriter, String, javax.xml.namespace.QName, javax.xml.namespace.QName, javax.xml.namespace.QName, org.apache.axis.wsdl.symbolTable.Parameters, javax.xml.namespace.QName, java.util.ArrayList, String);
    
                    public String 
                    getModeString(byte);
    
                    protected java.io.PrintWriter 
                    getPrintWriter(String) 
                    throws java.io.IOException;
    String 
                    getMepString(javax.wsdl.OperationType);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/wsdl/toJava/JavaEnumTypeWriter.class

                    package org.apache.axis.wsdl.toJava;

                    public 
                    synchronized 
                    class JavaEnumTypeWriter 
                    extends JavaClassWriter {
    
                    private java.util.Vector 
                    elements;
    
                    private org.apache.axis.wsdl.symbolTable.TypeEntry 
                    type;
    
                    protected void JavaEnumTypeWriter(Emitter, org.apache.axis.wsdl.symbolTable.TypeEntry, java.util.Vector);
    
                    protected String 
                    getImplementsText();
    
                    protected void 
                    writeFileBody(java.io.PrintWriter) 
                    throws java.io.IOException;
    
                    public 
                    static java.util.Vector 
                    getEnumValueIds(java.util.Vector);
    
                    public void 
                    generate() 
                    throws java.io.IOException;
}

                

org/apache/axis/wsdl/toJava/JavaFaultWriter.class

                    package org.apache.axis.wsdl.toJava;

                    public 
                    synchronized 
                    class JavaFaultWriter 
                    extends JavaClassWriter {
    
                    private javax.wsdl.Message 
                    faultMessage;
    
                    private org.apache.axis.wsdl.symbolTable.SymbolTable 
                    symbolTable;
    
                    private boolean 
                    literal;
    
                    private String 
                    faultName;
    
                    protected void JavaFaultWriter(Emitter, org.apache.axis.wsdl.symbolTable.SymbolTable, org.apache.axis.wsdl.symbolTable.FaultInfo);
    
                    protected String 
                    getExtendsText();
    
                    protected void 
                    writeFileBody(java.io.PrintWriter) 
                    throws java.io.IOException;
}

                

org/apache/axis/wsdl/toJava/JavaGeneratorFactory$1.class

                    package org.apache.axis.wsdl.toJava;

                    synchronized 
                    class JavaGeneratorFactory$1 
                    extends org.apache.axis.wsdl.symbolTable.BaseTypeMapping {
    void JavaGeneratorFactory$1(JavaGeneratorFactory);
    
                    public String 
                    getBaseName(javax.xml.namespace.QName);
}

                

org/apache/axis/wsdl/toJava/JavaGeneratorFactory$Writers.class

                    package org.apache.axis.wsdl.toJava;

                    public 
                    synchronized 
                    class JavaGeneratorFactory$Writers 
                    implements org.apache.axis.wsdl.gen.Generator {
    java.util.Vector 
                    writers;
    org.apache.axis.wsdl.symbolTable.SymbolTable 
                    symbolTable;
    org.apache.axis.wsdl.gen.Generator 
                    baseWriter;
    org.apache.axis.wsdl.symbolTable.SymTabEntry 
                    entry;
    javax.wsdl.Definition 
                    def;
    
                    protected void JavaGeneratorFactory$Writers(JavaGeneratorFactory);
    
                    public void 
                    addGenerator(Class);
    
                    public void 
                    addStuff(org.apache.axis.wsdl.gen.Generator, org.apache.axis.wsdl.symbolTable.SymTabEntry, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public void 
                    addStuff(org.apache.axis.wsdl.gen.Generator, javax.wsdl.Definition, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public void 
                    generate() 
                    throws java.io.IOException;
}

                

org/apache/axis/wsdl/toJava/JavaGeneratorFactory.class

                    package org.apache.axis.wsdl.toJava;

                    public 
                    synchronized 
                    class JavaGeneratorFactory 
                    implements org.apache.axis.wsdl.gen.GeneratorFactory {
    
                    private 
                    static 
                    final org.apache.commons.logging.Log 
                    log_;
    
                    protected Emitter 
                    emitter;
    
                    protected org.apache.axis.wsdl.symbolTable.SymbolTable 
                    symbolTable;
    
                    public 
                    static String 
                    COMPLEX_TYPE_FAULT;
    
                    public 
                    static String 
                    EXCEPTION_CLASS_NAME;
    
                    public 
                    static String 
                    EXCEPTION_DATA_TYPE;
    
                    private 
                    static 
                    final String 
                    SERVICE_SUFFIX = _Service;
    
                    private 
                    static 
                    final String 
                    PORT_TYPE_SUFFIX = _PortType;
    
                    private 
                    static 
                    final String 
                    TYPE_SUFFIX = _Type;
    
                    private 
                    static 
                    final String 
                    ELEMENT_SUFFIX = _Element;
    
                    private 
                    static 
                    final String 
                    EXCEPTION_SUFFIX = _Exception;
    
                    private 
                    static 
                    final String 
                    BINDING_SUFFIX = _Binding;
    
                    private JavaGeneratorFactory$Writers 
                    messageWriters;
    
                    private JavaGeneratorFactory$Writers 
                    portTypeWriters;
    
                    protected JavaGeneratorFactory$Writers 
                    bindingWriters;
    
                    protected JavaGeneratorFactory$Writers 
                    serviceWriters;
    
                    private JavaGeneratorFactory$Writers 
                    typeWriters;
    
                    private JavaGeneratorFactory$Writers 
                    defWriters;
    org.apache.axis.wsdl.symbolTable.BaseTypeMapping 
                    btm;
    
                    public void JavaGeneratorFactory();
    
                    public void JavaGeneratorFactory(Emitter);
    
                    public void 
                    setEmitter(Emitter);
    
                    private void 
                    addGenerators();
    
                    protected void 
                    addMessageGenerators();
    
                    protected void 
                    addPortTypeGenerators();
    
                    protected void 
                    addBindingGenerators();
    
                    protected void 
                    addServiceGenerators();
    
                    protected void 
                    addTypeGenerators();
    
                    protected void 
                    addDefinitionGenerators();
    
                    public void 
                    generatorPass(javax.wsdl.Definition, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public org.apache.axis.wsdl.gen.Generator 
                    getGenerator(javax.wsdl.Message, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public org.apache.axis.wsdl.gen.Generator 
                    getGenerator(javax.wsdl.PortType, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public org.apache.axis.wsdl.gen.Generator 
                    getGenerator(javax.wsdl.Binding, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public org.apache.axis.wsdl.gen.Generator 
                    getGenerator(javax.wsdl.Service, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public org.apache.axis.wsdl.gen.Generator 
                    getGenerator(org.apache.axis.wsdl.symbolTable.TypeEntry, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public org.apache.axis.wsdl.gen.Generator 
                    getGenerator(javax.wsdl.Definition, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public void 
                    addGenerator(Class, Class);
    
                    protected void 
                    javifyNames(org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    protected int 
                    javifyTypeEntryName(org.apache.axis.wsdl.symbolTable.SymbolTable, org.apache.axis.wsdl.symbolTable.TypeEntry, java.util.HashMap, int);
    
                    private 
                    static String 
                    getJavaClassName(Class);
    
                    private void 
                    setFaultContext(org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    private void 
                    setFaultContext(org.apache.axis.wsdl.symbolTable.FaultInfo, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    protected String 
                    getExceptionJavaNameHook(javax.xml.namespace.QName);
    
                    protected void 
                    determineInterfaceNames(org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    protected String 
                    getServiceEndpointInterfaceJavaNameHook(org.apache.axis.wsdl.symbolTable.PortTypeEntry, org.apache.axis.wsdl.symbolTable.BindingEntry);
    
                    protected String 
                    getServiceInterfaceJavaNameHook(org.apache.axis.wsdl.symbolTable.ServiceEntry);
    
                    protected String 
                    getPortJavaNameHook(String);
    
                    protected void 
                    resolveNameClashes(org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    private String 
                    mangleName(String, String);
    
                    private boolean 
                    sameJavaClass(String, String);
    
                    protected void 
                    setAllReferencesToTrue();
    
                    protected void 
                    ignoreNonSOAPBindings(org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    protected void 
                    constructSignatures(org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    protected String 
                    getOperationJavaNameHook(org.apache.axis.wsdl.symbolTable.BindingEntry, String);
    
                    protected String 
                    getReturnTypeJavaNameHook(org.apache.axis.wsdl.symbolTable.BindingEntry, String);
    
                    protected String 
                    getParameterTypeJavaNameHook(org.apache.axis.wsdl.symbolTable.BindingEntry, String, int);
    
                    private String 
                    constructSignature(org.apache.axis.wsdl.symbolTable.Parameters, String);
    
                    protected void 
                    determineIfHoldersNeeded(org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public void 
                    setBaseTypeMapping(org.apache.axis.wsdl.symbolTable.BaseTypeMapping);
    
                    public org.apache.axis.wsdl.symbolTable.BaseTypeMapping 
                    getBaseTypeMapping();
    
                    protected boolean 
                    include(javax.xml.namespace.QName);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/wsdl/toJava/JavaHolderWriter.class

                    package org.apache.axis.wsdl.toJava;

                    public 
                    synchronized 
                    class JavaHolderWriter 
                    extends JavaClassWriter {
    
                    private org.apache.axis.wsdl.symbolTable.TypeEntry 
                    type;
    
                    protected void JavaHolderWriter(Emitter, org.apache.axis.wsdl.symbolTable.TypeEntry);
    
                    protected String 
                    getClassModifiers();
    
                    protected String 
                    getImplementsText();
    
                    protected void 
                    writeFileBody(java.io.PrintWriter) 
                    throws java.io.IOException;
    
                    public void 
                    generate() 
                    throws java.io.IOException;
}

                

org/apache/axis/wsdl/toJava/JavaImplWriter.class

                    package org.apache.axis.wsdl.toJava;

                    public 
                    synchronized 
                    class JavaImplWriter 
                    extends JavaClassWriter {
    
                    protected javax.wsdl.Binding 
                    binding;
    
                    protected org.apache.axis.wsdl.symbolTable.SymbolTable 
                    symbolTable;
    
                    protected org.apache.axis.wsdl.symbolTable.BindingEntry 
                    bEntry;
    
                    protected void JavaImplWriter(Emitter, org.apache.axis.wsdl.symbolTable.BindingEntry, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    protected void 
                    writeFileBody(java.io.PrintWriter) 
                    throws java.io.IOException;
    
                    protected String 
                    getImplementsText();
    
                    protected void 
                    writeOperation(java.io.PrintWriter, org.apache.axis.wsdl.symbolTable.Parameters) 
                    throws java.io.IOException;
}

                

org/apache/axis/wsdl/toJava/JavaInterfaceWriter.class

                    package org.apache.axis.wsdl.toJava;

                    public 
                    synchronized 
                    class JavaInterfaceWriter 
                    extends JavaClassWriter {
    
                    protected javax.wsdl.PortType 
                    portType;
    
                    protected org.apache.axis.wsdl.symbolTable.BindingEntry 
                    bEntry;
    
                    protected void JavaInterfaceWriter(Emitter, org.apache.axis.wsdl.symbolTable.PortTypeEntry, org.apache.axis.wsdl.symbolTable.BindingEntry, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public void 
                    generate() 
                    throws java.io.IOException;
    
                    protected String 
                    getClassText();
    
                    protected String 
                    getExtendsText();
    
                    protected void 
                    writeFileBody(java.io.PrintWriter) 
                    throws java.io.IOException;
    
                    protected void 
                    writeOperation(java.io.PrintWriter, javax.wsdl.Operation) 
                    throws java.io.IOException;
}

                

org/apache/axis/wsdl/toJava/JavaServiceIfaceWriter.class

                    package org.apache.axis.wsdl.toJava;

                    public 
                    synchronized 
                    class JavaServiceIfaceWriter 
                    extends JavaClassWriter {
    
                    private javax.wsdl.Service 
                    service;
    
                    private org.apache.axis.wsdl.symbolTable.SymbolTable 
                    symbolTable;
    
                    protected void JavaServiceIfaceWriter(Emitter, org.apache.axis.wsdl.symbolTable.ServiceEntry, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    protected String 
                    getClassText();
    
                    protected String 
                    getExtendsText();
    
                    protected void 
                    writeFileBody(java.io.PrintWriter) 
                    throws java.io.IOException;
}

                

org/apache/axis/wsdl/toJava/JavaServiceImplWriter.class

                    package org.apache.axis.wsdl.toJava;

                    public 
                    synchronized 
                    class JavaServiceImplWriter 
                    extends JavaClassWriter {
    
                    private org.apache.axis.wsdl.symbolTable.ServiceEntry 
                    sEntry;
    
                    private org.apache.axis.wsdl.symbolTable.SymbolTable 
                    symbolTable;
    
                    protected void JavaServiceImplWriter(Emitter, org.apache.axis.wsdl.symbolTable.ServiceEntry, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    protected String 
                    getExtendsText();
    
                    protected String 
                    getImplementsText();
    
                    protected void 
                    writeFileBody(java.io.PrintWriter) 
                    throws java.io.IOException;
    
                    protected void 
                    writeConstructors(java.io.PrintWriter);
    
                    protected void 
                    writeAddressInfo(java.io.PrintWriter, String, String, javax.wsdl.Port);
    
                    protected void 
                    writeWSDDServiceNameInfo(java.io.PrintWriter, String, String, String);
    
                    protected void 
                    writeGetPortName(java.io.PrintWriter, String, String);
    
                    protected void 
                    writeGetPortNameURL(java.io.PrintWriter, String, String, String, String);
    
                    protected void 
                    writeSetPortEndpointAddress(java.io.PrintWriter, String);
    
                    protected void 
                    writeGetPortClass(java.io.PrintWriter, java.util.Vector, java.util.Vector, java.util.Vector, boolean);
    
                    protected void 
                    writeGetPortQNameClass(java.io.PrintWriter, java.util.Vector, java.util.Vector);
    
                    protected void 
                    writeGetServiceName(java.io.PrintWriter, javax.xml.namespace.QName);
    
                    protected void 
                    writeGetPorts(java.io.PrintWriter, String, java.util.Vector);
    
                    protected void 
                    writeSetEndpointAddress(java.io.PrintWriter, java.util.Vector);
}

                

org/apache/axis/wsdl/toJava/JavaServiceWriter.class

                    package org.apache.axis.wsdl.toJava;

                    public 
                    synchronized 
                    class JavaServiceWriter 
                    implements org.apache.axis.wsdl.gen.Generator {
    
                    protected org.apache.axis.wsdl.gen.Generator 
                    serviceIfaceWriter;
    
                    protected org.apache.axis.wsdl.gen.Generator 
                    serviceImplWriter;
    
                    protected org.apache.axis.wsdl.gen.Generator 
                    testCaseWriter;
    
                    public 
                    static 
                    final String 
                    PORT_NAME = port name;
    
                    protected Emitter 
                    emitter;
    
                    protected javax.wsdl.Service 
                    service;
    
                    protected org.apache.axis.wsdl.symbolTable.SymbolTable 
                    symbolTable;
    
                    public void JavaServiceWriter(Emitter, javax.wsdl.Service, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    protected void 
                    setGenerators();
    
                    protected void 
                    postSetGenerators();
    
                    public void 
                    generate() 
                    throws java.io.IOException;
}

                

org/apache/axis/wsdl/toJava/JavaSkelWriter.class

                    package org.apache.axis.wsdl.toJava;

                    public 
                    synchronized 
                    class JavaSkelWriter 
                    extends JavaClassWriter {
    
                    private org.apache.axis.wsdl.symbolTable.BindingEntry 
                    bEntry;
    
                    private javax.wsdl.Binding 
                    binding;
    
                    private org.apache.axis.wsdl.symbolTable.SymbolTable 
                    symbolTable;
    
                    protected void JavaSkelWriter(Emitter, org.apache.axis.wsdl.symbolTable.BindingEntry, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    protected String 
                    getImplementsText();
    
                    protected void 
                    writeFileBody(java.io.PrintWriter) 
                    throws java.io.IOException;
    
                    protected void 
                    writeOperation(java.io.PrintWriter, javax.wsdl.BindingOperation, org.apache.axis.wsdl.symbolTable.Parameters, String, String);
}

                

org/apache/axis/wsdl/toJava/JavaStubWriter$1.class

                    package org.apache.axis.wsdl.toJava;

                    synchronized 
                    class JavaStubWriter$1 
                    implements java.util.Comparator {
    void JavaStubWriter$1(JavaStubWriter);
    
                    public int 
                    compare(Object, Object);
}

                

org/apache/axis/wsdl/toJava/JavaStubWriter.class

                    package org.apache.axis.wsdl.toJava;

                    public 
                    synchronized 
                    class JavaStubWriter 
                    extends JavaClassWriter {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private org.apache.axis.wsdl.symbolTable.BindingEntry 
                    bEntry;
    
                    private javax.wsdl.Binding 
                    binding;
    
                    private org.apache.axis.wsdl.symbolTable.SymbolTable 
                    symbolTable;
    
                    private 
                    static 
                    final int 
                    MAXIMUM_BINDINGS_PER_METHOD = 100;
    
                    static String[] 
                    modeStrings;
    
                    static java.util.Map 
                    styles;
    
                    static java.util.Map 
                    uses;
    
                    static int 
                    OPERDESC_PER_BLOCK;
    
                    public void JavaStubWriter(Emitter, org.apache.axis.wsdl.symbolTable.BindingEntry, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    protected String 
                    getExtendsText();
    
                    protected String 
                    getImplementsText();
    
                    protected void 
                    writeFileBody(java.io.PrintWriter) 
                    throws java.io.IOException;
    
                    private int 
                    calculateBindingMethodCount(java.util.List);
    
                    protected void 
                    writeBindingMethods(java.io.PrintWriter, java.util.List);
    
                    protected void 
                    writeOperationMap(java.io.PrintWriter);
    
                    private java.util.HashSet 
                    getTypesInPortType(javax.wsdl.PortType);
    
                    private java.util.HashSet 
                    getTypesInOperation(javax.wsdl.Operation);
    
                    private void 
                    partTypes(java.util.Vector, java.util.Collection);
    
                    protected void 
                    writeFaultInfo(java.io.PrintWriter, javax.wsdl.BindingOperation);
    
                    protected void 
                    writeSerializationDecls(java.io.PrintWriter, boolean, String);
    
                    protected void 
                    writeSerializationInit(java.io.PrintWriter, org.apache.axis.wsdl.symbolTable.TypeEntry);
    
                    protected void 
                    writeOperation(java.io.PrintWriter, javax.wsdl.BindingOperation, org.apache.axis.wsdl.symbolTable.Parameters, String, String, boolean, int);
    
                    protected void 
                    writeParameters(java.io.PrintWriter, org.apache.axis.wsdl.symbolTable.Parameters);
    
                    protected void 
                    writeResponseHandling(java.io.PrintWriter, org.apache.axis.wsdl.symbolTable.Parameters);
    
                    protected void 
                    writeOutputAssign(java.io.PrintWriter, String, org.apache.axis.wsdl.symbolTable.Parameter, String);
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/wsdl/toJava/JavaTestCaseWriter.class

                    package org.apache.axis.wsdl.toJava;

                    public 
                    synchronized 
                    class JavaTestCaseWriter 
                    extends JavaClassWriter {
    
                    private org.apache.axis.wsdl.symbolTable.ServiceEntry 
                    sEntry;
    
                    private org.apache.axis.wsdl.symbolTable.SymbolTable 
                    symbolTable;
    
                    private int 
                    counter;
    
                    protected void JavaTestCaseWriter(Emitter, org.apache.axis.wsdl.symbolTable.ServiceEntry, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    protected String 
                    getExtendsText();
    
                    protected void 
                    writeFileBody(java.io.PrintWriter) 
                    throws java.io.IOException;
    
                    protected 
                    final void 
                    writeServiceTestCode(java.io.PrintWriter, String, javax.wsdl.PortType, org.apache.axis.wsdl.symbolTable.BindingEntry);
    
                    public 
                    final void 
                    writeBindingAssignment(java.io.PrintWriter, String, String);
}

                

org/apache/axis/wsdl/toJava/JavaTypeWriter.class

                    package org.apache.axis.wsdl.toJava;

                    public 
                    synchronized 
                    class JavaTypeWriter 
                    implements org.apache.axis.wsdl.gen.Generator {
    
                    public 
                    static 
                    final String 
                    HOLDER_IS_NEEDED = Holder is needed;
    
                    private org.apache.axis.wsdl.gen.Generator 
                    typeWriter;
    
                    private org.apache.axis.wsdl.gen.Generator 
                    holderWriter;
    
                    public void JavaTypeWriter(Emitter, org.apache.axis.wsdl.symbolTable.TypeEntry, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public void 
                    generate() 
                    throws java.io.IOException;
    
                    private boolean 
                    holderIsNeeded(org.apache.axis.wsdl.symbolTable.SymTabEntry);
    
                    protected JavaWriter 
                    getEnumTypeWriter(Emitter, org.apache.axis.wsdl.symbolTable.TypeEntry, java.util.Vector);
    
                    protected JavaWriter 
                    getBeanWriter(Emitter, org.apache.axis.wsdl.symbolTable.TypeEntry, org.apache.axis.wsdl.symbolTable.TypeEntry);
    
                    protected JavaWriter 
                    getBeanHelperWriter(Emitter, org.apache.axis.wsdl.symbolTable.TypeEntry, java.util.Vector, org.apache.axis.wsdl.symbolTable.TypeEntry, java.util.Vector, boolean);
    
                    protected org.apache.axis.wsdl.gen.Generator 
                    getHolderWriter(Emitter, org.apache.axis.wsdl.symbolTable.TypeEntry);
}

                

org/apache/axis/wsdl/toJava/JavaUndeployWriter.class

                    package org.apache.axis.wsdl.toJava;

                    public 
                    synchronized 
                    class JavaUndeployWriter 
                    extends JavaWriter {
    
                    protected javax.wsdl.Definition 
                    definition;
    
                    public void JavaUndeployWriter(Emitter, javax.wsdl.Definition, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public void 
                    generate() 
                    throws java.io.IOException;
    
                    protected String 
                    getFileName();
    
                    protected void 
                    writeFileHeader(java.io.PrintWriter) 
                    throws java.io.IOException;
    
                    protected void 
                    writeFileBody(java.io.PrintWriter) 
                    throws java.io.IOException;
    
                    protected void 
                    writeDeployServices(java.io.PrintWriter) 
                    throws java.io.IOException;
    
                    protected void 
                    writeDeployPort(java.io.PrintWriter, javax.wsdl.Port) 
                    throws java.io.IOException;
    
                    protected java.io.PrintWriter 
                    getPrintWriter(String) 
                    throws java.io.IOException;
}

                

org/apache/axis/wsdl/toJava/JavaWriter.class

                    package org.apache.axis.wsdl.toJava;

                    public 
                    abstract 
                    synchronized 
                    class JavaWriter 
                    implements org.apache.axis.wsdl.gen.Generator {
    
                    protected 
                    static 
                    final int 
                    LINE_LENGTH = 65;
    
                    protected Emitter 
                    emitter;
    
                    protected String 
                    type;
    
                    protected void JavaWriter(Emitter, String);
    
                    public void 
                    generate() 
                    throws java.io.IOException;
    
                    protected 
                    abstract String 
                    getFileName();
    
                    protected boolean 
                    isFileGenerated(String);
    
                    protected void 
                    registerFile(String);
    
                    protected String 
                    verboseMessage(String);
    
                    protected java.io.PrintWriter 
                    getPrintWriter(String) 
                    throws java.io.IOException;
    
                    protected void 
                    writeFileHeader(java.io.PrintWriter) 
                    throws java.io.IOException;
    
                    protected 
                    abstract void 
                    writeFileBody(java.io.PrintWriter) 
                    throws java.io.IOException;
    
                    protected void 
                    writeFileFooter(java.io.PrintWriter) 
                    throws java.io.IOException;
    
                    protected void 
                    closePrintWriter(java.io.PrintWriter);
    
                    protected String 
                    getJavadocDescriptionPart(String, boolean);
    
                    protected void 
                    writeComment(java.io.PrintWriter, org.w3c.dom.Element);
    
                    protected void 
                    writeComment(java.io.PrintWriter, org.w3c.dom.Element, boolean);
}

                

org/apache/axis/wsdl/toJava/NamespaceSelector.class

                    package org.apache.axis.wsdl.toJava;

                    public 
                    synchronized 
                    class NamespaceSelector {
    
                    private String 
                    namespace_;
    
                    public void NamespaceSelector();
    
                    public void NamespaceSelector(String);
    
                    public void 
                    setNamespace(String);
    
                    public String 
                    getNamespace();
    
                    public String 
                    toString();
    
                    public boolean 
                    equals(Object);
}

                

org/apache/axis/wsdl/toJava/Namespaces.class

                    package org.apache.axis.wsdl.toJava;

                    public 
                    synchronized 
                    class Namespaces 
                    extends java.util.HashMap {
    
                    private String 
                    root;
    
                    private String 
                    defaultPackage;
    
                    private 
                    static 
                    final char[] 
                    pkgSeparators;
    
                    private 
                    static 
                    final char 
                    javaPkgSeparator;
    
                    private java.util.Map 
                    pkg2NamespacesMap;
    
                    private 
                    static String 
                    normalizePackageName(String, char);
    
                    public void Namespaces(String);
    
                    private void Namespaces(Namespaces);
    
                    public Object 
                    clone();
    
                    public String 
                    getCreate(String);
    String 
                    getCreate(String, boolean);
    
                    public String 
                    getAsDir(String);
    
                    public String 
                    toDir(String);
    
                    public void 
                    putAll(java.util.Map);
    
                    private String 
                    javify(String);
    
                    public void 
                    mkdir(String);
    
                    public void 
                    setDefaultPackage(String);
    
                    public Object 
                    put(Object, Object);
    
                    public java.util.Map 
                    getPkg2NamespacesMap();
    
                    static void 
                    <clinit>();
}

                

org/apache/axis/wsdl/toJava/Utils.class

                    package org.apache.axis.wsdl.toJava;

                    public 
                    synchronized 
                    class Utils 
                    extends org.apache.axis.wsdl.symbolTable.Utils {
    
                    protected 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private 
                    static java.util.HashMap 
                    TYPES;
    
                    private 
                    static java.util.HashMap 
                    constructorMap;
    
                    private 
                    static java.util.HashMap 
                    constructorThrowMap;
    
                    public void Utils();
    
                    public 
                    static String 
                    holder(org.apache.axis.wsdl.symbolTable.TypeEntry, Emitter);
    
                    public 
                    static String 
                    holder(org.apache.axis.wsdl.symbolTable.Parameter, Emitter);
    
                    public 
                    static String 
                    addPackageName(String, String);
    
                    public 
                    static String 
                    getFullExceptionName(javax.wsdl.Message, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public 
                    static javax.xml.namespace.QName 
                    getFaultDataType(javax.wsdl.Message, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public 
                    static boolean 
                    isFaultComplex(javax.wsdl.Message, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public 
                    static java.util.Vector 
                    getEnumerationBaseAndValues(org.w3c.dom.Node, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public 
                    static String 
                    capitalizeFirstChar(String);
    
                    public 
                    static String 
                    addUnderscore(String);
    
                    public 
                    static String 
                    xmlNameToJava(String);
    
                    public 
                    static String 
                    xmlNameToJavaClass(String);
    
                    public 
                    static String 
                    makePackageName(String);
    
                    private 
                    static void 
                    addWordToPackageBuffer(StringBuffer, String, boolean);
    
                    public 
                    static String 
                    getJavaLocalName(String);
    
                    public 
                    static String 
                    getJavaPackageName(String);
    
                    public 
                    static boolean 
                    fileExists(String, String, Namespaces) 
                    throws java.io.IOException;
    
                    public 
                    static String 
                    wrapPrimitiveType(org.apache.axis.wsdl.symbolTable.TypeEntry, String);
    
                    public 
                    static String 
                    getResponseString(org.apache.axis.wsdl.symbolTable.Parameter, String);
    
                    public 
                    static boolean 
                    isPrimitiveType(org.apache.axis.wsdl.symbolTable.TypeEntry);
    
                    public 
                    static String 
                    getWrapperType(String);
    
                    public 
                    static String 
                    getWrapperType(org.apache.axis.wsdl.symbolTable.TypeEntry);
    
                    public 
                    static javax.xml.namespace.QName 
                    getOperationQName(javax.wsdl.BindingOperation, org.apache.axis.wsdl.symbolTable.BindingEntry, org.apache.axis.wsdl.symbolTable.SymbolTable);
    
                    public 
                    static String 
                    getOperationSOAPAction(javax.wsdl.BindingOperation);
    
                    public 
                    static String 
                    getNewQName(javax.xml.namespace.QName);
    
                    public 
                    static String 
                    getNewQNameWithLastLocalPart(javax.xml.namespace.QName);
    
                    public 
                    static String 
                    getParameterTypeName(org.apache.axis.wsdl.symbolTable.Parameter);
    
                    public 
                    static javax.xml.namespace.QName 
                    getXSIType(org.apache.axis.wsdl.symbolTable.Parameter);
    
                    public 
                    static javax.xml.namespace.QName 
                    getXSIType(org.apache.axis.wsdl.symbolTable.TypeEntry);
    
                    public 
                    static javax.xml.namespace.QName 
                    getMIMETypeQName(String);
    
                    public 
                    static boolean 
                    hasMIME(org.apache.axis.wsdl.symbolTable.BindingEntry);
    
                    public 
                    static boolean 
                    hasMIME(org.apache.axis.wsdl.symbolTable.BindingEntry, javax.wsdl.BindingOperation);
    
                    public 
                    static String 
                    getConstructorForParam(org.apache.axis.wsdl.symbolTable.Parameter, org.apache.axis.wsdl.symbolTable.SymbolTable, javax.xml.rpc.holders.BooleanHolder);
    
                    public 
                    static boolean 
                    shouldEmit(org.apache.axis.wsdl.symbolTable.TypeEntry);
    
                    public 
                    static boolean 
                    isXsNode(org.w3c.dom.Node, String);
    
                    public 
                    static javax.xml.namespace.QName 
                    getItemQName(org.apache.axis.wsdl.symbolTable.TypeEntry);
    
                    public 
                    static javax.xml.namespace.QName 
                    getItemType(org.apache.axis.wsdl.symbolTable.TypeEntry);
    
                    static void 
                    <clinit>();
}

                

simplelog.properties

# Logging detail level, # Must be one of ("trace", "debug", "info", "warn", "error", or "fatal"). org.apache.commons.logging.simplelog.defaultlog=info

BookStoreCXFWS/WebContent/WEB-INF/lib/commons-discovery-0.2.jar

META-INF/MANIFEST.MF

Manifest-Version: 1.0 Created-By: Apache Ant 1.5 Extension-Name: org.apache.commons.discovery Specification-Vendor: Apache Software Foundation Specification-Version: 1.0 Implementation-Vendor: Apache Software Foundation Implementation-Version: 0.2

META-INF/LICENSE.txt

/* * $Header: /home/cvs/jakarta-commons/discovery/LICENSE.txt,v 1.1 2002/07/25 02:36:45 jvanzyl Exp $ * $Revision: 1.1 $ * $Date: 2002/07/25 02:36:45 $ * * ==================================================================== * * The Apache Software License, Version 1.1 * * Copyright (c) 1999-2001 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. The end-user documentation included with the redistribution, if * any, must include the following acknowlegement: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." * Alternately, this acknowlegement may appear in the software itself, * if and wherever such third-party acknowlegements normally appear. * * 4. The names "The Jakarta Project", "Commons", and "Apache Software * Foundation" must not be used to endorse or promote products derived * from this software without prior written permission. For written * permission, please contact [email protected]. * * 5. Products derived from this software may not be called "Apache" * nor may "Apache" appear in their names without prior written * permission of the Apache Group. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * ==================================================================== * * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Software Foundation. For more * information on the Apache Software Foundation, please see * <http://www.apache.org/>. * */

org/apache/commons/discovery/ant/ServiceDiscoveryTask.class

                    package org.apache.commons.discovery.ant;

                    public 
                    synchronized 
                    class ServiceDiscoveryTask {
    String 
                    name;
    int 
                    debug;
    String[] 
                    drivers;
    
                    public void ServiceDiscoveryTask();
    
                    public void 
                    setServiceName(String);
    
                    public void 
                    setDebug(int);
    
                    public String[] 
                    getServiceInfo();
    
                    public void 
                    execute() 
                    throws Exception;
}

                

org/apache/commons/discovery/DiscoveryException.class

                    package org.apache.commons.discovery;

                    public 
                    synchronized 
                    class DiscoveryException 
                    extends RuntimeException {
    
                    protected Throwable 
                    cause;
    
                    public void DiscoveryException();
    
                    public void DiscoveryException(String);
    
                    public void DiscoveryException(Throwable);
    
                    public void DiscoveryException(String, Throwable);
    
                    public Throwable 
                    getCause();
    
                    public String 
                    toString();
    
                    private 
                    static String 
                    stackToString(Throwable);
}

                

org/apache/commons/discovery/jdk/JDK11Hooks$1.class

                    package org.apache.commons.discovery.jdk;

                    synchronized 
                    class JDK11Hooks$1 
                    implements java.util.Enumeration {
    
                    private boolean 
                    firstDone;
    
                    private java.net.URL 
                    next;
    void JDK11Hooks$1(JDK11Hooks, java.net.URL, java.util.Enumeration);
    
                    public Object 
                    nextElement();
    
                    public boolean 
                    hasMoreElements();
    
                    private java.net.URL 
                    getNext();
}

                

org/apache/commons/discovery/jdk/JDK11Hooks.class

                    package org.apache.commons.discovery.jdk;

                    synchronized 
                    class JDK11Hooks 
                    extends JDKHooks {
    
                    private 
                    static 
                    final ClassLoader 
                    systemClassLoader;
    void JDK11Hooks();
    
                    public ClassLoader 
                    getThreadContextClassLoader();
    
                    public ClassLoader 
                    getSystemClassLoader();
    
                    public java.util.Enumeration 
                    getResources(ClassLoader, String) 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

org/apache/commons/discovery/jdk/JDK12Hooks$1.class

                    package org.apache.commons.discovery.jdk;

                    synchronized 
                    class JDK12Hooks$1 
                    implements java.util.Enumeration {
    
                    private boolean 
                    firstDone;
    
                    private java.net.URL 
                    next;
    void JDK12Hooks$1(JDK12Hooks, java.net.URL, java.util.Enumeration);
    
                    public Object 
                    nextElement();
    
                    public boolean 
                    hasMoreElements();
    
                    private java.net.URL 
                    getNext();
}

                

org/apache/commons/discovery/jdk/JDK12Hooks.class

                    package org.apache.commons.discovery.jdk;

                    synchronized 
                    class JDK12Hooks 
                    extends JDKHooks {
    
                    private 
                    static 
                    final ClassLoader 
                    systemClassLoader;
    void JDK12Hooks();
    
                    public ClassLoader 
                    getThreadContextClassLoader();
    
                    public ClassLoader 
                    getSystemClassLoader();
    
                    public java.util.Enumeration 
                    getResources(ClassLoader, String) 
                    throws java.io.IOException;
    
                    private 
                    static ClassLoader 
                    findSystemClassLoader();
    
                    static void 
                    <clinit>();
}

                

org/apache/commons/discovery/jdk/JDKHooks.class

                    package org.apache.commons.discovery.jdk;

                    public 
                    abstract 
                    synchronized 
                    class JDKHooks {
    
                    private 
                    static 
                    final JDKHooks 
                    jdkHooks;
    
                    protected void JDKHooks();
    
                    public 
                    static 
                    final JDKHooks 
                    getJDKHooks();
    
                    public 
                    abstract ClassLoader 
                    getThreadContextClassLoader();
    
                    public 
                    abstract ClassLoader 
                    getSystemClassLoader();
    
                    public 
                    abstract java.util.Enumeration 
                    getResources(ClassLoader, String) 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

org/apache/commons/discovery/jdk/PsuedoSystemClassLoader.class

                    package org.apache.commons.discovery.jdk;

                    synchronized 
                    class PsuedoSystemClassLoader 
                    extends ClassLoader {
    void PsuedoSystemClassLoader();
    
                    protected Class 
                    loadClass(String, boolean) 
                    throws ClassNotFoundException;
    
                    public java.net.URL 
                    getResource(String);
    
                    public java.io.InputStream 
                    getResourceAsStream(String);
}

                

org/apache/commons/discovery/log/DiscoveryLogFactory.class

                    package org.apache.commons.discovery.log;

                    public 
                    synchronized 
                    class DiscoveryLogFactory {
    
                    private 
                    static org.apache.commons.logging.LogFactory 
                    logFactory;
    
                    private 
                    static 
                    final java.util.Hashtable 
                    classRegistry;
    
                    private 
                    static 
                    final Class[] 
                    setLogParamClasses;
    
                    private 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void DiscoveryLogFactory();
    
                    public 
                    static org.apache.commons.logging.Log 
                    newLog(Class);
    
                    public 
                    static org.apache.commons.logging.Log 
                    _newLog(Class);
    
                    public 
                    static void 
                    setLog(org.apache.commons.logging.Log);
    
                    public 
                    static void 
                    setFactory(org.apache.commons.logging.LogFactory);
    
                    static void 
                    <clinit>();
}

                

org/apache/commons/discovery/log/SimpleLog.class

                    package org.apache.commons.discovery.log;

                    public 
                    synchronized 
                    class SimpleLog 
                    implements org.apache.commons.logging.Log {
    
                    public 
                    static 
                    final int 
                    LOG_LEVEL_TRACE = 1;
    
                    public 
                    static 
                    final int 
                    LOG_LEVEL_DEBUG = 2;
    
                    public 
                    static 
                    final int 
                    LOG_LEVEL_INFO = 3;
    
                    public 
                    static 
                    final int 
                    LOG_LEVEL_WARN = 4;
    
                    public 
                    static 
                    final int 
                    LOG_LEVEL_ERROR = 5;
    
                    public 
                    static 
                    final int 
                    LOG_LEVEL_FATAL = 6;
    
                    public 
                    static 
                    final int 
                    LOG_LEVEL_ALL = 0;
    
                    public 
                    static 
                    final int 
                    LOG_LEVEL_OFF = 7;
    
                    protected 
                    static 
                    final String 
                    PROP_LEVEL = org.apache.commons.discovery.log.level;
    
                    protected 
                    static boolean 
                    showLogName;
    
                    protected 
                    static boolean 
                    showShortName;
    
                    protected 
                    static boolean 
                    showDateTime;
    
                    protected 
                    static java.text.DateFormat 
                    dateFormatter;
    
                    protected 
                    static int 
                    logLevel;
    
                    private 
                    static java.io.PrintStream 
                    out;
    
                    protected String 
                    logName;
    
                    private String 
                    prefix;
    
                    public 
                    static void 
                    setLevel(int);
    
                    public 
                    static int 
                    getLevel();
    
                    protected 
                    static boolean 
                    isLevelEnabled(int);
    
                    public void SimpleLog(String);
    
                    protected void 
                    log(int, Object, Throwable);
    
                    public 
                    final void 
                    debug(Object);
    
                    public 
                    final void 
                    debug(Object, Throwable);
    
                    public 
                    final void 
                    trace(Object);
    
                    public 
                    final void 
                    trace(Object, Throwable);
    
                    public 
                    final void 
                    info(Object);
    
                    public 
                    final void 
                    info(Object, Throwable);
    
                    public 
                    final void 
                    warn(Object);
    
                    public 
                    final void 
                    warn(Object, Throwable);
    
                    public 
                    final void 
                    error(Object);
    
                    public 
                    final void 
                    error(Object, Throwable);
    
                    public 
                    final void 
                    fatal(Object);
    
                    public 
                    final void 
                    fatal(Object, Throwable);
    
                    public 
                    final boolean 
                    isDebugEnabled();
    
                    public 
                    final boolean 
                    isErrorEnabled();
    
                    public 
                    final boolean 
                    isFatalEnabled();
    
                    public 
                    final boolean 
                    isInfoEnabled();
    
                    public 
                    final boolean 
                    isTraceEnabled();
    
                    public 
                    final boolean 
                    isWarnEnabled();
    
                    static void 
                    <clinit>();
}

                

org/apache/commons/discovery/package.html

Highlights:

  • JDK 1.3 Service discovery
  • Discovery supports JDK 1.1.8 and up (@see org.apache.commons.discover.jdk.JDKHooks).

org/apache/commons/discovery/resource/classes/DiscoverClasses$1.class

                    package org.apache.commons.discovery.resource.classes;

                    synchronized 
                    class DiscoverClasses$1 
                    extends org.apache.commons.discovery.ResourceClassIterator {
    
                    private java.util.Vector 
                    history;
    
                    private int 
                    idx;
    
                    private org.apache.commons.discovery.ResourceClass 
                    resource;
    void DiscoverClasses$1(DiscoverClasses, String, String);
    
                    public boolean 
                    hasNext();
    
                    public org.apache.commons.discovery.ResourceClass 
                    nextResourceClass();
    
                    private org.apache.commons.discovery.ResourceClass 
                    getNextClass();
}

                

org/apache/commons/discovery/resource/classes/DiscoverClasses.class

                    package org.apache.commons.discovery.resource.classes;

                    public 
                    synchronized 
                    class DiscoverClasses 
                    extends ResourceClassDiscoverImpl 
                    implements org.apache.commons.discovery.ResourceClassDiscover {
    
                    private 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public 
                    static void 
                    setLog(org.apache.commons.logging.Log);
    
                    public void DiscoverClasses();
    
                    public void DiscoverClasses(org.apache.commons.discovery.resource.ClassLoaders);
    
                    public org.apache.commons.discovery.ResourceClassIterator 
                    findResourceClasses(String);
    
                    static void 
                    <clinit>();
}

                

org/apache/commons/discovery/resource/classes/ResourceClassDiscoverImpl$1.class

                    package org.apache.commons.discovery.resource.classes;

                    synchronized 
                    class ResourceClassDiscoverImpl$1 
                    extends org.apache.commons.discovery.ResourceClassIterator {
    
                    private org.apache.commons.discovery.ResourceClassIterator 
                    classes;
    
                    private org.apache.commons.discovery.ResourceClass 
                    resource;
    void ResourceClassDiscoverImpl$1(ResourceClassDiscoverImpl, org.apache.commons.discovery.ResourceNameIterator);
    
                    public boolean 
                    hasNext();
    
                    public org.apache.commons.discovery.ResourceClass 
                    nextResourceClass();
    
                    private org.apache.commons.discovery.ResourceClass 
                    getNextResource();
}

                

org/apache/commons/discovery/resource/classes/ResourceClassDiscoverImpl.class

                    package org.apache.commons.discovery.resource.classes;

                    public 
                    abstract 
                    synchronized 
                    class ResourceClassDiscoverImpl 
                    extends org.apache.commons.discovery.resource.ResourceDiscoverImpl 
                    implements org.apache.commons.discovery.ResourceClassDiscover {
    
                    public void ResourceClassDiscoverImpl();
    
                    public void ResourceClassDiscoverImpl(org.apache.commons.discovery.resource.ClassLoaders);
    
                    public org.apache.commons.discovery.ResourceNameIterator 
                    findResourceNames(String);
    
                    public org.apache.commons.discovery.ResourceNameIterator 
                    findResourceNames(org.apache.commons.discovery.ResourceNameIterator);
    
                    public org.apache.commons.discovery.ResourceIterator 
                    findResources(String);
    
                    public org.apache.commons.discovery.ResourceIterator 
                    findResources(org.apache.commons.discovery.ResourceNameIterator);
    
                    public 
                    abstract org.apache.commons.discovery.ResourceClassIterator 
                    findResourceClasses(String);
    
                    public org.apache.commons.discovery.ResourceClassIterator 
                    findResourceClasses(org.apache.commons.discovery.ResourceNameIterator);
}

                

org/apache/commons/discovery/resource/ClassLoaders.class

                    package org.apache.commons.discovery.resource;

                    public 
                    synchronized 
                    class ClassLoaders {
    
                    protected java.util.Vector 
                    classLoaders;
    
                    public void ClassLoaders();
    
                    public int 
                    size();
    
                    public ClassLoader 
                    get(int);
    
                    public void 
                    put(ClassLoader);
    
                    public void 
                    put(ClassLoader, boolean);
    
                    public boolean 
                    isAncestor(ClassLoader);
    
                    public 
                    static ClassLoaders 
                    getLibLoaders(Class, Class, boolean);
    
                    public 
                    static ClassLoaders 
                    getAppLoaders(Class, Class, boolean);
}

                

org/apache/commons/discovery/resource/DiscoverResources$1.class

                    package org.apache.commons.discovery.resource;

                    synchronized 
                    class DiscoverResources$1 
                    extends org.apache.commons.discovery.ResourceIterator {
    
                    private int 
                    idx;
    
                    private ClassLoader 
                    loader;
    
                    private java.util.Enumeration 
                    resources;
    
                    private org.apache.commons.discovery.Resource 
                    resource;
    void DiscoverResources$1(DiscoverResources, String);
    
                    public boolean 
                    hasNext();
    
                    public org.apache.commons.discovery.Resource 
                    nextResource();
    
                    private org.apache.commons.discovery.Resource 
                    getNextResource();
    
                    private java.util.Enumeration 
                    getNextResources();
}

                

org/apache/commons/discovery/resource/DiscoverResources.class

                    package org.apache.commons.discovery.resource;

                    public 
                    synchronized 
                    class DiscoverResources 
                    extends ResourceDiscoverImpl 
                    implements org.apache.commons.discovery.ResourceDiscover {
    
                    private 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public 
                    static void 
                    setLog(org.apache.commons.logging.Log);
    
                    public void DiscoverResources();
    
                    public void DiscoverResources(ClassLoaders);
    
                    public org.apache.commons.discovery.ResourceIterator 
                    findResources(String);
    
                    static void 
                    <clinit>();
}

                

org/apache/commons/discovery/resource/names/DiscoverMappedNames$1.class

                    package org.apache.commons.discovery.resource.names;

                    synchronized 
                    class DiscoverMappedNames$1 
                    implements org.apache.commons.discovery.ResourceNameIterator {
    
                    private int 
                    idx;
    void DiscoverMappedNames$1(DiscoverMappedNames, String[]);
    
                    public boolean 
                    hasNext();
    
                    public String 
                    nextResourceName();
}

                

org/apache/commons/discovery/resource/names/DiscoverMappedNames.class

                    package org.apache.commons.discovery.resource.names;

                    public 
                    synchronized 
                    class DiscoverMappedNames 
                    extends ResourceNameDiscoverImpl 
                    implements org.apache.commons.discovery.ResourceNameDiscover {
    
                    private 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private java.util.Hashtable 
                    mapping;
    
                    public 
                    static void 
                    setLog(org.apache.commons.logging.Log);
    
                    public void DiscoverMappedNames();
    
                    public void 
                    map(String, String);
    
                    public void 
                    map(String, String[]);
    
                    public org.apache.commons.discovery.ResourceNameIterator 
                    findResourceNames(String);
    
                    static void 
                    <clinit>();
}

                

org/apache/commons/discovery/resource/names/DiscoverNamesInAlternateManagedProperties$1.class

                    package org.apache.commons.discovery.resource.names;

                    synchronized 
                    class DiscoverNamesInAlternateManagedProperties$1 
                    implements org.apache.commons.discovery.ResourceNameIterator {
    
                    private String 
                    resource;
    void DiscoverNamesInAlternateManagedProperties$1(DiscoverNamesInAlternateManagedProperties, String);
    
                    public boolean 
                    hasNext();
    
                    public String 
                    nextResourceName();
}

                

org/apache/commons/discovery/resource/names/DiscoverNamesInAlternateManagedProperties.class

                    package org.apache.commons.discovery.resource.names;

                    public 
                    synchronized 
                    class DiscoverNamesInAlternateManagedProperties 
                    extends ResourceNameDiscoverImpl 
                    implements org.apache.commons.discovery.ResourceNameDiscover {
    
                    private 
                    static org.apache.commons.logging.Log 
                    log;
    java.util.HashMap 
                    mapping;
    
                    public 
                    static void 
                    setLog(org.apache.commons.logging.Log);
    
                    public void DiscoverNamesInAlternateManagedProperties();
    
                    public void 
                    addClassToPropertyNameMapping(String, String);
    
                    public org.apache.commons.discovery.ResourceNameIterator 
                    findResourceNames(String);
    
                    static void 
                    <clinit>();
}

                

org/apache/commons/discovery/resource/names/DiscoverNamesInDictionary$1.class

                    package org.apache.commons.discovery.resource.names;

                    synchronized 
                    class DiscoverNamesInDictionary$1 
                    implements org.apache.commons.discovery.ResourceNameIterator {
    
                    private int 
                    idx;
    void DiscoverNamesInDictionary$1(DiscoverNamesInDictionary, String[]);
    
                    public boolean 
                    hasNext();
    
                    public String 
                    nextResourceName();
}

                

org/apache/commons/discovery/resource/names/DiscoverNamesInDictionary.class

                    package org.apache.commons.discovery.resource.names;

                    public 
                    synchronized 
                    class DiscoverNamesInDictionary 
                    extends ResourceNameDiscoverImpl 
                    implements org.apache.commons.discovery.ResourceNameDiscover {
    
                    private 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private java.util.Dictionary 
                    dictionary;
    
                    public 
                    static void 
                    setLog(org.apache.commons.logging.Log);
    
                    public void DiscoverNamesInDictionary();
    
                    public void DiscoverNamesInDictionary(java.util.Dictionary);
    
                    protected java.util.Dictionary 
                    getDictionary();
    
                    public void 
                    setDictionary(java.util.Dictionary);
    
                    public void 
                    addResource(String, String);
    
                    public void 
                    addResource(String, String[]);
    
                    public org.apache.commons.discovery.ResourceNameIterator 
                    findResourceNames(String);
    
                    static void 
                    <clinit>();
}

                

org/apache/commons/discovery/resource/names/DiscoverNamesInFile$1.class

                    package org.apache.commons.discovery.resource.names;

                    synchronized 
                    class DiscoverNamesInFile$1 
                    implements org.apache.commons.discovery.ResourceNameIterator {
    
                    private org.apache.commons.discovery.ResourceIterator 
                    files;
    
                    private int 
                    idx;
    
                    private java.util.Vector 
                    classNames;
    
                    private String 
                    resource;
    void DiscoverNamesInFile$1(DiscoverNamesInFile, String);
    
                    public boolean 
                    hasNext();
    
                    public String 
                    nextResourceName();
    
                    private String 
                    getNextClassName();
    
                    private java.util.Vector 
                    getNextClassNames();
}

                

org/apache/commons/discovery/resource/names/DiscoverNamesInFile.class

                    package org.apache.commons.discovery.resource.names;

                    public 
                    synchronized 
                    class DiscoverNamesInFile 
                    extends ResourceNameDiscoverImpl 
                    implements org.apache.commons.discovery.ResourceNameDiscover {
    
                    private 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private org.apache.commons.discovery.ResourceDiscover 
                    discoverResources;
    
                    public 
                    static void 
                    setLog(org.apache.commons.logging.Log);
    
                    public void DiscoverNamesInFile();
    
                    public void DiscoverNamesInFile(org.apache.commons.discovery.resource.ClassLoaders);
    
                    public void DiscoverNamesInFile(org.apache.commons.discovery.ResourceDiscover);
    
                    public void 
                    setDiscoverer(org.apache.commons.discovery.ResourceDiscover);
    
                    public org.apache.commons.discovery.ResourceDiscover 
                    getDiscover();
    
                    public org.apache.commons.discovery.ResourceNameIterator 
                    findResourceNames(String);
    
                    private java.util.Vector 
                    readServices(org.apache.commons.discovery.Resource);
    
                    static void 
                    <clinit>();
}

                

org/apache/commons/discovery/resource/names/DiscoverNamesInManagedProperties$1.class

                    package org.apache.commons.discovery.resource.names;

                    synchronized 
                    class DiscoverNamesInManagedProperties$1 
                    implements org.apache.commons.discovery.ResourceNameIterator {
    
                    private String 
                    resource;
    void DiscoverNamesInManagedProperties$1(DiscoverNamesInManagedProperties, String);
    
                    public boolean 
                    hasNext();
    
                    public String 
                    nextResourceName();
}

                

org/apache/commons/discovery/resource/names/DiscoverNamesInManagedProperties.class

                    package org.apache.commons.discovery.resource.names;

                    public 
                    synchronized 
                    class DiscoverNamesInManagedProperties 
                    extends ResourceNameDiscoverImpl 
                    implements org.apache.commons.discovery.ResourceNameDiscover {
    
                    private 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public 
                    static void 
                    setLog(org.apache.commons.logging.Log);
    
                    public void DiscoverNamesInManagedProperties();
    
                    public org.apache.commons.discovery.ResourceNameIterator 
                    findResourceNames(String);
    
                    static void 
                    <clinit>();
}

                

org/apache/commons/discovery/resource/names/DiscoverNamesInSystemProperties$1.class

                    package org.apache.commons.discovery.resource.names;

                    synchronized 
                    class DiscoverNamesInSystemProperties$1 
                    implements org.apache.commons.discovery.ResourceNameIterator {
    
                    private String 
                    resource;
    void DiscoverNamesInSystemProperties$1(DiscoverNamesInSystemProperties, String);
    
                    public boolean 
                    hasNext();
    
                    public String 
                    nextResourceName();
}

                

org/apache/commons/discovery/resource/names/DiscoverNamesInSystemProperties.class

                    package org.apache.commons.discovery.resource.names;

                    public 
                    synchronized 
                    class DiscoverNamesInSystemProperties 
                    extends ResourceNameDiscoverImpl 
                    implements org.apache.commons.discovery.ResourceNameDiscover {
    
                    private 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public 
                    static void 
                    setLog(org.apache.commons.logging.Log);
    
                    public void DiscoverNamesInSystemProperties();
    
                    public org.apache.commons.discovery.ResourceNameIterator 
                    findResourceNames(String);
    
                    static void 
                    <clinit>();
}

                

org/apache/commons/discovery/resource/names/DiscoverServiceNames.class

                    package org.apache.commons.discovery.resource.names;

                    public 
                    synchronized 
                    class DiscoverServiceNames 
                    extends DiscoverNamesInFile 
                    implements org.apache.commons.discovery.ResourceNameDiscover {
    
                    protected 
                    static 
                    final String 
                    SERVICE_HOME = META-INF/services/;
    
                    public void DiscoverServiceNames();
    
                    public void DiscoverServiceNames(org.apache.commons.discovery.resource.ClassLoaders);
    
                    public void DiscoverServiceNames(org.apache.commons.discovery.ResourceDiscover);
    
                    public org.apache.commons.discovery.ResourceNameIterator 
                    findResourceNames(String);
}

                

org/apache/commons/discovery/resource/names/NameDiscoverers$1.class

                    package org.apache.commons.discovery.resource.names;

                    synchronized 
                    class NameDiscoverers$1 
                    implements org.apache.commons.discovery.ResourceNameIterator {
    
                    private int 
                    idx;
    
                    private org.apache.commons.discovery.ResourceNameIterator 
                    iterator;
    void NameDiscoverers$1(NameDiscoverers, String);
    
                    public boolean 
                    hasNext();
    
                    public String 
                    nextResourceName();
    
                    private org.apache.commons.discovery.ResourceNameIterator 
                    getNextIterator();
}

                

org/apache/commons/discovery/resource/names/NameDiscoverers.class

                    package org.apache.commons.discovery.resource.names;

                    public 
                    synchronized 
                    class NameDiscoverers 
                    extends ResourceNameDiscoverImpl 
                    implements org.apache.commons.discovery.ResourceNameDiscover {
    
                    private 
                    static org.apache.commons.logging.Log 
                    log;
    
                    private java.util.Vector 
                    discoverers;
    
                    public 
                    static void 
                    setLog(org.apache.commons.logging.Log);
    
                    public void NameDiscoverers();
    
                    public void 
                    addResourceNameDiscover(org.apache.commons.discovery.ResourceNameDiscover);
    
                    protected org.apache.commons.discovery.ResourceNameDiscover 
                    getResourceNameDiscover(int);
    
                    protected int 
                    size();
    
                    public org.apache.commons.discovery.ResourceNameIterator 
                    findResourceNames(String);
    
                    static void 
                    <clinit>();
}

                

org/apache/commons/discovery/resource/names/ResourceNameDiscoverImpl$1.class

                    package org.apache.commons.discovery.resource.names;

                    synchronized 
                    class ResourceNameDiscoverImpl$1 
                    implements org.apache.commons.discovery.ResourceNameIterator {
    
                    private org.apache.commons.discovery.ResourceNameIterator 
                    resourceNames;
    
                    private String 
                    resourceName;
    void ResourceNameDiscoverImpl$1(ResourceNameDiscoverImpl, org.apache.commons.discovery.ResourceNameIterator);
    
                    public boolean 
                    hasNext();
    
                    public String 
                    nextResourceName();
    
                    private String 
                    getNextResourceName();
}

                

org/apache/commons/discovery/resource/names/ResourceNameDiscoverImpl.class

                    package org.apache.commons.discovery.resource.names;

                    public 
                    abstract 
                    synchronized 
                    class ResourceNameDiscoverImpl 
                    implements org.apache.commons.discovery.ResourceNameDiscover {
    
                    public void ResourceNameDiscoverImpl();
    
                    public 
                    abstract org.apache.commons.discovery.ResourceNameIterator 
                    findResourceNames(String);
    
                    public org.apache.commons.discovery.ResourceNameIterator 
                    findResourceNames(org.apache.commons.discovery.ResourceNameIterator);
}

                

org/apache/commons/discovery/resource/ResourceDiscoverImpl$1.class

                    package org.apache.commons.discovery.resource;

                    synchronized 
                    class ResourceDiscoverImpl$1 
                    extends org.apache.commons.discovery.ResourceIterator {
    
                    private org.apache.commons.discovery.ResourceIterator 
                    resources;
    
                    private org.apache.commons.discovery.Resource 
                    resource;
    void ResourceDiscoverImpl$1(ResourceDiscoverImpl, org.apache.commons.discovery.ResourceNameIterator);
    
                    public boolean 
                    hasNext();
    
                    public org.apache.commons.discovery.Resource 
                    nextResource();
    
                    private org.apache.commons.discovery.Resource 
                    getNextResource();
}

                

org/apache/commons/discovery/resource/ResourceDiscoverImpl.class

                    package org.apache.commons.discovery.resource;

                    public 
                    abstract 
                    synchronized 
                    class ResourceDiscoverImpl 
                    extends names.ResourceNameDiscoverImpl 
                    implements org.apache.commons.discovery.ResourceDiscover {
    
                    private ClassLoaders 
                    classLoaders;
    
                    public void ResourceDiscoverImpl();
    
                    public void ResourceDiscoverImpl(ClassLoaders);
    
                    public void 
                    setClassLoaders(ClassLoaders);
    
                    public void 
                    addClassLoader(ClassLoader);
    
                    protected ClassLoaders 
                    getClassLoaders();
    
                    public org.apache.commons.discovery.ResourceNameIterator 
                    findResourceNames(String);
    
                    public org.apache.commons.discovery.ResourceNameIterator 
                    findResourceNames(org.apache.commons.discovery.ResourceNameIterator);
    
                    public 
                    abstract org.apache.commons.discovery.ResourceIterator 
                    findResources(String);
    
                    public org.apache.commons.discovery.ResourceIterator 
                    findResources(org.apache.commons.discovery.ResourceNameIterator);
}

                

org/apache/commons/discovery/Resource.class

                    package org.apache.commons.discovery;

                    public 
                    synchronized 
                    class Resource {
    
                    protected 
                    final String 
                    name;
    
                    protected 
                    final java.net.URL 
                    resource;
    
                    protected 
                    final ClassLoader 
                    loader;
    
                    public void Resource(String, java.net.URL, ClassLoader);
    
                    public String 
                    getName();
    
                    public java.net.URL 
                    getResource();
    
                    public java.io.InputStream 
                    getResourceAsStream();
    
                    public ClassLoader 
                    getClassLoader();
    
                    public String 
                    toString();
    
                    public 
                    static Resource[] 
                    toArray(ResourceIterator);
}

                

org/apache/commons/discovery/ResourceClass$1.class

                    package org.apache.commons.discovery;

                    synchronized 
                    class ResourceClass$1 
                    implements java.security.PrivilegedAction {
    void ResourceClass$1(ResourceClass);
    
                    public Object 
                    run();
}

                

org/apache/commons/discovery/ResourceClass.class

                    package org.apache.commons.discovery;

                    public 
                    synchronized 
                    class ResourceClass 
                    extends Resource {
    
                    private 
                    static org.apache.commons.logging.Log 
                    log;
    
                    protected Class 
                    resourceClass;
    
                    public 
                    static void 
                    setLog(org.apache.commons.logging.Log);
    
                    public void ResourceClass(Class, java.net.URL);
    
                    public void ResourceClass(String, java.net.URL, ClassLoader);
    
                    public Class 
                    loadClass();
    
                    public String 
                    toString();
    
                    static void 
                    <clinit>();
}

                

org/apache/commons/discovery/ResourceClassDiscover.class

                    package org.apache.commons.discovery;

                    public 
                    abstract 
                    interface ResourceClassDiscover 
                    extends ResourceDiscover {
    
                    public 
                    abstract ResourceClassIterator 
                    findResourceClasses(String);
    
                    public 
                    abstract ResourceClassIterator 
                    findResourceClasses(ResourceNameIterator);
}

                

org/apache/commons/discovery/ResourceClassIterator.class

                    package org.apache.commons.discovery;

                    public 
                    abstract 
                    synchronized 
                    class ResourceClassIterator 
                    extends ResourceIterator {
    
                    public void ResourceClassIterator();
    
                    public 
                    abstract ResourceClass 
                    nextResourceClass();
    
                    public Resource 
                    nextResource();
    
                    public String 
                    nextResourceName();
}

                

org/apache/commons/discovery/ResourceDiscover.class

                    package org.apache.commons.discovery;

                    public 
                    abstract 
                    interface ResourceDiscover 
                    extends ResourceNameDiscover {
    
                    public 
                    abstract ResourceIterator 
                    findResources(String);
    
                    public 
                    abstract ResourceIterator 
                    findResources(ResourceNameIterator);
}

                

org/apache/commons/discovery/ResourceIterator.class

                    package org.apache.commons.discovery;

                    public 
                    abstract 
                    synchronized 
                    class ResourceIterator 
                    implements ResourceNameIterator {
    
                    public void ResourceIterator();
    
                    public 
                    abstract Resource 
                    nextResource();
    
                    public String 
                    nextResourceName();
    
                    public 
                    abstract boolean 
                    hasNext();
}

                

org/apache/commons/discovery/ResourceNameDiscover.class

                    package org.apache.commons.discovery;

                    public 
                    abstract 
                    interface ResourceNameDiscover {
    
                    public 
                    abstract ResourceNameIterator 
                    findResourceNames(String);
    
                    public 
                    abstract ResourceNameIterator 
                    findResourceNames(ResourceNameIterator);
}

                

org/apache/commons/discovery/ResourceNameIterator.class

                    package org.apache.commons.discovery;

                    public 
                    abstract 
                    interface ResourceNameIterator {
    
                    public 
                    abstract boolean 
                    hasNext();
    
                    public 
                    abstract String 
                    nextResourceName();
}

                

org/apache/commons/discovery/tools/ClassUtils.class

                    package org.apache.commons.discovery.tools;

                    public 
                    synchronized 
                    class ClassUtils {
    
                    private 
                    static org.apache.commons.logging.Log 
                    log;
    
                    public void ClassUtils();
    
                    public 
                    static void 
                    setLog(org.apache.commons.logging.Log);
    
                    public 
                    static String 
                    getPackageName(Class);
    
                    public 
                    static reflect.Method 
                    findPublicStaticMethod(Class, Class, String, Class[]);
    
                    public 
                    static Object 
                    newInstance(Class, Class[], Object[]) 
                    throws org.apache.commons.discovery.DiscoveryException, InstantiationException, IllegalAccessException, NoSuchMethodException, reflect.InvocationTargetException;
    
                    public 
                    static void 
                    verifyAncestory(Class, Class) 
                    throws org.apache.commons.discovery.DiscoveryException;
    
                    static void 
                    <clinit>();
}

                

org/apache/commons/discovery/tools/DefaultClassHolder.class

                    package org.apache.commons.discovery.tools;

                    public 
                    synchronized 
                    class DefaultClassHolder {
    
                    private Class 
                    defaultClass;
    
                    private 
                    final String 
                    defaultName;
    
                    public void DefaultClassHolder(Class);
    
                    public void DefaultClassHolder(String);
    
                    public Class 
                    getDefaultClass(SPInterface, org.apache.commons.discovery.resource.ClassLoaders);
    
                    public String 
                    getDefaultName();
}

                

org/apache/commons/discovery/tools/DiscoverClass.class

                    package org.apache.commons.discovery.tools;

                    public 
                    synchronized 
                    class DiscoverClass {
    
                    public 
                    static 
                    final DefaultClassHolder 
                    nullDefaultImpl;
    
                    public 
                    static 
                    final PropertiesHolder 
                    nullProperties;
    
                    private org.apache.commons.discovery.resource.ClassLoaders 
                    classLoaders;
    
                    public void DiscoverClass();
    
                    public void DiscoverClass(org.apache.commons.discovery.resource.ClassLoaders);
    
                    public org.apache.commons.discovery.resource.ClassLoaders 
                    getClassLoaders(Class);
    
                    public Class 
                    find(Class) 
                    throws org.apache.commons.discovery.DiscoveryException;
    
                    public Class 
                    find(Class, java.util.Properties) 
                    throws org.apache.commons.discovery.DiscoveryException;
    
                    public Class 
                    find(Class, String) 
                    throws org.apache.commons.discovery.DiscoveryException;
    
                    public Class 
                    find(Class, java.util.Properties, String) 
                    throws org.apache.commons.discovery.DiscoveryException;
    
                    public Class 
                    find(Class, String, String) 
                    throws org.apache.commons.discovery.DiscoveryException;
    
                    public 
                    static Class 
                    find(org.apache.commons.discovery.resource.ClassLoaders, SPInterface, PropertiesHolder, DefaultClassHolder) 
                    throws org.apache.commons.discovery.DiscoveryException;
    
                    public Object 
                    newInstance(Class) 
                    throws org.apache.commons.discovery.DiscoveryException, InstantiationException, IllegalAccessException, NoSuchMethodException, reflect.InvocationTargetException;
    
                    public Object 
                    newInstance(Class, java.util.Properties) 
                    throws org.apache.commons.discovery.DiscoveryException, InstantiationException, IllegalAccessException, NoSuchMethodException, reflect.InvocationTargetException;
    
                    public Object 
                    newInstance(Class, String) 
                    throws org.apache.commons.discovery.DiscoveryException, InstantiationException, IllegalAccessException, NoSuchMethodException, reflect.InvocationTargetException;
    
                    public Object 
                    newInstance(Class, java.util.Properties, String) 
                    throws org.apache.commons.discovery.DiscoveryException, InstantiationException, IllegalAccessException, NoSuchMethodException, reflect.InvocationTargetException;
    
                    public Object 
                    newInstance(Class, String, String) 
                    throws org.apache.commons.discovery.DiscoveryException, InstantiationException, IllegalAccessException, NoSuchMethodException, reflect.InvocationTargetException;
    
                    public 
                    static Object 
                    newInstance(org.apache.commons.discovery.resource.ClassLoaders, SPInterface, PropertiesHolder, DefaultClassHolder) 
                    throws org.apache.commons.discovery.DiscoveryException, InstantiationException, IllegalAccessException, NoSuchMethodException, reflect.InvocationTargetException;
    
                    public 
                    static String[] 
                    discoverClassNames(SPInterface, java.util.Properties);
    
                    public 
                    static String 
                    getManagedProperty(String);
    
                    static void 
                    <clinit>();
}

                

org/apache/commons/discovery/tools/DiscoverSingleton.class

                    package org.apache.commons.discovery.tools;

                    public 
                    synchronized 
                    class DiscoverSingleton {
    
                    public void DiscoverSingleton();
    
                    public 
                    static Object 
                    find(Class) 
                    throws org.apache.commons.discovery.DiscoveryException;
    
                    public 
                    static Object 
                    find(Class, java.util.Properties) 
                    throws org.apache.commons.discovery.DiscoveryException;
    
                    public 
                    static Object 
                    find(Class, String) 
                    throws org.apache.commons.discovery.DiscoveryException;
    
                    public 
                    static Object 
                    find(Class, java.util.Properties, String) 
                    throws org.apache.commons.discovery.DiscoveryException;
    
                    public 
                    static Object 
                    find(Class, String, String) 
                    throws org.apache.commons.discovery.DiscoveryException;
    
                    public 
                    static Object 
                    find(org.apache.commons.discovery.resource.ClassLoaders, SPInterface, PropertiesHolder, DefaultClassHolder) 
                    throws org.apache.commons.discovery.DiscoveryException;
    
                    public 
                    static 
                    synchronized void 
                    release();
    
                    public 
                    static 
                    synchronized void 
                    release(Class);
    
                    private 
                    static 
                    synchronized Object 
                    get(ClassLoader, String);
    
                    private 
                    static 
                    synchronized void 
                    put(ClassLoader, String, Object);
}

                

org/apache/commons/discovery/tools/EnvironmentCache.class

                    package org.apache.commons.discovery.tools;

                    public 
                    synchronized 
                    class EnvironmentCache {
    
                    private 
                    static 
                    final java.util.HashMap 
                    root_cache;
    
                    public 
                    static 
                    final int 
                    smallHashSize = 13;
    
                    public void EnvironmentCache();
    
                    public 
                    static 
                    synchronized Object 
                    get(ClassLoader);
    
                    public 
                    static 
                    synchronized void 
                    put(ClassLoader, Object);
    
                    public 
                    static 
                    synchronized void 
                    release();
    
                    public 
                    static 
                    synchronized void 
                    release(ClassLoader);
    
                    static void 
                    <clinit>();
}

                

org/apache/commons/discovery/tools/ManagedProperties$1.class

                    package org.apache.commons.discovery.tools;

                    synchronized 
                    class ManagedProperties$1 
                    implements java.security.PrivilegedAction {
    void ManagedProperties$1(ClassLoader);
    
                    public Object 
                    run();
}

                

org/apache/commons/discovery/tools/ManagedProperties$Value.class

                    package org.apache.commons.discovery.tools;

                    synchronized 
                    class ManagedProperties$Value {
    
                    final String 
                    value;
    
                    final boolean 
                    isDefault;
    void ManagedProperties$Value(String, boolean);
}

                

org/apache/commons/discovery/tools/ManagedProperties.class

                    package org.apache.commons.discovery.tools;

                    public 
                    synchronized 
                    class ManagedProperties {
    
                    private 
                    static 
                    final java.util.HashMap 
                    propertiesCache;
    
                    public void ManagedProperties();
    
                    public 
                    static String 
                    getProperty(String);
    
                    public 
                    static String 
                    getProperty(String, String);
    
                    public 
                    static String 
                    getProperty(ClassLoader, String);
    
                    public 
                    static String 
                    getProperty(ClassLoader, String, String);
    
                    public 
                    static void 
                    setProperty(String, String);
    
                    public 
                    static void 
                    setProperty(String, String, boolean);
    
                    public 
                    static void 
                    setProperties(java.util.Map);
    
                    public 
                    static void 
                    setProperties(java.util.Map, boolean);
    
                    public 
                    static java.util.Enumeration 
                    propertyNames();
    
                    public 
                    static java.util.Properties 
                    getProperties();
    
                    private 
                    static 
                    final ManagedProperties$Value 
                    getValueProperty(ClassLoader, String);
    
                    private 
                    static 
                    final ClassLoader 
                    getThreadContextClassLoader();
    
                    private 
                    static 
                    final ClassLoader 
                    getParent(ClassLoader);
    
                    static void 
                    <clinit>();
}

                

org/apache/commons/discovery/tools/PropertiesHolder.class

                    package org.apache.commons.discovery.tools;

                    public 
                    synchronized 
                    class PropertiesHolder {
    
                    private java.util.Properties 
                    properties;
    
                    private 
                    final String 
                    propertiesFileName;
    
                    public void PropertiesHolder(java.util.Properties);
    
                    public void PropertiesHolder(String);
    
                    public java.util.Properties 
                    getProperties(SPInterface, org.apache.commons.discovery.resource.ClassLoaders);
    
                    public String 
                    getPropertiesFileName();
}

                

org/apache/commons/discovery/tools/ResourceUtils.class

                    package org.apache.commons.discovery.tools;

                    public 
                    synchronized 
                    class ResourceUtils {
    
                    public void ResourceUtils();
    
                    public 
                    static String 
                    getPackageName(Class);
    
                    public 
                    static org.apache.commons.discovery.Resource 
                    getResource(Class, String, org.apache.commons.discovery.resource.ClassLoaders) 
                    throws org.apache.commons.discovery.DiscoveryException;
    
                    public 
                    static java.util.Properties 
                    loadProperties(Class, String, org.apache.commons.discovery.resource.ClassLoaders) 
                    throws org.apache.commons.discovery.DiscoveryException;
}

                

org/apache/commons/discovery/tools/Service$1.class

                    package org.apache.commons.discovery.tools;

                    synchronized 
                    class Service$1 
                    implements java.util.Enumeration {
    
                    private Object 
                    object;
    void Service$1(org.apache.commons.discovery.ResourceClassIterator, SPInterface);
    
                    public boolean 
                    hasMoreElements();
    
                    public Object 
                    nextElement();
    
                    private Object 
                    getNextClassInstance();
}

                

org/apache/commons/discovery/tools/Service.class

                    package org.apache.commons.discovery.tools;

                    public 
                    synchronized 
                    class Service {
    
                    protected void Service();
    
                    public 
                    static java.util.Enumeration 
                    providers(Class);
    
                    public 
                    static java.util.Enumeration 
                    providers(SPInterface, org.apache.commons.discovery.resource.ClassLoaders);
}

                

org/apache/commons/discovery/tools/SPInterface.class

                    package org.apache.commons.discovery.tools;

                    public 
                    synchronized 
                    class SPInterface {
    
                    private 
                    final Class 
                    spi;
    
                    private 
                    final String 
                    propertyName;
    
                    private Class[] 
                    paramClasses;
    
                    private Object[] 
                    params;
    
                    public void SPInterface(Class);
    
                    public void SPInterface(Class, String);
    
                    public void SPInterface(Class, Class[], Object[]);
    
                    public void SPInterface(Class, String, Class[], Object[]);
    
                    public String 
                    getSPName();
    
                    public Class 
                    getSPClass();
    
                    public String 
                    getPropertyName();
    
                    public Object 
                    newInstance(Class) 
                    throws org.apache.commons.discovery.DiscoveryException, InstantiationException, IllegalAccessException, NoSuchMethodException, reflect.InvocationTargetException;
    
                    public void 
                    verifyAncestory(Class);
}

                

BookStoreCXFWS/WebContent/WEB-INF/lib/commons-logging.jar

META-INF/MANIFEST.MF

Manifest-Version: 1.0 Bundle-Vendor: %bundleProvider Bundle-Localization: plugin Bundle-RequiredExecutionEnvironment: CDC-1.0/Foundation-1.0,J2SE-1.3 Bundle-Name: %bundleName Bundle-SymbolicName: org.apache.commons.logging Bundle-Version: 1.1.1.v201101211721 Export-Package: org.apache.commons.logging;version="1.1.1",org.apache. commons.logging.impl;version="1.1.1" Bundle-ManifestVersion: 2 Name: org/apache/commons/logging/package.html SHA1-Digest: jsD27d4EQN9p+MEqH9rxe+TqY6k= Name: org/apache/commons/logging/impl/WeakHashtable$Referenced.class SHA1-Digest: NeooLNbIIp/TivaR9vjxZqcOFic= Name: org/apache/commons/logging/LogFactory$1.class SHA1-Digest: EFi1uJZeKy0s2K7uFZwsysssjxw= Name: org/apache/commons/logging/impl/NoOpLog.class SHA1-Digest: 4KjJL+OljmKdCDRmEgWfJOpHTVA= Name: org/apache/commons/logging/LogFactory$2.class SHA1-Digest: m265gq2DvmGb+Q4Dd+J1Ttpzi3Q= Name: org/apache/commons/logging/LogFactory$3.class SHA1-Digest: BO+30s0b9/2Ump0mGvqpG3Lriq8= Name: org/apache/commons/logging/LogFactory$4.class SHA1-Digest: IFShuPFPKGzaIdZXkMJspeSyPlI= Name: plugin.properties SHA1-Digest: MvpejpigNq4m1El2Z+t2IL06PUk= Name: org/apache/commons/logging/LogFactory$5.class SHA1-Digest: 4kNmD1eB1QZ3mKbyTmLtbNgLs9g= Name: org/apache/commons/logging/impl/LogKitLogger.class SHA1-Digest: qRc/YSGZuInHuzUP0EJhftIgeyA= Name: org/apache/commons/logging/LogFactory$6.class SHA1-Digest: /mxWMtsBYRblajj/sIvmZytR/2U= Name: org/apache/commons/logging/impl/WeakHashtable.class SHA1-Digest: 5aoAlAWuNCOI/irlkkIS4exFFng= Name: org/apache/commons/logging/impl/LogFactoryImpl.class SHA1-Digest: P5QYhCGOLcadF/n+ydYq56++pnw= Name: org/apache/commons/logging/impl/WeakHashtable$WeakKey.class SHA1-Digest: jyioa165M60+vWMKY8o8fCIRekw= Name: org/apache/commons/logging/impl/ServletContextCleaner.class SHA1-Digest: sFp9fO/kjA0JUC+dK3Z3nAC9ZJI= Name: org/apache/commons/logging/impl/package.html SHA1-Digest: ETgtEWz0bVC946lreSXMDxD/W/M= Name: about_files/LICENSE.txt SHA1-Digest: K4uBUimqimHkg/tLoFiLi2xJGJA= Name: org/apache/commons/logging/impl/SimpleLog.class SHA1-Digest: Hekc4O5Dzzzma/tsPlvMqi6P6AA= Name: org/apache/commons/logging/impl/AvalonLogger.class SHA1-Digest: 6M8JPfH9m3NBkPQn07PwgQTpzIU= Name: org/apache/commons/logging/LogSource.class SHA1-Digest: JJGFZCIK+OVaONlH6QnsOMNGggo= Name: org/apache/commons/logging/impl/WeakHashtable$1.class SHA1-Digest: CzDBdslvq+J7MvynP4fxB7nwL3Q= Name: org/apache/commons/logging/impl/LogFactoryImpl$1.class SHA1-Digest: YeX27kt2BFeEhYdhxlKJwYjnd+A= Name: org/apache/commons/logging/impl/LogFactoryImpl$2.class SHA1-Digest: qVCkascpL/5iLtA41uAfc3ZZhgQ= Name: org/apache/commons/logging/Log.class SHA1-Digest: nrLaPNgvcs4drS/+jOOCSUhxDYw= Name: org/apache/commons/logging/impl/LogFactoryImpl$3.class SHA1-Digest: 4AuOYf1h3kBWaZ3PV5BtSXSa0Fg= Name: META-INF/eclipse.inf SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw= Name: about_files/NOTICE.txt SHA1-Digest: BZ6V8A2KQoLkbfaPI0+XTqMx4MM= Name: org/apache/commons/logging/impl/SimpleLog$1.class SHA1-Digest: D5isjETe98OZ9h02ngg5HwdMWoU= Name: about.html SHA1-Digest: wSvFOvi/x6tBDbpBiDytWpqpN98= Name: org/apache/commons/logging/impl/Jdk14Logger.class SHA1-Digest: xhzr9vykpFvXic6XiOKX6gQKbsA= Name: org/apache/commons/logging/impl/Log4JLogger.class SHA1-Digest: eIJm3Te6yiVaclkm03IZTgp9MgU= Name: org/apache/commons/logging/impl/Jdk13LumberjackLogger.class SHA1-Digest: ROvfBGTQ7QV/ZqTk1uB2PfyEsAs= Name: org/apache/commons/logging/LogConfigurationException.class SHA1-Digest: WaoG8YZzQkvcyl1ndlO6LXTnv+U= Name: org/apache/commons/logging/LogFactory.class SHA1-Digest: Q8pmtIQny/jNQN386rPkR0Nngdo= Name: org/apache/commons/logging/impl/WeakHashtable$Entry.class SHA1-Digest: WRN0mhknZJepFbkvW6VzEA3/43g=

META-INF/ECLIPSEF.SF

Signature-Version: 1.0 SHA1-Digest-Manifest: fc66wvSgzvXw0kjb8zlq70muiK8= Created-By: 1.6.0 (IBM Corporation) SHA1-Digest-Manifest-Main-Attributes: fbiDBekxPfoLZjcubyNqEtN6ynU= Name: org/apache/commons/logging/package.html SHA1-Digest: j1NmcAUKBcMhwxxrHo+wVFqZsto= Name: org/apache/commons/logging/impl/WeakHashtable$Referenced.class SHA1-Digest: DrCkWoJJm4x2PLzK4ETGMEyPYNs= Name: org/apache/commons/logging/impl/NoOpLog.class SHA1-Digest: Wg9ABb0ArQWadYXHM5CB279yJMo= Name: org/apache/commons/logging/LogFactory$1.class SHA1-Digest: ub0A6HvfQulavbP+Nj0SUswJiUI= Name: org/apache/commons/logging/LogFactory$2.class SHA1-Digest: iruxfec7fqouGELRKVGpUF2LfJQ= Name: org/apache/commons/logging/LogFactory$3.class SHA1-Digest: dd3eXPGtYJJtYyvKZfsLekMusB8= Name: org/apache/commons/logging/LogFactory$4.class SHA1-Digest: BDR6Zv2TqZlYSTBBp/6kbH8u1Lk= Name: org/apache/commons/logging/impl/LogKitLogger.class SHA1-Digest: 1uKQ4cOkbJWQu+ruvRiYlAW1RUA= Name: org/apache/commons/logging/LogFactory$5.class SHA1-Digest: rDTStXd2zSQLXZdWHTS5gghRMWA= Name: plugin.properties SHA1-Digest: cxIaiFWOcP+t/KdbmFPJXfmADPs= Name: org/apache/commons/logging/LogFactory$6.class SHA1-Digest: yNPwiFRdfvOX8ZORREAPDc2f2Bo= Name: org/apache/commons/logging/impl/WeakHashtable.class SHA1-Digest: MybcynA+8jqWPo0mSNoH4/Apaw4= Name: org/apache/commons/logging/impl/LogFactoryImpl.class SHA1-Digest: VR651/nQpqAtyCYPE+A+17zX1hU= Name: org/apache/commons/logging/impl/WeakHashtable$WeakKey.class SHA1-Digest: pUSETv9SLuAZiVIQlkZIRwmZDIA= Name: org/apache/commons/logging/impl/ServletContextCleaner.class SHA1-Digest: i2+G7MFYH2nw50ebBOcXfni1kug= Name: org/apache/commons/logging/impl/package.html SHA1-Digest: fWtlPj/NC8BlxGSJ5tMwXqEAOS8= Name: about_files/LICENSE.txt SHA1-Digest: AZ1Gz6XJJe7p5KHLgXjkErkNZ+A= Name: org/apache/commons/logging/impl/SimpleLog.class SHA1-Digest: esk5uzKA3PJo3t01JM8Z4QfZUYo= Name: org/apache/commons/logging/impl/AvalonLogger.class SHA1-Digest: r+pcUIlV7BGsk3j2oiDJaREmNrs= Name: org/apache/commons/logging/LogSource.class SHA1-Digest: XZUp0GBydA0MOlW3sV8WAHDKlPk= Name: org/apache/commons/logging/impl/WeakHashtable$1.class SHA1-Digest: BHqro36JynQpPrL+Lc+uGmCKyQw= Name: org/apache/commons/logging/impl/LogFactoryImpl$1.class SHA1-Digest: A8I5HV8nEeS4+JSNs2ZFwiqfU0Q= Name: org/apache/commons/logging/impl/LogFactoryImpl$2.class SHA1-Digest: 2LamK9F9IVqG3Sad/i0UK6nDkzg= Name: org/apache/commons/logging/impl/LogFactoryImpl$3.class SHA1-Digest: LX0GAZAx8lLHjnW09PZOcScMSXQ= Name: org/apache/commons/logging/Log.class SHA1-Digest: vFsSXXVb6ENgUB6pbkeDPLmh+X8= Name: about_files/NOTICE.txt SHA1-Digest: V+d/8JzMFhIE9yoTUn2tkUgIro4= Name: META-INF/eclipse.inf SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk= Name: org/apache/commons/logging/impl/SimpleLog$1.class SHA1-Digest: 7b43WaGyBSJUACnbB8zq6c4VMaE= Name: org/apache/commons/logging/impl/Jdk14Logger.class SHA1-Digest: 0+8wEVnhrGFbwctg+/yHYKaX8yg= Name: about.html SHA1-Digest: H+l9OKiVEMx53jlpBShgjKqUIsk= Name: org/apache/commons/logging/impl/Log4JLogger.class SHA1-Digest: N8wSUzf9kExhJm70T9WtjX7Id/k= Name: org/apache/commons/logging/impl/Jdk13LumberjackLogger.class SHA1-Digest: CU2LWZKoGm1+6NougcPqd4I4GAc= Name: org/apache/commons/logging/LogConfigurationException.class SHA1-Digest: 1KfExSxEHtxKISTQ0/7ev/Dc0Sw= Name: org/apache/commons/logging/LogFactory.class SHA1-Digest: tjDd77M3SbeJqpDZV04TVevRBw4= Name: org/apache/commons/logging/impl/WeakHashtable$Entry.class SHA1-Digest: PqOxUQqtJ0fsZdzdCwMcNHRIhaw=

META-INF/ECLIPSEF.RSA

META-INF/eclipse.inf

#Processed using Jarprocessor pack200.args = -E4 pack200.conditioned = true

about.html

About This Content

April 6, 2009

License

The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available at http://www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, "Program" will mean the Content.

If you did not receive this Content directly from the Eclipse Foundation, the Content is being redistributed by another party ("Redistributor") and different terms and conditions may apply to your use of any object code in the Content. Check the Redistributor's license that was provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise indicated below, the terms and conditions of the EPL still apply to any source code in the Content and such source code may be obtained at http://www.eclipse.org.

Third Party Content

The Content includes items that have been sourced from third parties as set out below. If you did not receive this Content directly from the Eclipse Foundation, the following is provided for informational purposes only, and you should look to the Redistributor’s license for terms and conditions of use.

Commons Logging 1.1.1

The plug-in includes Commons Logging 1.1.1 ("Commons Logging") developed by the Apache Software Foundation. Therefore:

This product includes software developed by the Apache Software Foundation ( http://www.apache.org/).

The Commons Logging binary code is included with no modifications except postprocessing (pack200 conditioning and signing). The corresponding Commons Logging source code is located in src.zip.

Commons Logging is:

Copyright (c) 1997-2007 The Apache Software Foundation. All rights reserved.

Your use of the Commons Logging code is subject to the terms and conditions of the Apache Software License 2.0. A copy of the license is contained in the file LICENSE.txt and is also available at http://www.apache.org/licenses/LICENSE-2.0.html.

The Apache attribution NOTICE.txt file is included with the Content in accordance with 4d of the Apache License, Version 2.0.

Examples and documentation as well as updated source code for Commons Logging is available at http://commons.apache.org/logging/.

about_files/LICENSE.txt

Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

about_files/NOTICE.txt

This product includes software developed by The Apache Software Foundation (http://www.apache.org/).

org/apache/commons/logging/Log.class

                    package org.apache.commons.logging;

                    public 
                    abstract 
                    interface Log {
    
                    public 
                    abstract boolean 
                    isDebugEnabled();
    
                    public 
                    abstract boolean 
                    isErrorEnabled();
    
                    public 
                    abstract boolean 
                    isFatalEnabled();
    
                    public 
                    abstract boolean 
                    isInfoEnabled();
    
                    public 
                    abstract boolean 
                    isTraceEnabled();
    
                    public 
                    abstract boolean 
                    isWarnEnabled();
    
                    public 
                    abstract void 
                    trace(Object);
    
                    public 
                    abstract void 
                    trace(Object, Throwable);
    
                    public 
                    abstract void 
                    debug(Object);
    
                    public 
                    abstract void 
                    debug(Object, Throwable);
    
                    public 
                    abstract void 
                    info(Object);
    
                    public 
                    abstract void 
                    info(Object, Throwable);
    
                    public 
                    abstract void 
                    warn(Object);
    
                    public 
                    abstract void 
                    warn(Object, Throwable);
    
                    public 
                    abstract void 
                    error(Object);
    
                    public 
                    abstract void 
                    error(Object, Throwable);
    
                    public 
                    abstract void 
                    fatal(Object);
    
                    public 
                    abstract void 
                    fatal(Object, Throwable);
}

                

org/apache/commons/logging/LogConfigurationException.class

                    package org.apache.commons.logging;

                    public 
                    synchronized 
                    class LogConfigurationException 
                    extends RuntimeException {
    
                    protected Throwable 
                    cause;
    
                    public void LogConfigurationException();
    
                    public void LogConfigurationException(String);
    
                    public void LogConfigurationException(Throwable);
    
                    public void LogConfigurationException(String, Throwable);
    
                    public Throwable 
                    getCause();
}

                

org/apache/commons/logging/LogFactory$1.class

                    package org.apache.commons.logging;

                    synchronized 
                    class LogFactory$1 
                    implements java.security.PrivilegedAction {
    void LogFactory$1();
    
                    public Object 
                    run();
}

                

org/apache/commons/logging/LogFactory$2.class

                    package org.apache.commons.logging;

                    synchronized 
                    class LogFactory$2 
                    implements java.security.PrivilegedAction {
    void LogFactory$2(String, ClassLoader);
    
                    public Object 
                    run();
}

                

org/apache/commons/logging/LogFactory$3.class

                    package org.apache.commons.logging;

                    synchronized 
                    class LogFactory$3 
                    implements java.security.PrivilegedAction {
    void LogFactory$3(ClassLoader, String);
    
                    public Object 
                    run();
}

                

org/apache/commons/logging/LogFactory$4.class

                    package org.apache.commons.logging;

                    synchronized 
                    class LogFactory$4 
                    implements java.security.PrivilegedAction {
    void LogFactory$4(ClassLoader, String);
    
                    public Object 
                    run();
}

                

org/apache/commons/logging/LogFactory$5.class

                    package org.apache.commons.logging;

                    synchronized 
                    class LogFactory$5 
                    implements java.security.PrivilegedAction {
    void LogFactory$5(java.net.URL);
    
                    public Object 
                    run();
}

                

org/apache/commons/logging/LogFactory$6.class

                    package org.apache.commons.logging;

                    synchronized 
                    class LogFactory$6 
                    implements java.security.PrivilegedAction {
    void LogFactory$6(String, String);
    
                    public Object 
                    run();
}

                

org/apache/commons/logging/LogFactory.class

                    package org.apache.commons.logging;

                    public 
                    abstract 
                    synchronized 
                    class LogFactory {
    
                    public 
                    static 
                    final String 
                    PRIORITY_KEY = priority;
    
                    public 
                    static 
                    final String 
                    TCCL_KEY = use_tccl;
    
                    public 
                    static 
                    final String 
                    FACTORY_PROPERTY = org.apache.commons.logging.LogFactory;
    
                    public 
                    static 
                    final String 
                    FACTORY_DEFAULT = org.apache.commons.logging.impl.LogFactoryImpl;
    
                    public 
                    static 
                    final String 
                    FACTORY_PROPERTIES = commons-logging.properties;
    
                    protected 
                    static 
                    final String 
                    SERVICE_ID = META-INF/services/org.apache.commons.logging.LogFactory;
    
                    public 
                    static 
                    final String 
                    DIAGNOSTICS_DEST_PROPERTY = org.apache.commons.logging.diagnostics.dest;
    
                    private 
                    static java.io.PrintStream 
                    diagnosticsStream;
    
                    private 
                    static String 
                    diagnosticPrefix;
    
                    public 
                    static 
                    final String 
                    HASHTABLE_IMPLEMENTATION_PROPERTY = org.apache.commons.logging.LogFactory.HashtableImpl;
    
                    private 
                    static 
                    final String 
                    WEAK_HASHTABLE_CLASSNAME = org.apache.commons.logging.impl.WeakHashtable;
    
                    private 
                    static ClassLoader 
                    thisClassLoader;
    
                    protected 
                    static java.util.Hashtable 
                    factories;
    
                    protected 
                    static LogFactory 
                    nullClassLoaderFactory;
    
                    protected void LogFactory();
    
                    public 
                    abstract Object 
                    getAttribute(String);
    
                    public 
                    abstract String[] 
                    getAttributeNames();
    
                    public 
                    abstract Log 
                    getInstance(Class) 
                    throws LogConfigurationException;
    
                    public 
                    abstract Log 
                    getInstance(String) 
                    throws LogConfigurationException;
    
                    public 
                    abstract void 
                    release();
    
                    public 
                    abstract void 
                    removeAttribute(String);
    
                    public 
                    abstract void 
                    setAttribute(String, Object);
    
                    private 
                    static 
                    final java.util.Hashtable 
                    createFactoryStore();
    
                    private 
                    static String 
                    trim(String);
    
                    public 
                    static LogFactory 
                    getFactory() 
                    throws LogConfigurationException;
    
                    public 
                    static Log 
                    getLog(Class) 
                    throws LogConfigurationException;
    
                    public 
                    static Log 
                    getLog(String) 
                    throws LogConfigurationException;
    
                    public 
                    static void 
                    release(ClassLoader);
    
                    public 
                    static void 
                    releaseAll();
    
                    protected 
                    static ClassLoader 
                    getClassLoader(Class);
    
                    protected 
                    static ClassLoader 
                    getContextClassLoader() 
                    throws LogConfigurationException;
    
                    private 
                    static ClassLoader 
                    getContextClassLoaderInternal() 
                    throws LogConfigurationException;
    
                    protected 
                    static ClassLoader 
                    directGetContextClassLoader() 
                    throws LogConfigurationException;
    
                    private 
                    static LogFactory 
                    getCachedFactory(ClassLoader);
    
                    private 
                    static void 
                    cacheFactory(ClassLoader, LogFactory);
    
                    protected 
                    static LogFactory 
                    newFactory(String, ClassLoader, ClassLoader) 
                    throws LogConfigurationException;
    
                    protected 
                    static LogFactory 
                    newFactory(String, ClassLoader);
    
                    protected 
                    static Object 
                    createFactory(String, ClassLoader);
    
                    private 
                    static boolean 
                    implementsLogFactory(Class);
    
                    private 
                    static java.io.InputStream 
                    getResourceAsStream(ClassLoader, String);
    
                    private 
                    static java.util.Enumeration 
                    getResources(ClassLoader, String);
    
                    private 
                    static java.util.Properties 
                    getProperties(java.net.URL);
    
                    private 
                    static 
                    final java.util.Properties 
                    getConfigurationFile(ClassLoader, String);
    
                    private 
                    static String 
                    getSystemProperty(String, String) 
                    throws SecurityException;
    
                    private 
                    static void 
                    initDiagnostics();
    
                    protected 
                    static boolean 
                    isDiagnosticsEnabled();
    
                    private 
                    static 
                    final void 
                    logDiagnostic(String);
    
                    protected 
                    static 
                    final void 
                    logRawDiagnostic(String);
    
                    private 
                    static void 
                    logClassLoaderEnvironment(Class);
    
                    private 
                    static void 
                    logHierarchy(String, ClassLoader);
    
                    public 
                    static String 
                    objectId(Object);
    
                    static void 
                    <clinit>();
}

                

org/apache/commons/logging/LogSource.class

                    package org.apache.commons.logging;

                    public 
                    synchronized 
                    class LogSource {
    
                    protected 
                    static java.util.Hashtable 
                    logs;
    
                    protected 
                    static boolean 
                    log4jIsAvailable;
    
                    protected 
                    static boolean 
                    jdk14IsAvailable;
    
                    protected 
                    static reflect.Constructor 
                    logImplctor;
    
                    private void LogSource();
    
                    public 
                    static void 
                    setLogImplementation(String) 
                    throws LinkageError, ExceptionInInitializerError, NoSuchMethodException, SecurityException, ClassNotFoundException;
    
                    public 
                    static void 
                    setLogImplementation(Class) 
                    throws LinkageError, ExceptionInInitializerError, NoSuchMethodException, SecurityException;
    
                    public 
                    static Log 
                    getInstance(String);
    
                    public 
                    static Log 
                    getInstance(Class);
    
                    public 
                    static Log 
                    makeNewLogInstance(String);
    
                    public 
                    static String[] 
                    getLogNames();
    
                    static void 
                    <clinit>();
}

                

org/apache/commons/logging/impl/AvalonLogger.class

                    package org.apache.commons.logging.impl;

                    public 
                    synchronized 
                    class AvalonLogger 
                    implements org.apache.commons.logging.Log {
    
                    private 
                    static org.apache.avalon.framework.logger.Logger 
                    defaultLogger;
    
                    private 
                    transient org.apache.avalon.framework.logger.Logger 
                    logger;
    
                    public void AvalonLogger(org.apache.avalon.framework.logger.Logger);
    
                    public void AvalonLogger(String);
    
                    public org.apache.avalon.framework.logger.Logger 
                    getLogger();
    
                    public 
                    static void 
                    setDefaultLogger(org.apache.avalon.framework.logger.Logger);
    
                    public void 
                    debug(Object, Throwable);
    
                    public void 
                    debug(Object);
    
                    public void 
                    error(Object, Throwable);
    
                    public void 
                    error(Object);
    
                    public void 
                    fatal(Object, Throwable);
    
                    public void 
                    fatal(Object);
    
                    public void 
                    info(Object, Throwable);
    
                    public void 
                    info(Object);
    
                    public boolean 
                    isDebugEnabled();
    
                    public boolean 
                    isErrorEnabled();
    
                    public boolean 
                    isFatalEnabled();
    
                    public boolean 
                    isInfoEnabled();
    
                    public boolean 
                    isTraceEnabled();
    
                    public boolean 
                    isWarnEnabled();
    
                    public void 
                    trace(Object, Throwable);
    
                    public void 
                    trace(Object);
    
                    public void 
                    warn(Object, Throwable);
    
                    public void 
                    warn(Object);
    
                    static void 
                    <clinit>();
}

                

org/apache/commons/logging/impl/Jdk13LumberjackLogger.class

                    package org.apache.commons.logging.impl;

                    public 
                    synchronized 
                    class Jdk13LumberjackLogger 
                    implements org.apache.commons.logging.Log, java.io.Serializable {
    
                    protected 
                    transient java.util.logging.Logger 
                    logger;
    
                    protected String 
                    name;
    
                    private String 
                    sourceClassName;
    
                    private String 
                    sourceMethodName;
    
                    private boolean 
                    classAndMethodFound;
    
                    protected 
                    static 
                    final java.util.logging.Level 
                    dummyLevel;
    
                    public void Jdk13LumberjackLogger(String);
    
                    private void 
                    log(java.util.logging.Level, String, Throwable);
    
                    private void 
                    getClassAndMethod();
    
                    public void 
                    debug(Object);
    
                    public void 
                    debug(Object, Throwable);
    
                    public void 
                    error(Object);
    
                    public void 
                    error(Object, Throwable);
    
                    public void 
                    fatal(Object);
    
                    public void 
                    fatal(Object, Throwable);
    
                    public java.util.logging.Logger 
                    getLogger();
    
                    public void 
                    info(Object);
    
                    public void 
                    info(Object, Throwable);
    
                    public boolean 
                    isDebugEnabled();
    
                    public boolean 
                    isErrorEnabled();
    
                    public boolean 
                    isFatalEnabled();
    
                    public boolean 
                    isInfoEnabled();
    
                    public boolean 
                    isTraceEnabled();
    
                    public boolean 
                    isWarnEnabled();
    
                    public void 
                    trace(Object);
    
                    public void 
                    trace(Object, Throwable);
    
                    public void 
                    warn(Object);
    
                    public void 
                    warn(Object, Throwable);
    
                    static void 
                    <clinit>();
}

                

org/apache/commons/logging/impl/Jdk14Logger.class

                    package org.apache.commons.logging.impl;

                    public 
                    synchronized 
                    class Jdk14Logger 
                    implements org.apache.commons.logging.Log, java.io.Serializable {
    
                    protected 
                    static 
                    final java.util.logging.Level 
                    dummyLevel;
    
                    protected 
                    transient java.util.logging.Logger 
                    logger;
    
                    protected String 
                    name;
    
                    public void Jdk14Logger(String);
    
                    private void 
                    log(java.util.logging.Level, String, Throwable);
    
                    public void 
                    debug(Object);
    
                    public void 
                    debug(Object, Throwable);
    
                    public void 
                    error(Object);
    
                    public void 
                    error(Object, Throwable);
    
                    public void 
                    fatal(Object);
    
                    public void 
                    fatal(Object, Throwable);
    
                    public java.util.logging.Logger 
                    getLogger();
    
                    public void 
                    info(Object);
    
                    public void 
                    info(Object, Throwable);
    
                    public boolean 
                    isDebugEnabled();
    
                    public boolean 
                    isErrorEnabled();
    
                    public boolean 
                    isFatalEnabled();
    
                    public boolean 
                    isInfoEnabled();
    
                    public boolean 
                    isTraceEnabled();
    
                    public boolean 
                    isWarnEnabled();
    
                    public void 
                    trace(Object);
    
                    public void 
                    trace(Object, Throwable);
    
                    public void 
                    warn(Object);
    
                    public void 
                    warn(Object, Throwable);
    
                    static void 
                    <clinit>();
}

                

org/apache/commons/logging/impl/Log4JLogger.class

                    package org.apache.commons.logging.impl;

                    public 
                    synchronized 
                    class Log4JLogger 
                    implements org.apache.commons.logging.Log, java.io.Serializable {
    
                    private 
                    static 
                    final String 
                    FQCN;
    
                    private 
                    transient org.apache.log4j.Logger 
                    logger;
    
                    private String 
                    name;
    
                    private 
                    static org.apache.log4j.Priority 
                    traceLevel;
    
                    public void Log4JLogger();
    
                    public void Log4JLogger(String);
    
                    public void Log4JLogger(org.apache.log4j.Logger);
    
                    public void 
                    trace(Object);
    
                    public void 
                    trace(Object, Throwable);
    
                    public void 
                    debug(Object);
    
                    public void 
                    debug(Object, Throwable);
    
                    public void 
                    info(Object);
    
                    public void 
                    info(Object, Throwable);
    
                    public void 
                    warn(Object);
    
                    public void 
                    warn(Object, Throwable);
    
                    public void 
                    error(Object);
    
                    public void 
                    error(Object, Throwable);
    
                    public void 
                    fatal(Object);
    
                    public void 
                    fatal(Object, Throwable);
    
                    public org.apache.log4j.Logger 
                    getLogger();
    
                    public boolean 
                    isDebugEnabled();
    
                    public boolean 
                    isErrorEnabled();
    
                    public boolean 
                    isFatalEnabled();
    
                    public boolean 
                    isInfoEnabled();
    
                    public boolean 
                    isTraceEnabled();
    
                    public boolean 
                    isWarnEnabled();
    
                    static void 
                    <clinit>();
}

                

org/apache/commons/logging/impl/LogFactoryImpl$1.class

                    package org.apache.commons.logging.impl;

                    synchronized 
                    class LogFactoryImpl$1 
                    implements java.security.PrivilegedAction {
    void LogFactoryImpl$1();
    
                    public Object 
                    run();
}

                

org/apache/commons/logging/impl/LogFactoryImpl$2.class

                    package org.apache.commons.logging.impl;

                    synchronized 
                    class LogFactoryImpl$2 
                    implements java.security.PrivilegedAction {
    void LogFactoryImpl$2(String, String);
    
                    public Object 
                    run();
}

                

org/apache/commons/logging/impl/LogFactoryImpl$3.class

                    package org.apache.commons.logging.impl;

                    synchronized 
                    class LogFactoryImpl$3 
                    implements java.security.PrivilegedAction {
    void LogFactoryImpl$3(LogFactoryImpl, ClassLoader);
    
                    public Object 
                    run();
}

                

org/apache/commons/logging/impl/LogFactoryImpl.class

                    package org.apache.commons.logging.impl;

                    public 
                    synchronized 
                    class LogFactoryImpl 
                    extends org.apache.commons.logging.LogFactory {
    
                    private 
                    static 
                    final String 
                    LOGGING_IMPL_LOG4J_LOGGER = org.apache.commons.logging.impl.Log4JLogger;
    
                    private 
                    static 
                    final String 
                    LOGGING_IMPL_JDK14_LOGGER = org.apache.commons.logging.impl.Jdk14Logger;
    
                    private 
                    static 
                    final String 
                    LOGGING_IMPL_LUMBERJACK_LOGGER = org.apache.commons.logging.impl.Jdk13LumberjackLogger;
    
                    private 
                    static 
                    final String 
                    LOGGING_IMPL_SIMPLE_LOGGER = org.apache.commons.logging.impl.SimpleLog;
    
                    private 
                    static 
                    final String 
                    PKG_IMPL = org.apache.commons.logging.impl.;
    
                    private 
                    static 
                    final int 
                    PKG_LEN;
    
                    public 
                    static 
                    final String 
                    LOG_PROPERTY = org.apache.commons.logging.Log;
    
                    protected 
                    static 
                    final String 
                    LOG_PROPERTY_OLD = org.apache.commons.logging.log;
    
                    public 
                    static 
                    final String 
                    ALLOW_FLAWED_CONTEXT_PROPERTY = org.apache.commons.logging.Log.allowFlawedContext;
    
                    public 
                    static 
                    final String 
                    ALLOW_FLAWED_DISCOVERY_PROPERTY = org.apache.commons.logging.Log.allowFlawedDiscovery;
    
                    public 
                    static 
                    final String 
                    ALLOW_FLAWED_HIERARCHY_PROPERTY = org.apache.commons.logging.Log.allowFlawedHierarchy;
    
                    private 
                    static 
                    final String[] 
                    classesToDiscover;
    
                    private boolean 
                    useTCCL;
    
                    private String 
                    diagnosticPrefix;
    
                    protected java.util.Hashtable 
                    attributes;
    
                    protected java.util.Hashtable 
                    instances;
    
                    private String 
                    logClassName;
    
                    protected reflect.Constructor 
                    logConstructor;
    
                    protected Class[] 
                    logConstructorSignature;
    
                    protected reflect.Method 
                    logMethod;
    
                    protected Class[] 
                    logMethodSignature;
    
                    private boolean 
                    allowFlawedContext;
    
                    private boolean 
                    allowFlawedDiscovery;
    
                    private boolean 
                    allowFlawedHierarchy;
    
                    public void LogFactoryImpl();
    
                    public Object 
                    getAttribute(String);
    
                    public String[] 
                    getAttributeNames();
    
                    public org.apache.commons.logging.Log 
                    getInstance(Class) 
                    throws org.apache.commons.logging.LogConfigurationException;
    
                    public org.apache.commons.logging.Log 
                    getInstance(String) 
                    throws org.apache.commons.logging.LogConfigurationException;
    
                    public void 
                    release();
    
                    public void 
                    removeAttribute(String);
    
                    public void 
                    setAttribute(String, Object);
    
                    protected 
                    static ClassLoader 
                    getContextClassLoader() 
                    throws org.apache.commons.logging.LogConfigurationException;
    
                    protected 
                    static boolean 
                    isDiagnosticsEnabled();
    
                    protected 
                    static ClassLoader 
                    getClassLoader(Class);
    
                    private void 
                    initDiagnostics();
    
                    protected void 
                    logDiagnostic(String);
    
                    protected String 
                    getLogClassName();
    
                    protected reflect.Constructor 
                    getLogConstructor() 
                    throws org.apache.commons.logging.LogConfigurationException;
    
                    protected boolean 
                    isJdk13LumberjackAvailable();
    
                    protected boolean 
                    isJdk14Available();
    
                    protected boolean 
                    isLog4JAvailable();
    
                    protected org.apache.commons.logging.Log 
                    newInstance(String) 
                    throws org.apache.commons.logging.LogConfigurationException;
    
                    private 
                    static ClassLoader 
                    getContextClassLoaderInternal() 
                    throws org.apache.commons.logging.LogConfigurationException;
    
                    private 
                    static String 
                    getSystemProperty(String, String) 
                    throws SecurityException;
    
                    private ClassLoader 
                    getParentClassLoader(ClassLoader);
    
                    private boolean 
                    isLogLibraryAvailable(String, String);
    
                    private String 
                    getConfigurationValue(String);
    
                    private boolean 
                    getBooleanConfiguration(String, boolean);
    
                    private void 
                    initConfiguration();
    
                    private org.apache.commons.logging.Log 
                    discoverLogImplementation(String) 
                    throws org.apache.commons.logging.LogConfigurationException;
    
                    private void 
                    informUponSimilarName(StringBuffer, String, String);
    
                    private String 
                    findUserSpecifiedLogClassName();
    
                    private org.apache.commons.logging.Log 
                    createLogFromClass(String, String, boolean) 
                    throws org.apache.commons.logging.LogConfigurationException;
    
                    private ClassLoader 
                    getBaseClassLoader() 
                    throws org.apache.commons.logging.LogConfigurationException;
    
                    private ClassLoader 
                    getLowestClassLoader(ClassLoader, ClassLoader);
    
                    private void 
                    handleFlawedDiscovery(String, ClassLoader, Throwable);
    
                    private void 
                    handleFlawedHierarchy(ClassLoader, Class) 
                    throws org.apache.commons.logging.LogConfigurationException;
    
                    static void 
                    <clinit>();
}

                

org/apache/commons/logging/impl/LogKitLogger.class

                    package org.apache.commons.logging.impl;

                    public 
                    synchronized 
                    class LogKitLogger 
                    implements org.apache.commons.logging.Log, java.io.Serializable {
    
                    protected 
                    transient org.apache.log.Logger 
                    logger;
    
                    protected String 
                    name;
    
                    public void LogKitLogger(String);
    
                    public org.apache.log.Logger 
                    getLogger();
    
                    public void 
                    trace(Object);
    
                    public void 
                    trace(Object, Throwable);
    
                    public void 
                    debug(Object);
    
                    public void 
                    debug(Object, Throwable);
    
                    public void 
                    info(Object);
    
                    public void 
                    info(Object, Throwable);
    
                    public void 
                    warn(Object);
    
                    public void 
                    warn(Object, Throwable);
    
                    public void 
                    error(Object);
    
                    public void 
                    error(Object, Throwable);
    
                    public void 
                    fatal(Object);
    
                    public void 
                    fatal(Object, Throwable);
    
                    public boolean 
                    isDebugEnabled();
    
                    public boolean 
                    isErrorEnabled();
    
                    public boolean 
                    isFatalEnabled();
    
                    public boolean 
                    isInfoEnabled();
    
                    public boolean 
                    isTraceEnabled();
    
                    public boolean 
                    isWarnEnabled();
}

                

org/apache/commons/logging/impl/NoOpLog.class

                    package org.apache.commons.logging.impl;

                    public 
                    synchronized 
                    class NoOpLog 
                    implements org.apache.commons.logging.Log, java.io.Serializable {
    
                    public void NoOpLog();
    
                    public void NoOpLog(String);
    
                    public void 
                    trace(Object);
    
                    public void 
                    trace(Object, Throwable);
    
                    public void 
                    debug(Object);
    
                    public void 
                    debug(Object, Throwable);
    
                    public void 
                    info(Object);
    
                    public void 
                    info(Object, Throwable);
    
                    public void 
                    warn(Object);
    
                    public void 
                    warn(Object, Throwable);
    
                    public void 
                    error(Object);
    
                    public void 
                    error(Object, Throwable);
    
                    public void 
                    fatal(Object);
    
                    public void 
                    fatal(Object, Throwable);
    
                    public 
                    final boolean 
                    isDebugEnabled();
    
                    public 
                    final boolean 
                    isErrorEnabled();
    
                    public 
                    final boolean 
                    isFatalEnabled();
    
                    public 
                    final boolean 
                    isInfoEnabled();
    
                    public 
                    final boolean 
                    isTraceEnabled();
    
                    public 
                    final boolean 
                    isWarnEnabled();
}

                

org/apache/commons/logging/impl/ServletContextCleaner.class

                    package org.apache.commons.logging.impl;

                    public 
                    synchronized 
                    class ServletContextCleaner 
                    implements javax.servlet.ServletContextListener {
    
                    private Class[] 
                    RELEASE_SIGNATURE;
    
                    public void ServletContextCleaner();
    
                    public void 
                    contextDestroyed(javax.servlet.ServletContextEvent);
    
                    public void 
                    contextInitialized(javax.servlet.ServletContextEvent);
}

                

org/apache/commons/logging/impl/SimpleLog$1.class

                    package org.apache.commons.logging.impl;

                    synchronized 
                    class SimpleLog$1 
                    implements java.security.PrivilegedAction {
    void SimpleLog$1(String);
    
                    public Object 
                    run();
}

                

org/apache/commons/logging/impl/SimpleLog.class

                    package org.apache.commons.logging.impl;

                    public 
                    synchronized 
                    class SimpleLog 
                    implements org.apache.commons.logging.Log, java.io.Serializable {
    
                    protected 
                    static 
                    final String 
                    systemPrefix = org.apache.commons.logging.simplelog.;
    
                    protected 
                    static 
                    final java.util.Properties 
                    simpleLogProps;
    
                    protected 
                    static 
                    final String 
                    DEFAULT_DATE_TIME_FORMAT = yyyy/MM/dd HH:mm:ss:SSS zzz;
    
                    protected 
                    static boolean 
                    showLogName;
    
                    protected 
                    static boolean 
                    showShortName;
    
                    protected 
                    static boolean 
                    showDateTime;
    
                    protected 
                    static String 
                    dateTimeFormat;
    
                    protected 
                    static java.text.DateFormat 
                    dateFormatter;
    
                    public 
                    static 
                    final int 
                    LOG_LEVEL_TRACE = 1;
    
                    public 
                    static 
                    final int 
                    LOG_LEVEL_DEBUG = 2;
    
                    public 
                    static 
                    final int 
                    LOG_LEVEL_INFO = 3;
    
                    public 
                    static 
                    final int 
                    LOG_LEVEL_WARN = 4;
    
                    public 
                    static 
                    final int 
                    LOG_LEVEL_ERROR = 5;
    
                    public 
                    static 
                    final int 
                    LOG_LEVEL_FATAL = 6;
    
                    public 
                    static 
                    final int 
                    LOG_LEVEL_ALL = 0;
    
                    public 
                    static 
                    final int 
                    LOG_LEVEL_OFF = 7;
    
                    protected String 
                    logName;
    
                    protected int 
                    currentLogLevel;
    
                    private String 
                    shortLogName;
    
                    private 
                    static String 
                    getStringProperty(String);
    
                    private 
                    static String 
                    getStringProperty(String, String);
    
                    private 
                    static boolean 
                    getBooleanProperty(String, boolean);
    
                    public void SimpleLog(String);
    
                    public void 
                    setLevel(int);
    
                    public int 
                    getLevel();
    
                    protected void 
                    log(int, Object, Throwable);
    
                    protected void 
                    write(StringBuffer);
    
                    protected boolean 
                    isLevelEnabled(int);
    
                    public 
                    final void 
                    debug(Object);
    
                    public 
                    final void 
                    debug(Object, Throwable);
    
                    public 
                    final void 
                    trace(Object);
    
                    public 
                    final void 
                    trace(Object, Throwable);
    
                    public 
                    final void 
                    info(Object);
    
                    public 
                    final void 
                    info(Object, Throwable);
    
                    public 
                    final void 
                    warn(Object);
    
                    public 
                    final void 
                    warn(Object, Throwable);
    
                    public 
                    final void 
                    error(Object);
    
                    public 
                    final void 
                    error(Object, Throwable);
    
                    public 
                    final void 
                    fatal(Object);
    
                    public 
                    final void 
                    fatal(Object, Throwable);
    
                    public 
                    final boolean 
                    isDebugEnabled();
    
                    public 
                    final boolean 
                    isErrorEnabled();
    
                    public 
                    final boolean 
                    isFatalEnabled();
    
                    public 
                    final boolean 
                    isInfoEnabled();
    
                    public 
                    final boolean 
                    isTraceEnabled();
    
                    public 
                    final boolean 
                    isWarnEnabled();
    
                    private 
                    static ClassLoader 
                    getContextClassLoader();
    
                    private 
                    static java.io.InputStream 
                    getResourceAsStream(String);
    
                    static void 
                    <clinit>();
}

                

org/apache/commons/logging/impl/WeakHashtable$1.class

                    package org.apache.commons.logging.impl;

                    synchronized 
                    class WeakHashtable$1 
                    implements java.util.Enumeration {
    void WeakHashtable$1(WeakHashtable, java.util.Enumeration);
    
                    public boolean 
                    hasMoreElements();
    
                    public Object 
                    nextElement();
}

                

org/apache/commons/logging/impl/WeakHashtable$Entry.class

                    package org.apache.commons.logging.impl;

                    final 
                    synchronized 
                    class WeakHashtable$Entry 
                    implements java.util.Map$Entry {
    
                    private 
                    final Object 
                    key;
    
                    private 
                    final Object 
                    value;
    
                    private void WeakHashtable$Entry(Object, Object);
    
                    public boolean 
                    equals(Object);
    
                    public int 
                    hashCode();
    
                    public Object 
                    setValue(Object);
    
                    public Object 
                    getValue();
    
                    public Object 
                    getKey();
}

                

org/apache/commons/logging/impl/WeakHashtable$Referenced.class

                    package org.apache.commons.logging.impl;

                    final 
                    synchronized 
                    class WeakHashtable$Referenced {
    
                    private 
                    final ref.WeakReference 
                    reference;
    
                    private 
                    final int 
                    hashCode;
    
                    private void WeakHashtable$Referenced(Object);
    
                    private void WeakHashtable$Referenced(Object, ref.ReferenceQueue);
    
                    public int 
                    hashCode();
    
                    private Object 
                    getValue();
    
                    public boolean 
                    equals(Object);
}

                

org/apache/commons/logging/impl/WeakHashtable$WeakKey.class

                    package org.apache.commons.logging.impl;

                    final 
                    synchronized 
                    class WeakHashtable$WeakKey 
                    extends ref.WeakReference {
    
                    private 
                    final WeakHashtable$Referenced 
                    referenced;
    
                    private void WeakHashtable$WeakKey(Object, ref.ReferenceQueue, WeakHashtable$Referenced);
    
                    private WeakHashtable$Referenced 
                    getReferenced();
}

                

org/apache/commons/logging/impl/WeakHashtable.class

                    package org.apache.commons.logging.impl;

                    public 
                    final 
                    synchronized 
                    class WeakHashtable 
                    extends java.util.Hashtable {
    
                    private 
                    static 
                    final int 
                    MAX_CHANGES_BEFORE_PURGE = 100;
    
                    private 
                    static 
                    final int 
                    PARTIAL_PURGE_COUNT = 10;
    
                    private ref.ReferenceQueue 
                    queue;
    
                    private int 
                    changeCount;
    
                    public void WeakHashtable();
    
                    public boolean 
                    containsKey(Object);
    
                    public java.util.Enumeration 
                    elements();
    
                    public java.util.Set 
                    entrySet();
    
                    public Object 
                    get(Object);
    
                    public java.util.Enumeration 
                    keys();
    
                    public java.util.Set 
                    keySet();
    
                    public Object 
                    put(Object, Object);
    
                    public void 
                    putAll(java.util.Map);
    
                    public java.util.Collection 
                    values();
    
                    public Object 
                    remove(Object);
    
                    public boolean 
                    isEmpty();
    
                    public int 
                    size();
    
                    public String 
                    toString();
    
                    protected void 
                    rehash();
    
                    private void 
                    purge();
    
                    private void 
                    purgeOne();
}

                

org/apache/commons/logging/impl/package.html

Concrete implementations of commons-logging wrapper APIs.

org/apache/commons/logging/package.html

Simple wrapper API around multiple logging APIs.

Overview

This package provides an API for logging in server-based applications that can be used around a variety of different logging implementations, including prebuilt support for the following:

  • Log4J (version 1.2 or later) from Apache's Jakarta project. Each named Log instance is connected to a corresponding Log4J Logger.
  • JDK Logging API, included in JDK 1.4 or later systems. Each named Log instance is connected to a corresponding java.util.logging.Logger instance.
  • LogKit from Apache's Avalon project. Each named Log instance is connected to a corresponding LogKit Logger.
  • NoOpLog implementation that simply swallows all log output, for all named Log instances.
  • SimpleLog implementation that writes all log output, for all named Log instances, to System.err.

Quick Start Guide

For those impatient to just get on with it, the following example illustrates the typical declaration and use of a logger that is named (by convention) after the calling class:

    import org.apache.commons.logging.Log;
    import org.apache.commons.logging.LogFactory;

    public class Foo {

        static Log log = LogFactory.getLog(Foo.class);

        public void foo() {
            ...
            try {
                if (log.isDebugEnabled()) {
                    log.debug("About to do something to object " + name);
                }
                name.bar();
            } catch (IllegalStateException e) {
                log.error("Something bad happened to " + name, e);
            }
            ...
        }

Unless you configure things differently, all log output will be written to System.err. Therefore, you really will want to review the remainder of this page in order to understand how to configure logging for your application.

Configuring the Commons Logging Package

Choosing a LogFactory Implementation

From an application perspective, the first requirement is to retrieve an object reference to the LogFactory instance that will be used to create Log instances for this application. This is normally accomplished by calling the static getFactory() method. This method implements the following discovery algorithm to select the name of the LogFactory implementation class this application wants to use:

  • Check for a system property named org.apache.commons.logging.LogFactory.
  • Use the JDK 1.3 JAR Services Discovery mechanism (see http://java.sun.com/j2se/1.3/docs/guide/jar/jar.html for more information) to look for a resource named META-INF/services/org.apache.commons.logging.LogFactory whose first line is assumed to contain the desired class name.
  • Look for a properties file named commons-logging.properties visible in the application class path, with a property named org.apache.commons.logging.LogFactory defining the desired implementation class name.
  • Fall back to a default implementation, which is described further below.

If a commons-logging.properties file is found, all of the properties defined there are also used to set configuration attributes on the instantiated LogFactory instance.

Once an implementation class name is selected, the corresponding class is loaded from the current Thread context class loader (if there is one), or from the class loader that loaded the LogFactory class itself otherwise. This allows a copy of commons-logging.jar to be shared in a multiple class loader environment (such as a servlet container), but still allow each web application to provide its own LogFactory implementation, if it so desires. An instance of this class will then be created, and cached per class loader.

The Default LogFactory Implementation

The Logging Package APIs include a default LogFactory implementation class ( org.apache.commons.logging.impl.LogFactoryImpl) that is selected if no other implementation class name can be discovered. Its primary purpose is to create (as necessary) and return Log instances in response to calls to the getInstance() method. The default implementation uses the following rules:

  • At most one Log instance of the same name will be created. Subsequent getInstance() calls to the same LogFactory instance, with the same name or Class parameter, will return the same Log instance.
  • When a new Log instance must be created, the default LogFactory implementation uses the following discovery process:
    • Look for a configuration attribute of this factory named org.apache.commons.logging.Log (for backwards compatibility to pre-1.0 versions of this API, an attribute org.apache.commons.logging.log is also consulted).
    • Look for a system property named org.apache.commons.logging.Log (for backwards compatibility to pre-1.0 versions of this API, a system property org.apache.commons.logging.log is also consulted).
    • If the Log4J logging system is available in the application class path, use the corresponding wrapper class ( Log4JLogger).
    • If the application is executing on a JDK 1.4 system, use the corresponding wrapper class ( Jdk14Logger).
    • Fall back to the default simple logging implementation ( SimpleLog).
  • Load the class of the specified name from the thread context class loader (if any), or from the class loader that loaded the LogFactory class otherwise.
  • Instantiate an instance of the selected Log implementation class, passing the specified name as the single argument to its constructor.

See the SimpleLog JavaDocs for detailed configuration information for this default implementation.

Configuring the Underlying Logging System

The basic principle is that the user is totally responsible for the configuration of the underlying logging system. Commons-logging should not change the existing configuration.

Each individual Log implementation may support its own configuration properties. These will be documented in the class descriptions for the corresponding implementation class.

Finally, some Log implementations (such as the one for Log4J) require an external configuration file for the entire logging environment. This file should be prepared in a manner that is specific to the actual logging technology being used.

Using the Logging Package APIs

Use of the Logging Package APIs, from the perspective of an application component, consists of the following steps:

  1. Acquire a reference to an instance of org.apache.commons.logging.Log, by calling the factory method LogFactory.getInstance(String name). Your application can contain references to multiple loggers that are used for different purposes. A typical scenario for a server application is to have each major component of the server use its own Log instance.
  2. Cause messages to be logged (if the corresponding detail level is enabled) by calling appropriate methods (trace(), debug(), info(), warn(), error, and fatal()).

For convenience, LogFactory also offers a static method getLog() that combines the typical two-step pattern:

  Log log = LogFactory.getFactory().getInstance(Foo.class);

into a single method call:

  Log log = LogFactory.getLog(Foo.class);

For example, you might use the following technique to initialize and use a Log instance in an application component:

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

public class MyComponent {

  protected static Log log =
    LogFactory.getLog(MyComponent.class);

  // Called once at startup time
  public void start() {
    ...
    log.info("MyComponent started");
    ...
  }

  // Called once at shutdown time
  public void stop() {
    ...
    log.info("MyComponent stopped");
    ...
  }

  // Called repeatedly to process a particular argument value
  // which you want logged if debugging is enabled
  public void process(String value) {
    ...
    // Do the string concatenation only if logging is enabled
    if (log.isDebugEnabled())
      log.debug("MyComponent processing " + value);
    ...
  }

}

plugin.properties

################################################################################ # Copyright (c) 2008 IBM Corporation and others. # All rights reserved. This program and the accompanying materials # are made available under the terms of the Eclipse Public License v1.0 # which accompanies this distribution, and is available at # http://www.eclipse.org/legal/epl-v10.html # # Contributors: # Chris Aniszczyk - initial API and implementation ################################################################################ bundleName = Apache Commons Logging Plug-in bundleProvider = Eclipse Orbit

BookStoreCXFWS/WebContent/WEB-INF/lib/jaxrpc.jar

META-INF/MANIFEST.MF

Manifest-Version: 1.0 Ant-Version: Apache Ant 1.6.5 Created-By: 1.4.2_08-b03 (Sun Microsystems Inc.) Name: javax/xml/rpc Specification-Title: JAX-RPC Specification-Version: 1.1 Specification-Vendor: JCP

javax/xml/messaging/Endpoint.class

                    package javax.xml.messaging;

                    public 
                    synchronized 
                    class Endpoint {
    
                    protected String 
                    id;
    
                    public void Endpoint(String);
    
                    public String 
                    toString();
}

                

javax/xml/messaging/URLEndpoint.class

                    package javax.xml.messaging;

                    public 
                    synchronized 
                    class URLEndpoint 
                    extends Endpoint {
    
                    public void URLEndpoint(String);
    
                    public String 
                    getURL();
}

                

javax/xml/namespace/QName.class

                    package javax.xml.namespace;

                    public 
                    synchronized 
                    class QName 
                    implements java.io.Serializable {
    
                    private 
                    static 
                    final String 
                    emptyString;
    
                    private String 
                    namespaceURI;
    
                    private String 
                    localPart;
    
                    private String 
                    prefix;
    
                    public void QName(String);
    
                    public void QName(String, String);
    
                    public void QName(String, String, String);
    
                    public String 
                    getNamespaceURI();
    
                    public String 
                    getLocalPart();
    
                    public String 
                    getPrefix();
    
                    public String 
                    toString();
    
                    public boolean 
                    equals(Object);
    
                    public 
                    static QName 
                    valueOf(String);
    
                    public int 
                    hashCode();
    
                    private void 
                    readObject(java.io.ObjectInputStream) 
                    throws java.io.IOException, ClassNotFoundException;
    
                    static void 
                    <clinit>();
}

                

javax/xml/rpc/Call.class

                    package javax.xml.rpc;

                    public 
                    abstract 
                    interface Call {
    
                    public 
                    static 
                    final String 
                    USERNAME_PROPERTY = javax.xml.rpc.security.auth.username;
    
                    public 
                    static 
                    final String 
                    PASSWORD_PROPERTY = javax.xml.rpc.security.auth.password;
    
                    public 
                    static 
                    final String 
                    OPERATION_STYLE_PROPERTY = javax.xml.rpc.soap.operation.style;
    
                    public 
                    static 
                    final String 
                    SOAPACTION_USE_PROPERTY = javax.xml.rpc.soap.http.soapaction.use;
    
                    public 
                    static 
                    final String 
                    SOAPACTION_URI_PROPERTY = javax.xml.rpc.soap.http.soapaction.uri;
    
                    public 
                    static 
                    final String 
                    ENCODINGSTYLE_URI_PROPERTY = javax.xml.rpc.encodingstyle.namespace.uri;
    
                    public 
                    static 
                    final String 
                    SESSION_MAINTAIN_PROPERTY = javax.xml.rpc.session.maintain;
    
                    public 
                    abstract boolean 
                    isParameterAndReturnSpecRequired(javax.xml.namespace.QName);
    
                    public 
                    abstract void 
                    addParameter(String, javax.xml.namespace.QName, ParameterMode);
    
                    public 
                    abstract void 
                    addParameter(String, javax.xml.namespace.QName, Class, ParameterMode);
    
                    public 
                    abstract javax.xml.namespace.QName 
                    getParameterTypeByName(String);
    
                    public 
                    abstract void 
                    setReturnType(javax.xml.namespace.QName);
    
                    public 
                    abstract void 
                    setReturnType(javax.xml.namespace.QName, Class);
    
                    public 
                    abstract javax.xml.namespace.QName 
                    getReturnType();
    
                    public 
                    abstract void 
                    removeAllParameters();
    
                    public 
                    abstract javax.xml.namespace.QName 
                    getOperationName();
    
                    public 
                    abstract void 
                    setOperationName(javax.xml.namespace.QName);
    
                    public 
                    abstract javax.xml.namespace.QName 
                    getPortTypeName();
    
                    public 
                    abstract void 
                    setPortTypeName(javax.xml.namespace.QName);
    
                    public 
                    abstract void 
                    setTargetEndpointAddress(String);
    
                    public 
                    abstract String 
                    getTargetEndpointAddress();
    
                    public 
                    abstract void 
                    setProperty(String, Object);
    
                    public 
                    abstract Object 
                    getProperty(String);
    
                    public 
                    abstract void 
                    removeProperty(String);
    
                    public 
                    abstract java.util.Iterator 
                    getPropertyNames();
    
                    public 
                    abstract Object 
                    invoke(Object[]) 
                    throws java.rmi.RemoteException;
    
                    public 
                    abstract Object 
                    invoke(javax.xml.namespace.QName, Object[]) 
                    throws java.rmi.RemoteException;
    
                    public 
                    abstract void 
                    invokeOneWay(Object[]);
    
                    public 
                    abstract java.util.Map 
                    getOutputParams();
    
                    public 
                    abstract java.util.List 
                    getOutputValues();
}

                

javax/xml/rpc/FactoryFinder$ConfigurationError.class

                    package javax.xml.rpc;

                    synchronized 
                    class FactoryFinder$ConfigurationError 
                    extends Error {
    
                    private Exception 
                    exception;
    void FactoryFinder$ConfigurationError(String, Exception);
    Exception 
                    getException();
}

                

javax/xml/rpc/FactoryFinder.class

                    package javax.xml.rpc;

                    synchronized 
                    class FactoryFinder {
    
                    private 
                    static 
                    final boolean 
                    debug = 0;
    void FactoryFinder();
    
                    private 
                    static void 
                    debugPrintln(String);
    
                    private 
                    static ClassLoader 
                    findClassLoader() 
                    throws FactoryFinder$ConfigurationError;
    
                    private 
                    static Object 
                    newInstance(String, ClassLoader) 
                    throws FactoryFinder$ConfigurationError;
    
                    static Object 
                    find(String, String) 
                    throws FactoryFinder$ConfigurationError;
}

                

javax/xml/rpc/JAXRPCException.class

                    package javax.xml.rpc;

                    public 
                    synchronized 
                    class JAXRPCException 
                    extends RuntimeException {
    Throwable 
                    cause;
    
                    public void JAXRPCException();
    
                    public void JAXRPCException(String);
    
                    public void JAXRPCException(String, Throwable);
    
                    public void JAXRPCException(Throwable);
    
                    public Throwable 
                    getLinkedCause();
}

                

javax/xml/rpc/NamespaceConstants.class

                    package javax.xml.rpc;

                    public 
                    synchronized 
                    class NamespaceConstants {
    
                    public 
                    static 
                    final String 
                    NSPREFIX_SOAP_ENVELOPE = soapenv;
    
                    public 
                    static 
                    final String 
                    NSPREFIX_SOAP_ENCODING = soapenc;
    
                    public 
                    static 
                    final String 
                    NSPREFIX_SCHEMA_XSD = xsd;
    
                    public 
                    static 
                    final String 
                    NSPREFIX_SCHEMA_XSI = xsi;
    
                    public 
                    static 
                    final String 
                    NSURI_SOAP_ENVELOPE = http://schemas.xmlsoap.org/soap/envelope/;
    
                    public 
                    static 
                    final String 
                    NSURI_SOAP_ENCODING = http://schemas.xmlsoap.org/soap/encoding/;
    
                    public 
                    static 
                    final String 
                    NSURI_SOAP_NEXT_ACTOR = http://schemas.xmlsoap.org/soap/actor/next;
    
                    public 
                    static 
                    final String 
                    NSURI_SCHEMA_XSD = http://www.w3.org/2001/XMLSchema;
    
                    public 
                    static 
                    final String 
                    NSURI_SCHEMA_XSI = http://www.w3.org/2001/XMLSchema-instance;
    
                    public void NamespaceConstants();
}

                

javax/xml/rpc/ParameterMode.class

                    package javax.xml.rpc;

                    public 
                    synchronized 
                    class ParameterMode {
    
                    private 
                    final String 
                    mode;
    
                    public 
                    static 
                    final ParameterMode 
                    IN;
    
                    public 
                    static 
                    final ParameterMode 
                    INOUT;
    
                    public 
                    static 
                    final ParameterMode 
                    OUT;
    
                    private void ParameterMode(String);
    
                    public String 
                    toString();
    
                    static void 
                    <clinit>();
}

                

javax/xml/rpc/Service.class

                    package javax.xml.rpc;

                    public 
                    abstract 
                    interface Service {
    
                    public 
                    abstract java.rmi.Remote 
                    getPort(javax.xml.namespace.QName, Class) 
                    throws ServiceException;
    
                    public 
                    abstract java.rmi.Remote 
                    getPort(Class) 
                    throws ServiceException;
    
                    public 
                    abstract Call[] 
                    getCalls(javax.xml.namespace.QName) 
                    throws ServiceException;
    
                    public 
                    abstract Call 
                    createCall(javax.xml.namespace.QName) 
                    throws ServiceException;
    
                    public 
                    abstract Call 
                    createCall(javax.xml.namespace.QName, javax.xml.namespace.QName) 
                    throws ServiceException;
    
                    public 
                    abstract Call 
                    createCall(javax.xml.namespace.QName, String) 
                    throws ServiceException;
    
                    public 
                    abstract Call 
                    createCall() 
                    throws ServiceException;
    
                    public 
                    abstract javax.xml.namespace.QName 
                    getServiceName();
    
                    public 
                    abstract java.util.Iterator 
                    getPorts() 
                    throws ServiceException;
    
                    public 
                    abstract java.net.URL 
                    getWSDLDocumentLocation();
    
                    public 
                    abstract encoding.TypeMappingRegistry 
                    getTypeMappingRegistry();
    
                    public 
                    abstract handler.HandlerRegistry 
                    getHandlerRegistry();
}

                

javax/xml/rpc/ServiceException.class

                    package javax.xml.rpc;

                    public 
                    synchronized 
                    class ServiceException 
                    extends Exception {
    Throwable 
                    cause;
    
                    public void ServiceException();
    
                    public void ServiceException(String);
    
                    public void ServiceException(String, Throwable);
    
                    public void ServiceException(Throwable);
    
                    public Throwable 
                    getLinkedCause();
}

                

javax/xml/rpc/ServiceFactory.class

                    package javax.xml.rpc;

                    public 
                    abstract 
                    synchronized 
                    class ServiceFactory {
    
                    public 
                    static 
                    final String 
                    SERVICEFACTORY_PROPERTY = javax.xml.rpc.ServiceFactory;
    
                    protected void ServiceFactory();
    
                    public 
                    static ServiceFactory 
                    newInstance() 
                    throws ServiceException;
    
                    public 
                    abstract Service 
                    createService(java.net.URL, javax.xml.namespace.QName) 
                    throws ServiceException;
    
                    public 
                    abstract Service 
                    createService(javax.xml.namespace.QName) 
                    throws ServiceException;
    
                    public 
                    abstract Service 
                    loadService(Class) 
                    throws ServiceException;
    
                    public 
                    abstract Service 
                    loadService(java.net.URL, Class, java.util.Properties) 
                    throws ServiceException;
    
                    public 
                    abstract Service 
                    loadService(java.net.URL, javax.xml.namespace.QName, java.util.Properties) 
                    throws ServiceException;
}

                

javax/xml/rpc/Stub.class

                    package javax.xml.rpc;

                    public 
                    abstract 
                    interface Stub {
    
                    public 
                    static 
                    final String 
                    USERNAME_PROPERTY = javax.xml.rpc.security.auth.username;
    
                    public 
                    static 
                    final String 
                    PASSWORD_PROPERTY = javax.xml.rpc.security.auth.password;
    
                    public 
                    static 
                    final String 
                    ENDPOINT_ADDRESS_PROPERTY = javax.xml.rpc.service.endpoint.address;
    
                    public 
                    static 
                    final String 
                    SESSION_MAINTAIN_PROPERTY = javax.xml.rpc.session.maintain;
    
                    public 
                    abstract void 
                    _setProperty(String, Object);
    
                    public 
                    abstract Object 
                    _getProperty(String);
    
                    public 
                    abstract java.util.Iterator 
                    _getPropertyNames();
}

                

javax/xml/rpc/encoding/DeserializationContext.class

                    package javax.xml.rpc.encoding;

                    public 
                    abstract 
                    interface DeserializationContext {
}

                

javax/xml/rpc/encoding/Deserializer.class

                    package javax.xml.rpc.encoding;

                    public 
                    abstract 
                    interface Deserializer 
                    extends java.io.Serializable {
    
                    public 
                    abstract String 
                    getMechanismType();
}

                

javax/xml/rpc/encoding/DeserializerFactory.class

                    package javax.xml.rpc.encoding;

                    public 
                    abstract 
                    interface DeserializerFactory 
                    extends java.io.Serializable {
    
                    public 
                    abstract Deserializer 
                    getDeserializerAs(String);
    
                    public 
                    abstract java.util.Iterator 
                    getSupportedMechanismTypes();
}

                

javax/xml/rpc/encoding/SerializationContext.class

                    package javax.xml.rpc.encoding;

                    public 
                    abstract 
                    interface SerializationContext {
}

                

javax/xml/rpc/encoding/Serializer.class

                    package javax.xml.rpc.encoding;

                    public 
                    abstract 
                    interface Serializer 
                    extends java.io.Serializable {
    
                    public 
                    abstract String 
                    getMechanismType();
}

                

javax/xml/rpc/encoding/SerializerFactory.class

                    package javax.xml.rpc.encoding;

                    public 
                    abstract 
                    interface SerializerFactory 
                    extends java.io.Serializable {
    
                    public 
                    abstract Serializer 
                    getSerializerAs(String);
    
                    public 
                    abstract java.util.Iterator 
                    getSupportedMechanismTypes();
}

                

javax/xml/rpc/encoding/TypeMapping.class

                    package javax.xml.rpc.encoding;

                    public 
                    abstract 
                    interface TypeMapping {
    
                    public 
                    abstract String[] 
                    getSupportedEncodings();
    
                    public 
                    abstract void 
                    setSupportedEncodings(String[]);
    
                    public 
                    abstract boolean 
                    isRegistered(Class, javax.xml.namespace.QName);
    
                    public 
                    abstract void 
                    register(Class, javax.xml.namespace.QName, SerializerFactory, DeserializerFactory);
    
                    public 
                    abstract SerializerFactory 
                    getSerializer(Class, javax.xml.namespace.QName);
    
                    public 
                    abstract DeserializerFactory 
                    getDeserializer(Class, javax.xml.namespace.QName);
    
                    public 
                    abstract void 
                    removeSerializer(Class, javax.xml.namespace.QName);
    
                    public 
                    abstract void 
                    removeDeserializer(Class, javax.xml.namespace.QName);
}

                

javax/xml/rpc/encoding/TypeMappingRegistry.class

                    package javax.xml.rpc.encoding;

                    public 
                    abstract 
                    interface TypeMappingRegistry 
                    extends java.io.Serializable {
    
                    public 
                    abstract TypeMapping 
                    register(String, TypeMapping);
    
                    public 
                    abstract void 
                    registerDefault(TypeMapping);
    
                    public 
                    abstract TypeMapping 
                    getDefaultTypeMapping();
    
                    public 
                    abstract String[] 
                    getRegisteredEncodingStyleURIs();
    
                    public 
                    abstract TypeMapping 
                    getTypeMapping(String);
    
                    public 
                    abstract TypeMapping 
                    createTypeMapping();
    
                    public 
                    abstract TypeMapping 
                    unregisterTypeMapping(String);
    
                    public 
                    abstract boolean 
                    removeTypeMapping(TypeMapping);
    
                    public 
                    abstract void 
                    clear();
}

                

javax/xml/rpc/encoding/XMLType.class

                    package javax.xml.rpc.encoding;

                    public 
                    synchronized 
                    class XMLType {
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_STRING;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_FLOAT;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_BOOLEAN;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_DOUBLE;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_INTEGER;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_INT;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_LONG;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_SHORT;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_DECIMAL;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_BASE64;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_HEXBINARY;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_BYTE;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_DATETIME;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    XSD_QNAME;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    SOAP_STRING;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    SOAP_BOOLEAN;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    SOAP_DOUBLE;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    SOAP_BASE64;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    SOAP_FLOAT;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    SOAP_INT;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    SOAP_LONG;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    SOAP_SHORT;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    SOAP_BYTE;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    SOAP_ARRAY;
    
                    public void XMLType();
    
                    static void 
                    <clinit>();
}

                

javax/xml/rpc/handler/GenericHandler.class

                    package javax.xml.rpc.handler;

                    public 
                    abstract 
                    synchronized 
                    class GenericHandler 
                    implements Handler {
    
                    protected void GenericHandler();
    
                    public boolean 
                    handleRequest(MessageContext);
    
                    public boolean 
                    handleResponse(MessageContext);
    
                    public boolean 
                    handleFault(MessageContext);
    
                    public void 
                    init(HandlerInfo);
    
                    public void 
                    destroy();
    
                    public 
                    abstract javax.xml.namespace.QName[] 
                    getHeaders();
}

                

javax/xml/rpc/handler/Handler.class

                    package javax.xml.rpc.handler;

                    public 
                    abstract 
                    interface Handler {
    
                    public 
                    abstract boolean 
                    handleRequest(MessageContext);
    
                    public 
                    abstract boolean 
                    handleResponse(MessageContext);
    
                    public 
                    abstract boolean 
                    handleFault(MessageContext);
    
                    public 
                    abstract void 
                    init(HandlerInfo);
    
                    public 
                    abstract void 
                    destroy();
    
                    public 
                    abstract javax.xml.namespace.QName[] 
                    getHeaders();
}

                

javax/xml/rpc/handler/HandlerChain.class

                    package javax.xml.rpc.handler;

                    public 
                    abstract 
                    interface HandlerChain 
                    extends java.util.List {
    
                    public 
                    abstract boolean 
                    handleRequest(MessageContext);
    
                    public 
                    abstract boolean 
                    handleResponse(MessageContext);
    
                    public 
                    abstract boolean 
                    handleFault(MessageContext);
    
                    public 
                    abstract void 
                    init(java.util.Map);
    
                    public 
                    abstract void 
                    destroy();
    
                    public 
                    abstract void 
                    setRoles(String[]);
    
                    public 
                    abstract String[] 
                    getRoles();
}

                

javax/xml/rpc/handler/HandlerInfo.class

                    package javax.xml.rpc.handler;

                    public 
                    synchronized 
                    class HandlerInfo 
                    implements java.io.Serializable {
    
                    private Class 
                    handlerClass;
    
                    private java.util.Map 
                    config;
    
                    private javax.xml.namespace.QName[] 
                    headers;
    
                    public void HandlerInfo();
    
                    public void HandlerInfo(Class, java.util.Map, javax.xml.namespace.QName[]);
    
                    public void 
                    setHandlerClass(Class);
    
                    public Class 
                    getHandlerClass();
    
                    public void 
                    setHandlerConfig(java.util.Map);
    
                    public java.util.Map 
                    getHandlerConfig();
    
                    public void 
                    setHeaders(javax.xml.namespace.QName[]);
    
                    public javax.xml.namespace.QName[] 
                    getHeaders();
}

                

javax/xml/rpc/handler/HandlerRegistry.class

                    package javax.xml.rpc.handler;

                    public 
                    abstract 
                    interface HandlerRegistry 
                    extends java.io.Serializable {
    
                    public 
                    abstract java.util.List 
                    getHandlerChain(javax.xml.namespace.QName);
    
                    public 
                    abstract void 
                    setHandlerChain(javax.xml.namespace.QName, java.util.List);
}

                

javax/xml/rpc/handler/MessageContext.class

                    package javax.xml.rpc.handler;

                    public 
                    abstract 
                    interface MessageContext {
    
                    public 
                    abstract void 
                    setProperty(String, Object);
    
                    public 
                    abstract Object 
                    getProperty(String);
    
                    public 
                    abstract void 
                    removeProperty(String);
    
                    public 
                    abstract boolean 
                    containsProperty(String);
    
                    public 
                    abstract java.util.Iterator 
                    getPropertyNames();
}

                

javax/xml/rpc/handler/soap/SOAPMessageContext.class

                    package javax.xml.rpc.handler.soap;

                    public 
                    abstract 
                    interface SOAPMessageContext 
                    extends javax.xml.rpc.handler.MessageContext {
    
                    public 
                    abstract javax.xml.soap.SOAPMessage 
                    getMessage();
    
                    public 
                    abstract void 
                    setMessage(javax.xml.soap.SOAPMessage);
    
                    public 
                    abstract String[] 
                    getRoles();
}

                

javax/xml/rpc/holders/BigDecimalHolder.class

                    package javax.xml.rpc.holders;

                    public 
                    final 
                    synchronized 
                    class BigDecimalHolder 
                    implements Holder {
    
                    public java.math.BigDecimal 
                    value;
    
                    public void BigDecimalHolder();
    
                    public void BigDecimalHolder(java.math.BigDecimal);
}

                

javax/xml/rpc/holders/BigIntegerHolder.class

                    package javax.xml.rpc.holders;

                    public 
                    final 
                    synchronized 
                    class BigIntegerHolder 
                    implements Holder {
    
                    public java.math.BigInteger 
                    value;
    
                    public void BigIntegerHolder();
    
                    public void BigIntegerHolder(java.math.BigInteger);
}

                

javax/xml/rpc/holders/BooleanHolder.class

                    package javax.xml.rpc.holders;

                    public 
                    final 
                    synchronized 
                    class BooleanHolder 
                    implements Holder {
    
                    public boolean 
                    value;
    
                    public void BooleanHolder();
    
                    public void BooleanHolder(boolean);
}

                

javax/xml/rpc/holders/BooleanWrapperHolder.class

                    package javax.xml.rpc.holders;

                    public 
                    final 
                    synchronized 
                    class BooleanWrapperHolder 
                    implements Holder {
    
                    public Boolean 
                    value;
    
                    public void BooleanWrapperHolder();
    
                    public void BooleanWrapperHolder(Boolean);
}

                

javax/xml/rpc/holders/ByteArrayHolder.class

                    package javax.xml.rpc.holders;

                    public 
                    final 
                    synchronized 
                    class ByteArrayHolder 
                    implements Holder {
    
                    public byte[] 
                    value;
    
                    public void ByteArrayHolder();
    
                    public void ByteArrayHolder(byte[]);
}

                

javax/xml/rpc/holders/ByteHolder.class

                    package javax.xml.rpc.holders;

                    public 
                    final 
                    synchronized 
                    class ByteHolder 
                    implements Holder {
    
                    public byte 
                    value;
    
                    public void ByteHolder();
    
                    public void ByteHolder(byte);
}

                

javax/xml/rpc/holders/ByteWrapperHolder.class

                    package javax.xml.rpc.holders;

                    public 
                    final 
                    synchronized 
                    class ByteWrapperHolder 
                    implements Holder {
    
                    public Byte 
                    value;
    
                    public void ByteWrapperHolder();
    
                    public void ByteWrapperHolder(Byte);
}

                

javax/xml/rpc/holders/CalendarHolder.class

                    package javax.xml.rpc.holders;

                    public 
                    final 
                    synchronized 
                    class CalendarHolder 
                    implements Holder {
    
                    public java.util.Calendar 
                    value;
    
                    public void CalendarHolder();
    
                    public void CalendarHolder(java.util.Calendar);
}

                

javax/xml/rpc/holders/DoubleHolder.class

                    package javax.xml.rpc.holders;

                    public 
                    final 
                    synchronized 
                    class DoubleHolder 
                    implements Holder {
    
                    public double 
                    value;
    
                    public void DoubleHolder();
    
                    public void DoubleHolder(double);
}

                

javax/xml/rpc/holders/DoubleWrapperHolder.class

                    package javax.xml.rpc.holders;

                    public 
                    final 
                    synchronized 
                    class DoubleWrapperHolder 
                    implements Holder {
    
                    public Double 
                    value;
    
                    public void DoubleWrapperHolder();
    
                    public void DoubleWrapperHolder(Double);
}

                

javax/xml/rpc/holders/FloatHolder.class

                    package javax.xml.rpc.holders;

                    public 
                    final 
                    synchronized 
                    class FloatHolder 
                    implements Holder {
    
                    public float 
                    value;
    
                    public void FloatHolder();
    
                    public void FloatHolder(float);
}

                

javax/xml/rpc/holders/FloatWrapperHolder.class

                    package javax.xml.rpc.holders;

                    public 
                    final 
                    synchronized 
                    class FloatWrapperHolder 
                    implements Holder {
    
                    public Float 
                    value;
    
                    public void FloatWrapperHolder();
    
                    public void FloatWrapperHolder(Float);
}

                

javax/xml/rpc/holders/Holder.class

                    package javax.xml.rpc.holders;

                    public 
                    abstract 
                    interface Holder {
}

                

javax/xml/rpc/holders/IntHolder.class

                    package javax.xml.rpc.holders;

                    public 
                    final 
                    synchronized 
                    class IntHolder 
                    implements Holder {
    
                    public int 
                    value;
    
                    public void IntHolder();
    
                    public void IntHolder(int);
}

                

javax/xml/rpc/holders/IntegerWrapperHolder.class

                    package javax.xml.rpc.holders;

                    public 
                    final 
                    synchronized 
                    class IntegerWrapperHolder 
                    implements Holder {
    
                    public Integer 
                    value;
    
                    public void IntegerWrapperHolder();
    
                    public void IntegerWrapperHolder(Integer);
}

                

javax/xml/rpc/holders/LongHolder.class

                    package javax.xml.rpc.holders;

                    public 
                    final 
                    synchronized 
                    class LongHolder 
                    implements Holder {
    
                    public long 
                    value;
    
                    public void LongHolder();
    
                    public void LongHolder(long);
}

                

javax/xml/rpc/holders/LongWrapperHolder.class

                    package javax.xml.rpc.holders;

                    public 
                    final 
                    synchronized 
                    class LongWrapperHolder 
                    implements Holder {
    
                    public Long 
                    value;
    
                    public void LongWrapperHolder();
    
                    public void LongWrapperHolder(Long);
}

                

javax/xml/rpc/holders/ObjectHolder.class

                    package javax.xml.rpc.holders;

                    public 
                    final 
                    synchronized 
                    class ObjectHolder 
                    implements Holder {
    
                    public Object 
                    value;
    
                    public void ObjectHolder();
    
                    public void ObjectHolder(Object);
}

                

javax/xml/rpc/holders/QNameHolder.class

                    package javax.xml.rpc.holders;

                    public 
                    final 
                    synchronized 
                    class QNameHolder 
                    implements Holder {
    
                    public javax.xml.namespace.QName 
                    value;
    
                    public void QNameHolder();
    
                    public void QNameHolder(javax.xml.namespace.QName);
}

                

javax/xml/rpc/holders/ShortHolder.class

                    package javax.xml.rpc.holders;

                    public 
                    final 
                    synchronized 
                    class ShortHolder 
                    implements Holder {
    
                    public short 
                    value;
    
                    public void ShortHolder();
    
                    public void ShortHolder(short);
}

                

javax/xml/rpc/holders/ShortWrapperHolder.class

                    package javax.xml.rpc.holders;

                    public 
                    final 
                    synchronized 
                    class ShortWrapperHolder 
                    implements Holder {
    
                    public Short 
                    value;
    
                    public void ShortWrapperHolder();
    
                    public void ShortWrapperHolder(Short);
}

                

javax/xml/rpc/holders/StringHolder.class

                    package javax.xml.rpc.holders;

                    public 
                    final 
                    synchronized 
                    class StringHolder 
                    implements Holder {
    
                    public String 
                    value;
    
                    public void StringHolder();
    
                    public void StringHolder(String);
}

                

javax/xml/rpc/server/ServiceLifecycle.class

                    package javax.xml.rpc.server;

                    public 
                    abstract 
                    interface ServiceLifecycle {
    
                    public 
                    abstract void 
                    init(Object) 
                    throws javax.xml.rpc.ServiceException;
    
                    public 
                    abstract void 
                    destroy();
}

                

javax/xml/rpc/server/ServletEndpointContext.class

                    package javax.xml.rpc.server;

                    public 
                    abstract 
                    interface ServletEndpointContext {
    
                    public 
                    abstract javax.xml.rpc.handler.MessageContext 
                    getMessageContext();
    
                    public 
                    abstract java.security.Principal 
                    getUserPrincipal();
    
                    public 
                    abstract javax.servlet.http.HttpSession 
                    getHttpSession();
    
                    public 
                    abstract javax.servlet.ServletContext 
                    getServletContext();
    
                    public 
                    abstract boolean 
                    isUserInRole(String);
}

                

javax/xml/rpc/soap/SOAPFaultException.class

                    package javax.xml.rpc.soap;

                    public 
                    synchronized 
                    class SOAPFaultException 
                    extends RuntimeException {
    
                    private javax.xml.namespace.QName 
                    faultcode;
    
                    private String 
                    faultstring;
    
                    private String 
                    faultactor;
    
                    private javax.xml.soap.Detail 
                    detail;
    
                    public void SOAPFaultException(javax.xml.namespace.QName, String, String, javax.xml.soap.Detail);
    
                    public javax.xml.namespace.QName 
                    getFaultCode();
    
                    public String 
                    getFaultString();
    
                    public String 
                    getFaultActor();
    
                    public javax.xml.soap.Detail 
                    getDetail();
}

                

BookStoreCXFWS/WebContent/WEB-INF/lib/saaj.jar

META-INF/MANIFEST.MF

Manifest-Version: 1.0 Ant-Version: Apache Ant 1.6.5 Created-By: 1.4.2_08-b03 (Sun Microsystems Inc.) Name: javax/xml/soap Specification-Title: SAAJ Specification-Version: 1.2 Specification-Vendor: JCP

javax/xml/soap/AttachmentPart.class

                    package javax.xml.soap;

                    public 
                    abstract 
                    synchronized 
                    class AttachmentPart {
    
                    public void AttachmentPart();
    
                    public 
                    abstract int 
                    getSize() 
                    throws SOAPException;
    
                    public 
                    abstract void 
                    clearContent();
    
                    public 
                    abstract Object 
                    getContent() 
                    throws SOAPException;
    
                    public 
                    abstract void 
                    setContent(Object, String);
    
                    public 
                    abstract javax.activation.DataHandler 
                    getDataHandler() 
                    throws SOAPException;
    
                    public 
                    abstract void 
                    setDataHandler(javax.activation.DataHandler);
    
                    public String 
                    getContentId();
    
                    public String 
                    getContentLocation();
    
                    public String 
                    getContentType();
    
                    public void 
                    setContentId(String);
    
                    public void 
                    setContentLocation(String);
    
                    public void 
                    setContentType(String);
    
                    public 
                    abstract void 
                    removeMimeHeader(String);
    
                    public 
                    abstract void 
                    removeAllMimeHeaders();
    
                    public 
                    abstract String[] 
                    getMimeHeader(String);
    
                    public 
                    abstract void 
                    setMimeHeader(String, String);
    
                    public 
                    abstract void 
                    addMimeHeader(String, String);
    
                    public 
                    abstract java.util.Iterator 
                    getAllMimeHeaders();
    
                    public 
                    abstract java.util.Iterator 
                    getMatchingMimeHeaders(String[]);
    
                    public 
                    abstract java.util.Iterator 
                    getNonMatchingMimeHeaders(String[]);
}

                

javax/xml/soap/Detail.class

                    package javax.xml.soap;

                    public 
                    abstract 
                    interface Detail 
                    extends SOAPFaultElement {
    
                    public 
                    abstract DetailEntry 
                    addDetailEntry(Name) 
                    throws SOAPException;
    
                    public 
                    abstract java.util.Iterator 
                    getDetailEntries();
}

                

javax/xml/soap/DetailEntry.class

                    package javax.xml.soap;

                    public 
                    abstract 
                    interface DetailEntry 
                    extends SOAPElement {
}

                

javax/xml/soap/FactoryFinder.class

                    package javax.xml.soap;

                    synchronized 
                    class FactoryFinder {
    void FactoryFinder();
    
                    private 
                    static Object 
                    newInstance(String) 
                    throws SOAPException;
    
                    static Object 
                    find(String, String) 
                    throws SOAPException;
    
                    private 
                    static java.io.InputStream 
                    getResource(String);
}

                

javax/xml/soap/MessageFactory.class

                    package javax.xml.soap;

                    public 
                    abstract 
                    synchronized 
                    class MessageFactory {
    
                    private 
                    static 
                    final String 
                    DEFAULT_MESSAGE_FACTORY = org.apache.axis.soap.MessageFactoryImpl;
    
                    private 
                    static 
                    final String 
                    MESSAGE_FACTORY_PROPERTY = javax.xml.soap.MessageFactory;
    
                    public void MessageFactory();
    
                    public 
                    static MessageFactory 
                    newInstance() 
                    throws SOAPException;
    
                    public 
                    abstract SOAPMessage 
                    createMessage() 
                    throws SOAPException;
    
                    public 
                    abstract SOAPMessage 
                    createMessage(MimeHeaders, java.io.InputStream) 
                    throws java.io.IOException, SOAPException;
}

                

javax/xml/soap/MimeHeader.class

                    package javax.xml.soap;

                    public 
                    synchronized 
                    class MimeHeader {
    
                    private String 
                    name;
    
                    private String 
                    value;
    
                    public void MimeHeader(String, String);
    
                    public String 
                    getName();
    
                    public String 
                    getValue();
}

                

javax/xml/soap/MimeHeaders$MatchingIterator.class

                    package javax.xml.soap;

                    synchronized 
                    class MimeHeaders$MatchingIterator 
                    implements java.util.Iterator {
    
                    private boolean 
                    match;
    
                    private java.util.Iterator 
                    iterator;
    
                    private String[] 
                    names;
    
                    private Object 
                    nextHeader;
    
                    private Object 
                    nextMatch();
    
                    public boolean 
                    hasNext();
    
                    public Object 
                    next();
    
                    public void 
                    remove();
    void MimeHeaders$MatchingIterator(MimeHeaders, String[], boolean);
}

                

javax/xml/soap/MimeHeaders.class

                    package javax.xml.soap;

                    public 
                    synchronized 
                    class MimeHeaders {
    
                    private java.util.Vector 
                    headers;
    
                    public void MimeHeaders();
    
                    public String[] 
                    getHeader(String);
    
                    public void 
                    setHeader(String, String);
    
                    public void 
                    addHeader(String, String);
    
                    public void 
                    removeHeader(String);
    
                    public void 
                    removeAllHeaders();
    
                    public java.util.Iterator 
                    getAllHeaders();
    
                    public java.util.Iterator 
                    getMatchingHeaders(String[]);
    
                    public java.util.Iterator 
                    getNonMatchingHeaders(String[]);
}

                

javax/xml/soap/Name.class

                    package javax.xml.soap;

                    public 
                    abstract 
                    interface Name {
    
                    public 
                    abstract String 
                    getLocalName();
    
                    public 
                    abstract String 
                    getQualifiedName();
    
                    public 
                    abstract String 
                    getPrefix();
    
                    public 
                    abstract String 
                    getURI();
}

                

javax/xml/soap/Node.class

                    package javax.xml.soap;

                    public 
                    abstract 
                    interface Node 
                    extends org.w3c.dom.Node {
    
                    public 
                    abstract String 
                    getValue();
    
                    public 
                    abstract void 
                    setParentElement(SOAPElement) 
                    throws SOAPException;
    
                    public 
                    abstract SOAPElement 
                    getParentElement();
    
                    public 
                    abstract void 
                    detachNode();
    
                    public 
                    abstract void 
                    recycleNode();
    
                    public 
                    abstract void 
                    setValue(String);
}

                

javax/xml/soap/SOAPBody.class

                    package javax.xml.soap;

                    public 
                    abstract 
                    interface SOAPBody 
                    extends SOAPElement {
    
                    public 
                    abstract SOAPFault 
                    addFault() 
                    throws SOAPException;
    
                    public 
                    abstract boolean 
                    hasFault();
    
                    public 
                    abstract SOAPFault 
                    getFault();
    
                    public 
                    abstract SOAPBodyElement 
                    addBodyElement(Name) 
                    throws SOAPException;
    
                    public 
                    abstract SOAPFault 
                    addFault(Name, String, java.util.Locale) 
                    throws SOAPException;
    
                    public 
                    abstract SOAPFault 
                    addFault(Name, String) 
                    throws SOAPException;
    
                    public 
                    abstract SOAPBodyElement 
                    addDocument(org.w3c.dom.Document) 
                    throws SOAPException;
}

                

javax/xml/soap/SOAPBodyElement.class

                    package javax.xml.soap;

                    public 
                    abstract 
                    interface SOAPBodyElement 
                    extends SOAPElement {
}

                

javax/xml/soap/SOAPConnection.class

                    package javax.xml.soap;

                    public 
                    abstract 
                    synchronized 
                    class SOAPConnection {
    
                    public void SOAPConnection();
    
                    public 
                    abstract SOAPMessage 
                    call(SOAPMessage, Object) 
                    throws SOAPException;
    
                    public 
                    abstract void 
                    close() 
                    throws SOAPException;
}

                

javax/xml/soap/SOAPConnectionFactory.class

                    package javax.xml.soap;

                    public 
                    abstract 
                    synchronized 
                    class SOAPConnectionFactory {
    
                    private 
                    static 
                    final String 
                    DEFAULT_SOAP_CONNECTION_FACTORY = org.apache.axis.soap.SOAPConnectionFactoryImpl;
    
                    private 
                    static 
                    final String 
                    SF_PROPERTY = javax.xml.soap.SOAPConnectionFactory;
    
                    public void SOAPConnectionFactory();
    
                    public 
                    static SOAPConnectionFactory 
                    newInstance() 
                    throws SOAPException, UnsupportedOperationException;
    
                    public 
                    abstract SOAPConnection 
                    createConnection() 
                    throws SOAPException;
}

                

javax/xml/soap/SOAPConstants.class

                    package javax.xml.soap;

                    public 
                    abstract 
                    interface SOAPConstants {
    
                    public 
                    static 
                    final String 
                    URI_NS_SOAP_ENVELOPE = http://schemas.xmlsoap.org/soap/envelope/;
    
                    public 
                    static 
                    final String 
                    URI_NS_SOAP_ENCODING = http://schemas.xmlsoap.org/soap/encoding/;
    
                    public 
                    static 
                    final String 
                    URI_SOAP_ACTOR_NEXT = http://schemas.xmlsoap.org/soap/actor/next;
}

                

javax/xml/soap/SOAPElement.class

                    package javax.xml.soap;

                    public 
                    abstract 
                    interface SOAPElement 
                    extends Node, org.w3c.dom.Element {
    
                    public 
                    abstract SOAPElement 
                    addChildElement(Name) 
                    throws SOAPException;
    
                    public 
                    abstract SOAPElement 
                    addChildElement(String) 
                    throws SOAPException;
    
                    public 
                    abstract SOAPElement 
                    addChildElement(String, String) 
                    throws SOAPException;
    
                    public 
                    abstract SOAPElement 
                    addChildElement(String, String, String) 
                    throws SOAPException;
    
                    public 
                    abstract SOAPElement 
                    addChildElement(SOAPElement) 
                    throws SOAPException;
    
                    public 
                    abstract SOAPElement 
                    addTextNode(String) 
                    throws SOAPException;
    
                    public 
                    abstract SOAPElement 
                    addAttribute(Name, String) 
                    throws SOAPException;
    
                    public 
                    abstract SOAPElement 
                    addNamespaceDeclaration(String, String) 
                    throws SOAPException;
    
                    public 
                    abstract String 
                    getAttributeValue(Name);
    
                    public 
                    abstract java.util.Iterator 
                    getAllAttributes();
    
                    public 
                    abstract String 
                    getNamespaceURI(String);
    
                    public 
                    abstract java.util.Iterator 
                    getNamespacePrefixes();
    
                    public 
                    abstract Name 
                    getElementName();
    
                    public 
                    abstract boolean 
                    removeAttribute(Name);
    
                    public 
                    abstract boolean 
                    removeNamespaceDeclaration(String);
    
                    public 
                    abstract java.util.Iterator 
                    getChildElements();
    
                    public 
                    abstract java.util.Iterator 
                    getChildElements(Name);
    
                    public 
                    abstract void 
                    setEncodingStyle(String) 
                    throws SOAPException;
    
                    public 
                    abstract String 
                    getEncodingStyle();
    
                    public 
                    abstract void 
                    removeContents();
    
                    public 
                    abstract java.util.Iterator 
                    getVisibleNamespacePrefixes();
}

                

javax/xml/soap/SOAPElementFactory.class

                    package javax.xml.soap;

                    public 
                    synchronized 
                    class SOAPElementFactory {
    
                    private SOAPFactory 
                    sf;
    
                    private void SOAPElementFactory(SOAPFactory);
    
                    public SOAPElement 
                    create(Name) 
                    throws SOAPException;
    
                    public SOAPElement 
                    create(String) 
                    throws SOAPException;
    
                    public SOAPElement 
                    create(String, String, String) 
                    throws SOAPException;
    
                    public 
                    static SOAPElementFactory 
                    newInstance() 
                    throws SOAPException;
}

                

javax/xml/soap/SOAPEnvelope.class

                    package javax.xml.soap;

                    public 
                    abstract 
                    interface SOAPEnvelope 
                    extends SOAPElement {
    
                    public 
                    abstract Name 
                    createName(String, String, String) 
                    throws SOAPException;
    
                    public 
                    abstract Name 
                    createName(String) 
                    throws SOAPException;
    
                    public 
                    abstract SOAPHeader 
                    getHeader() 
                    throws SOAPException;
    
                    public 
                    abstract SOAPBody 
                    getBody() 
                    throws SOAPException;
    
                    public 
                    abstract SOAPHeader 
                    addHeader() 
                    throws SOAPException;
    
                    public 
                    abstract SOAPBody 
                    addBody() 
                    throws SOAPException;
}

                

javax/xml/soap/SOAPException.class

                    package javax.xml.soap;

                    public 
                    synchronized 
                    class SOAPException 
                    extends Exception {
    
                    private Throwable 
                    cause;
    
                    public void SOAPException();
    
                    public void SOAPException(String);
    
                    public void SOAPException(String, Throwable);
    
                    public void SOAPException(Throwable);
    
                    public String 
                    getMessage();
    
                    public Throwable 
                    getCause();
    
                    public 
                    synchronized Throwable 
                    initCause(Throwable);
}

                

javax/xml/soap/SOAPFactory.class

                    package javax.xml.soap;

                    public 
                    abstract 
                    synchronized 
                    class SOAPFactory {
    
                    private 
                    static 
                    final String 
                    SF_PROPERTY = javax.xml.soap.SOAPFactory;
    
                    private 
                    static 
                    final String 
                    DEFAULT_SF = org.apache.axis.soap.SOAPFactoryImpl;
    
                    public void SOAPFactory();
    
                    public 
                    abstract SOAPElement 
                    createElement(Name) 
                    throws SOAPException;
    
                    public 
                    abstract SOAPElement 
                    createElement(String) 
                    throws SOAPException;
    
                    public 
                    abstract SOAPElement 
                    createElement(String, String, String) 
                    throws SOAPException;
    
                    public 
                    abstract Detail 
                    createDetail() 
                    throws SOAPException;
    
                    public 
                    abstract Name 
                    createName(String, String, String) 
                    throws SOAPException;
    
                    public 
                    abstract Name 
                    createName(String) 
                    throws SOAPException;
    
                    public 
                    static SOAPFactory 
                    newInstance() 
                    throws SOAPException;
}

                

javax/xml/soap/SOAPFault.class

                    package javax.xml.soap;

                    public 
                    abstract 
                    interface SOAPFault 
                    extends SOAPBodyElement {
    
                    public 
                    abstract void 
                    setFaultCode(String) 
                    throws SOAPException;
    
                    public 
                    abstract String 
                    getFaultCode();
    
                    public 
                    abstract void 
                    setFaultActor(String) 
                    throws SOAPException;
    
                    public 
                    abstract String 
                    getFaultActor();
    
                    public 
                    abstract void 
                    setFaultString(String) 
                    throws SOAPException;
    
                    public 
                    abstract String 
                    getFaultString();
    
                    public 
                    abstract Detail 
                    getDetail();
    
                    public 
                    abstract Detail 
                    addDetail() 
                    throws SOAPException;
    
                    public 
                    abstract void 
                    setFaultCode(Name) 
                    throws SOAPException;
    
                    public 
                    abstract Name 
                    getFaultCodeAsName();
    
                    public 
                    abstract void 
                    setFaultString(String, java.util.Locale) 
                    throws SOAPException;
    
                    public 
                    abstract java.util.Locale 
                    getFaultStringLocale();
}

                

javax/xml/soap/SOAPFaultElement.class

                    package javax.xml.soap;

                    public 
                    abstract 
                    interface SOAPFaultElement 
                    extends SOAPElement {
}

                

javax/xml/soap/SOAPHeader.class

                    package javax.xml.soap;

                    public 
                    abstract 
                    interface SOAPHeader 
                    extends SOAPElement {
    
                    public 
                    abstract SOAPHeaderElement 
                    addHeaderElement(Name) 
                    throws SOAPException;
    
                    public 
                    abstract java.util.Iterator 
                    examineHeaderElements(String);
    
                    public 
                    abstract java.util.Iterator 
                    extractHeaderElements(String);
    
                    public 
                    abstract java.util.Iterator 
                    examineMustUnderstandHeaderElements(String);
    
                    public 
                    abstract java.util.Iterator 
                    examineAllHeaderElements();
    
                    public 
                    abstract java.util.Iterator 
                    extractAllHeaderElements();
}

                

javax/xml/soap/SOAPHeaderElement.class

                    package javax.xml.soap;

                    public 
                    abstract 
                    interface SOAPHeaderElement 
                    extends SOAPElement {
    
                    public 
                    abstract void 
                    setActor(String);
    
                    public 
                    abstract String 
                    getActor();
    
                    public 
                    abstract void 
                    setMustUnderstand(boolean);
    
                    public 
                    abstract boolean 
                    getMustUnderstand();
}

                

javax/xml/soap/SOAPMessage.class

                    package javax.xml.soap;

                    public 
                    abstract 
                    synchronized 
                    class SOAPMessage {
    
                    public 
                    static 
                    final String 
                    CHARACTER_SET_ENCODING = javax.xml.soap.character-set-encoding;
    
                    public 
                    static 
                    final String 
                    WRITE_XML_DECLARATION = javax.xml.soap.write-xml-declaration;
    
                    public void SOAPMessage();
    
                    public 
                    abstract String 
                    getContentDescription();
    
                    public 
                    abstract void 
                    setContentDescription(String);
    
                    public 
                    abstract SOAPPart 
                    getSOAPPart();
    
                    public 
                    abstract void 
                    removeAllAttachments();
    
                    public 
                    abstract int 
                    countAttachments();
    
                    public 
                    abstract java.util.Iterator 
                    getAttachments();
    
                    public 
                    abstract java.util.Iterator 
                    getAttachments(MimeHeaders);
    
                    public 
                    abstract void 
                    addAttachmentPart(AttachmentPart);
    
                    public 
                    abstract AttachmentPart 
                    createAttachmentPart();
    
                    public AttachmentPart 
                    createAttachmentPart(javax.activation.DataHandler);
    
                    public 
                    abstract MimeHeaders 
                    getMimeHeaders();
    
                    public AttachmentPart 
                    createAttachmentPart(Object, String);
    
                    public 
                    abstract void 
                    saveChanges() 
                    throws SOAPException;
    
                    public 
                    abstract boolean 
                    saveRequired();
    
                    public 
                    abstract void 
                    writeTo(java.io.OutputStream) 
                    throws SOAPException, java.io.IOException;
    
                    public SOAPBody 
                    getSOAPBody() 
                    throws SOAPException;
    
                    public SOAPHeader 
                    getSOAPHeader() 
                    throws SOAPException;
    
                    public void 
                    setProperty(String, Object) 
                    throws SOAPException;
    
                    public Object 
                    getProperty(String) 
                    throws SOAPException;
}

                

javax/xml/soap/SOAPPart.class

                    package javax.xml.soap;

                    public 
                    abstract 
                    synchronized 
                    class SOAPPart 
                    implements org.w3c.dom.Document {
    
                    public void SOAPPart();
    
                    public 
                    abstract SOAPEnvelope 
                    getEnvelope() 
                    throws SOAPException;
    
                    public String 
                    getContentId();
    
                    public String 
                    getContentLocation();
    
                    public void 
                    setContentId(String);
    
                    public void 
                    setContentLocation(String);
    
                    public 
                    abstract void 
                    removeMimeHeader(String);
    
                    public 
                    abstract void 
                    removeAllMimeHeaders();
    
                    public 
                    abstract String[] 
                    getMimeHeader(String);
    
                    public 
                    abstract void 
                    setMimeHeader(String, String);
    
                    public 
                    abstract void 
                    addMimeHeader(String, String);
    
                    public 
                    abstract java.util.Iterator 
                    getAllMimeHeaders();
    
                    public 
                    abstract java.util.Iterator 
                    getMatchingMimeHeaders(String[]);
    
                    public 
                    abstract java.util.Iterator 
                    getNonMatchingMimeHeaders(String[]);
    
                    public 
                    abstract void 
                    setContent(javax.xml.transform.Source) 
                    throws SOAPException;
    
                    public 
                    abstract javax.xml.transform.Source 
                    getContent() 
                    throws SOAPException;
}

                

javax/xml/soap/Text.class

                    package javax.xml.soap;

                    public 
                    abstract 
                    interface Text 
                    extends Node, org.w3c.dom.Text {
    
                    public 
                    abstract boolean 
                    isComment();
}

                

BookStoreCXFWS/WebContent/WEB-INF/lib/wsdl4j.jar

META-INF/MANIFEST.MF

Manifest-Version: 1.0 Implementation-Vendor: IBM Bundle-Localization: plugin Bundle-RequiredExecutionEnvironment: J2SE-1.2 Bundle-SymbolicName: javax.wsdl Export-Package: com.ibm.wsdl,com.ibm.wsdl.extensions,com.ibm.wsdl.exte nsions.http,com.ibm.wsdl.extensions.mime,com.ibm.wsdl.extensions.sche ma,com.ibm.wsdl.extensions.soap,com.ibm.wsdl.extensions.soap12,com.ib m.wsdl.factory,com.ibm.wsdl.util,com.ibm.wsdl.util.xml,com.ibm.wsdl.x ml,javax.wsdl;version="1.6",javax.wsdl.extensions;version="1.6",javax .wsdl.extensions.http;version="1.6",javax.wsdl.extensions.mime;versio n="1.6",javax.wsdl.extensions.schema;version="1.6",javax.wsdl.extensi ons.soap;version="1.6",javax.wsdl.extensions.soap12;version="1.6",jav ax.wsdl.factory;version="1.6",javax.wsdl.xml;version="1.6" Bundle-Version: 1.6.2.v201012040545 Specification-Title: JWSDL Specification-Version: 1.2 Ant-Version: Apache Ant 1.6.5 Bundle-ClassPath: . Specification-Vendor: IBM (Java Community Process) Bundle-Vendor: %Bundle-Vendor.0 Bundle-Name: %Bundle-Name.0 Created-By: 1.4.1 (IBM Corporation) Implementation-Version: 1.6 Implementation-Title: WSDL4J Bundle-ManifestVersion: 2 Name: com/ibm/wsdl/extensions/soap/SOAPConstants.class SHA1-Digest: zztke9ETJ9wvk2aVt/DadYB6CiQ= Name: com/ibm/wsdl/extensions/soap/SOAPHeaderFaultImpl.class SHA1-Digest: 1DN2riqN8CJ/S7CBFuxSm69ycjc= Name: com/ibm/wsdl/util/IOUtils.class SHA1-Digest: ogQgosTWrrsVdVsQQPyeZOVskcM= Name: javax/wsdl/extensions/soap12/SOAP12Operation.class SHA1-Digest: 7rNkdioL0BXaLYkoeo/zNbf65iY= Name: com/ibm/wsdl/OutputImpl.class SHA1-Digest: uSdhjhBMXVg1I9HeOfVpArgkYS4= Name: com/ibm/wsdl/PortImpl.class SHA1-Digest: 1ZqTxqCR90ydY7USn3nHk/t26so= Name: com/ibm/wsdl/extensions/soap/SOAPOperationSerializer.class SHA1-Digest: l0i+qGCardolaFXI0pG4VqoiwK8= Name: com/ibm/wsdl/extensions/mime/MIMEMultipartRelatedSerializer.clas s SHA1-Digest: nBeGt//YUsAVceDHFqf/ABVlzfQ= Name: com/ibm/wsdl/util/ObjectRegistry.class SHA1-Digest: PZpmg87DCO4o0TWzFkbWlNz9IGY= Name: javax/wsdl/extensions/soap12/SOAP12Body.class SHA1-Digest: UHv5Vh46xllcuCSiBxoCoh9V760= Name: javax/wsdl/extensions/http/HTTPUrlReplacement.class SHA1-Digest: zOn6mGiAZqRtlNt2A7OT2nP7+ww= Name: javax/wsdl/BindingFault.class SHA1-Digest: HW6qQDhk9BK31kHmD7WXFC7/sLg= Name: com/ibm/wsdl/extensions/soap/SOAPAddressSerializer.class SHA1-Digest: +MefyPLEhJ/2mIzFgasbghR2r9I= Name: javax/wsdl/BindingOperation.class SHA1-Digest: LnNiEWAqMnk/BFR0WlK7xEYH1es= Name: com/ibm/wsdl/util/xml/QNameUtils.class SHA1-Digest: X9Pvd+T0fndhlxInEataONkq5wE= Name: com/ibm/wsdl/extensions/schema/SchemaConstants.class SHA1-Digest: BINk3YLkc1iy/HXHpMIUCiNibpg= Name: com/ibm/wsdl/extensions/http/HTTPUrlReplacementImpl.class SHA1-Digest: +zIFv/AAPAs42FuGM5uwVNedFSs= Name: com/ibm/wsdl/extensions/PopulatedExtensionRegistry.class SHA1-Digest: HaXeL/k2xWvhBNiCVrtPKYeCo2M= Name: javax/wsdl/extensions/mime/MIMEMimeXml.class SHA1-Digest: PuaRzJvYtADAhXXXuFoEkO/mVFQ= Name: javax/wsdl/extensions/soap12/SOAP12Binding.class SHA1-Digest: hJFhcHQdAtCwAF+Z2xfUa4ZTvK4= Name: com/ibm/wsdl/BindingFaultImpl.class SHA1-Digest: CJjW8Bmi9i6aahnO8HhRoScUcD0= Name: com/ibm/wsdl/extensions/soap/SOAPBodySerializer.class SHA1-Digest: oXi70/QkMQ/OEPuTRsoGrtGNOng= Name: javax/wsdl/extensions/soap12/SOAP12HeaderFault.class SHA1-Digest: 71Jp7w4wUlywAx1eIfQ1zc+xBA4= Name: javax/wsdl/extensions/UnknownExtensionSerializer.class SHA1-Digest: fztyTD0wpNkYJZegpPi0p5eZN9I= Name: javax/wsdl/extensions/UnknownExtensionDeserializer.class SHA1-Digest: tQea31MFyhar9XWTuZbfL9LXN7U= Name: javax/wsdl/extensions/soap12/SOAP12Header.class SHA1-Digest: 9uVs4sMGJCr/XeyDj9jOqE3IRKc= Name: javax/wsdl/Operation.class SHA1-Digest: QYSXMIltpTqpL9nvr8mLzcT0MgI= Name: com/ibm/wsdl/TypesImpl.class SHA1-Digest: XMn4bP7B49FcMZLu0Uv2q+OmQPY= Name: com/ibm/wsdl/extensions/soap/SOAPBodyImpl.class SHA1-Digest: BXrHnigjCNErcHOWmubQp7koPxE= Name: javax/wsdl/WSDLException.class SHA1-Digest: 2aY14y+ewAzaoxUL8FvJs+ggrQs= Name: javax/wsdl/extensions/ExtensibilityElement.class SHA1-Digest: +iaOts6xfVzNrdFQGTs4yS8IQkM= Name: com/ibm/wsdl/extensions/soap12/SOAP12AddressImpl.class SHA1-Digest: kVQ7KQ+LM3dt9pDODBtvhWD7xiI= Name: javax/wsdl/xml/WSDLWriter.class SHA1-Digest: tbKzJXgu2ht99+E6SSvmpLMblzE= Name: javax/wsdl/extensions/http/HTTPOperation.class SHA1-Digest: +RP+5/NUUZWSpWB+b3q+nYnjON8= Name: com/ibm/wsdl/extensions/soap12/SOAP12BindingSerializer.class SHA1-Digest: 2/XpNonRXHQYD/uUlWeV4p5xi4s= Name: com/ibm/wsdl/extensions/mime/MIMEContentImpl.class SHA1-Digest: pOYnC2Lhfrxl8N4YgTkEA9RtjHs= Name: com/ibm/wsdl/extensions/soap12/SOAP12HeaderImpl.class SHA1-Digest: +qnRkz05H5BYgw9edJWCS21NA+g= Name: javax/wsdl/extensions/schema/Schema.class SHA1-Digest: /dCas8VPZdx2E5LWNyhXsm6CtVk= Name: com/ibm/wsdl/extensions/schema/SchemaSerializer.class SHA1-Digest: j2TC21fGqHGY3uu9/U/EPxNK6Yg= Name: com/ibm/wsdl/InputImpl.class SHA1-Digest: eQp6MgQFPh3wRwzcF3dIchvEG3M= Name: com/ibm/wsdl/extensions/schema/SchemaDeserializer.class SHA1-Digest: JTZAcPG4lOJ2w6IrMy4IQyCiILA= Name: com/ibm/wsdl/extensions/http/HTTPUrlReplacementSerializer.class SHA1-Digest: LVRWeL4Iw7bTdfwsrMiLGWhpHt8= Name: javax/wsdl/PortType.class SHA1-Digest: /OjykAhjLM71/byBCVZCMeY+9vs= Name: javax/wsdl/extensions/soap12/SOAP12Address.class SHA1-Digest: 7bDGDu0tMIbdUbCdkCQ8uq5oUik= Name: com/ibm/wsdl/xml/WSDLWriterImpl.class SHA1-Digest: +5AsnISJBf0QYteDlAqiUH49/HQ= Name: javax/wsdl/Binding.class SHA1-Digest: Q31itYfgVXfHxYkyyru3UAJWkAA= Name: com/ibm/wsdl/AbstractWSDLElement.class SHA1-Digest: zVsUAltlY+Nf+8JsThEyHPEEKao= Name: javax/wsdl/Message.class SHA1-Digest: twnA4k8AC8fJaEuJ6xTpOJ0/SuM= Name: com/ibm/wsdl/util/xml/XPathUtils.class SHA1-Digest: 6OYSoUA5GcTNG3K/UmLpgslqhzY= Name: javax/wsdl/Input.class SHA1-Digest: 54OsIwbg0SL78OCf+7j0hz6gd50= Name: com/ibm/wsdl/extensions/mime/MIMEConstants.class SHA1-Digest: OcybG2tUL2wjaOOKoCSeKSJbtWI= Name: com/ibm/wsdl/PortTypeImpl.class SHA1-Digest: 13VM1GEruIkzQDpcMEcX/oF/fm4= Name: com/ibm/wsdl/extensions/soap12/SOAP12FaultSerializer.class SHA1-Digest: ZeOyyUrPNpV2GVqVgDU3oEJOk/0= Name: javax/wsdl/extensions/http/HTTPBinding.class SHA1-Digest: JEx6EMKh6VyGycRIKbDfwxLO6Pc= Name: javax/wsdl/extensions/soap/SOAPOperation.class SHA1-Digest: OCesIf1snTyrVHbIg3bCVXrkRSA= Name: about.html SHA1-Digest: nEa4HBRELSse4CSiCXs30Cag24Q= Name: com/ibm/wsdl/BindingOutputImpl.class SHA1-Digest: bMteWEvuETSIs4XweHLJ7lPVllw= Name: javax/wsdl/extensions/schema/SchemaReference.class SHA1-Digest: 97xfQDp0jyTnjrxDS3qffFrGJ6Q= Name: com/ibm/wsdl/extensions/soap12/SOAP12FaultImpl.class SHA1-Digest: Usz39h4TY4IO58/RFgG2z7F9l1Y= Name: javax/wsdl/factory/WSDLFactory.class SHA1-Digest: 3F8TsCE/8k4aNeyVSd+EAB4XIWk= Name: com/ibm/wsdl/extensions/soap12/SOAP12OperationImpl.class SHA1-Digest: wQ92xZvf+XpfHUy07TLCOBXh8Ys= Name: com/ibm/wsdl/util/xml/DOMUtils.class SHA1-Digest: 8qdfEXXN/IaIk6EnVpT9cvGjgck= Name: javax/wsdl/BindingOutput.class SHA1-Digest: 4ZFY5mZgRgeY4/AmukHqQm4kV04= Name: javax/wsdl/factory/WSDLFactory$1.class SHA1-Digest: 8EO8TFoWR9eT9oHMLzQ/3NupTTw= Name: javax/wsdl/extensions/soap12/SOAP12Fault.class SHA1-Digest: fkiIPxSp0lLxwZQFN4FtNWVgvL0= Name: com/ibm/wsdl/extensions/http/HTTPAddressImpl.class SHA1-Digest: R3HYzviIswOhra8sJBEG96n2riE= Name: javax/wsdl/extensions/soap/SOAPBinding.class SHA1-Digest: cB3xtetGx5lmAckz5McuECWgj0c= Name: com/ibm/wsdl/extensions/http/HTTPBindingSerializer.class SHA1-Digest: aN7qlOn5XJUv225cHIb2aH82Ueg= Name: javax/wsdl/Service.class SHA1-Digest: x7UEZL7+I7+iFId3i3fS8Pf/pDo= Name: javax/wsdl/extensions/http/HTTPUrlEncoded.class SHA1-Digest: 8Sc7GdjBVnxuvhJkTd+OCKv7Ud0= Name: com/ibm/wsdl/extensions/soap12/SOAP12BodySerializer.class SHA1-Digest: A3Iqrsmw9FExxnK811k+SkOd5dQ= Name: com/ibm/wsdl/extensions/mime/MIMEMimeXmlImpl.class SHA1-Digest: LWzD9h28I/i2+AaOrK1K7wcx8PA= Name: javax/wsdl/extensions/http/HTTPAddress.class SHA1-Digest: sCHBjbRPkS7PJibe1j0fB0aGBFo= Name: javax/wsdl/extensions/soap/SOAPHeaderFault.class SHA1-Digest: cdyYzF1ngo1e2uGvEDrLtQ1hQck= Name: javax/wsdl/OperationType.class SHA1-Digest: cvpAPTY9QT3WHGqvDDDdTXZbCF0= Name: com/ibm/wsdl/extensions/soap12/SOAP12BindingImpl.class SHA1-Digest: khSGNiXi63SWZkUKzSDg8sCYaW4= Name: javax/wsdl/xml/WSDLReader.class SHA1-Digest: SfseH0H5TWZBd1KcACga5TkEZWA= Name: javax/wsdl/extensions/ExtensionRegistry.class SHA1-Digest: bfe3cher9VoKz8UiMEdK2DN1Whw= Name: com/ibm/wsdl/extensions/http/HTTPUrlEncodedImpl.class SHA1-Digest: cKQG329mh4ug/Z4xJc5lxLCwh8A= Name: com/ibm/wsdl/extensions/soap/SOAPHeaderSerializer.class SHA1-Digest: TRS/22+F4YYBEI+tNcor8caCsok= Name: com/ibm/wsdl/util/StringUtils.class SHA1-Digest: JW6XP/LJoezc8/ne5TVDfw50L3w= Name: javax/wsdl/Import.class SHA1-Digest: g561DL4+t5qTSHJjwx3kNsocw2M= Name: com/ibm/wsdl/extensions/soap12/SOAP12BodyImpl.class SHA1-Digest: eUtMyskyfXFMKrnqt8YIqfbX8TA= Name: com/ibm/wsdl/extensions/soap12/SOAP12Constants.class SHA1-Digest: mtCpppgoD86XZp53YJO3PviWM4c= Name: META-INF/eclipse.inf SHA1-Digest: KyT9FF7C7t86NoBoa2kZT3ZJBfw= Name: com/ibm/wsdl/extensions/soap/SOAPAddressImpl.class SHA1-Digest: 5YOMrC7U42hEBfLq8tbjxy0pPOc= Name: com/ibm/wsdl/extensions/soap12/SOAP12HeaderFaultImpl.class SHA1-Digest: Cph3s4/nRTqLtliT4ydsSpeV68c= Name: com/ibm/wsdl/FaultImpl.class SHA1-Digest: VYWjrN4r6yBYrGGgu5pSlvtPzkc= Name: com/ibm/wsdl/extensions/soap/SOAPBindingSerializer.class SHA1-Digest: z8bjji64STei85Lv3M5/eTrfnhs= Name: com/ibm/wsdl/xml/WSDLReaderImpl.class SHA1-Digest: Fo+zYNII0iGHtuEt3JVDf6VsjLs= Name: com/ibm/wsdl/extensions/soap12/SOAP12OperationSerializer.class SHA1-Digest: FfKGSl54nR/jBpFHVWyOjsXonSY= Name: com/ibm/wsdl/BindingOperationImpl.class SHA1-Digest: BprTgvz61wAnJNsmagXfu6iC9fs= Name: com/ibm/wsdl/OperationImpl.class SHA1-Digest: Xr2rzgTRftTWGVTv4Uh3lGC8b3E= Name: javax/wsdl/WSDLElement.class SHA1-Digest: zBm75vuajDtuBzISaxcmocbLz/o= Name: com/ibm/wsdl/ImportImpl.class SHA1-Digest: Q0LzPIlX+P+T29uVsMgA3Fuq+l4= Name: javax/wsdl/extensions/soap/SOAPBody.class SHA1-Digest: iRm0bsMWp4FpTlzCy3knOPGWF5o= Name: javax/wsdl/extensions/ExtensionSerializer.class SHA1-Digest: Er0rVnoRvXOgT/WlxqI3/+WMUlI= Name: javax/wsdl/extensions/ExtensionDeserializer.class SHA1-Digest: 36tKHu4RQrX/spc2Yc4i33h52O0= Name: javax/wsdl/extensions/soap/SOAPAddress.class SHA1-Digest: 4pak3UJbmIYUYYmHIQa0c2aceTc= Name: javax/wsdl/extensions/AttributeExtensible.class SHA1-Digest: s22t93ZxEKZNNI7bep7scfNvPrM= Name: com/ibm/wsdl/extensions/soap12/SOAP12AddressSerializer.class SHA1-Digest: NlLwEsK8NsauZNJ1Fs+AIDaFhvc= Name: javax/wsdl/Fault.class SHA1-Digest: 8Lz3oBPmpoU8kbmldTPTweZZfvg= Name: com/ibm/wsdl/extensions/http/HTTPOperationImpl.class SHA1-Digest: o2wm1gFi/BDy40gd70+GhktlqO0= Name: javax/wsdl/extensions/UnknownExtensibilityElement.class SHA1-Digest: lsqm0C2mgtPVPlAn6I6v8UWNaCc= Name: javax/wsdl/BindingInput.class SHA1-Digest: 58ngO40UPDpDu97TPzK9y1Q6XdA= Name: about_files/license.html SHA1-Digest: rDoLuLb6eVATU+Gr+dtPo4Kj6DM= Name: com/ibm/wsdl/extensions/soap/SOAPFaultSerializer.class SHA1-Digest: DOLYy1lEX3RZRKGpbv+lsw/Ce58= Name: com/ibm/wsdl/extensions/mime/MIMEMimeXmlSerializer.class SHA1-Digest: oq7fIB07iLTNk1Ntbry3IOgClUM= Name: com/ibm/wsdl/BindingImpl.class SHA1-Digest: mYV7mMUNNzwD3Yt9oZInvSA9t1U= Name: plugin.properties SHA1-Digest: Np0cVugKRO9t2xixhPq96wHThWE= Name: javax/wsdl/extensions/mime/MIMEMultipartRelated.class SHA1-Digest: jK8J3kz+zxppF/BlaQ8VYGv7zj8= Name: com/ibm/wsdl/MessageImpl.class SHA1-Digest: afsno1yoKNGBhvPWkj5ZVVAwHpE= Name: javax/wsdl/Definition.class SHA1-Digest: VG6otann9W7KxUHiDIsdudcZEcs= Name: javax/wsdl/Types.class SHA1-Digest: /eF8VBQyTOljyu2q3R+Q7smwLaM= Name: com/ibm/wsdl/extensions/http/HTTPUrlEncodedSerializer.class SHA1-Digest: gHanx2kT5hIPk+Z8SQ595cLZLh0= Name: com/ibm/wsdl/BindingInputImpl.class SHA1-Digest: I+9EDD8nBXO7GsL0FW4Wp29fEYw= Name: javax/wsdl/xml/WSDLLocator.class SHA1-Digest: /83C5wA0tYVMP2V4PXOlgNI40G0= Name: javax/wsdl/extensions/schema/SchemaImport.class SHA1-Digest: UXwGP7rjUFBEOkFBQ+T6vR3YOrE= Name: com/ibm/wsdl/extensions/soap/SOAPFaultImpl.class SHA1-Digest: Tujk4OIvPo1it8whurna/+FSwrY= Name: com/ibm/wsdl/Constants.class SHA1-Digest: F0+WNJ/2p09AUHfzHRJDt64LSdo= Name: javax/wsdl/extensions/ElementExtensible.class SHA1-Digest: h4mCx3Dvqucu2cg7LumNftDTfoE= Name: com/ibm/wsdl/extensions/http/HTTPBindingImpl.class SHA1-Digest: aZpazNzeM7RXSTpRuSb5zvhbsyY= Name: com/ibm/wsdl/extensions/soap/SOAPOperationImpl.class SHA1-Digest: c6tX8XTgLg/dQz1suTSTTQD6VBg= Name: javax/wsdl/extensions/soap/SOAPHeader.class SHA1-Digest: x9z2Z0l965y0MfGsga9KLWAZqvA= Name: javax/wsdl/extensions/mime/MIMEContent.class SHA1-Digest: vuHSzOmp8uCdAD2kqA5oiVX77wc= Name: com/ibm/wsdl/extensions/schema/SchemaReferenceImpl.class SHA1-Digest: VlWr8wHnKHazJ79gaBiilQ0Vc7I= Name: com/ibm/wsdl/extensions/mime/MIMEMultipartRelatedImpl.class SHA1-Digest: UhDGQoyTYWSFyuGGdzO/n1uRIk8= Name: com/ibm/wsdl/DefinitionImpl.class SHA1-Digest: 9f61tQkyjNmZG7i2fXvOlKkpAjI= Name: com/ibm/wsdl/extensions/schema/SchemaImpl.class SHA1-Digest: nx5vjfiToif1KjFq9ebSZjQ7U/I= Name: javax/wsdl/extensions/mime/MIMEPart.class SHA1-Digest: 1Sp7nByKqg9gEy/f+V7s5VfSa30= Name: com/ibm/wsdl/extensions/http/HTTPConstants.class SHA1-Digest: EN1EmkeNDNVVzrNNueFgXrLc2Dg= Name: com/ibm/wsdl/extensions/schema/SchemaImportImpl.class SHA1-Digest: nu4VOMjULb1JV6ICMLOD2LY+0Qk= Name: javax/wsdl/extensions/soap/SOAPFault.class SHA1-Digest: F1RUtRPtDwvkjT6MBbYpe2nrZU4= Name: com/ibm/wsdl/factory/WSDLFactoryImpl.class SHA1-Digest: oKDjBHLNUjrf7Fp1KbfTtOCAE5k= Name: com/ibm/wsdl/extensions/http/HTTPOperationSerializer.class SHA1-Digest: 6efzEdUsjU0auMe/vyDQyPgpVRE= Name: com/ibm/wsdl/extensions/soap/SOAPHeaderImpl.class SHA1-Digest: lSx2USiqVE/RHafcdia+wsKvEZY= Name: javax/wsdl/Part.class SHA1-Digest: ccYxmBZ174K6IqgfdAoBif0RkVs= Name: com/ibm/wsdl/util/xml/DOM2Writer.class SHA1-Digest: 6TFEm5PCaYkgQQksYafqdWFIL9Y= Name: com/ibm/wsdl/extensions/mime/MIMEPartImpl.class SHA1-Digest: 3z6PdIpX0PYEVaBwXrx3nkWaZ8Q= Name: com/ibm/wsdl/extensions/soap/SOAPBindingImpl.class SHA1-Digest: U0x3c3Cbc5BhSb4poUXoFJd3dzg= Name: com/ibm/wsdl/extensions/http/HTTPAddressSerializer.class SHA1-Digest: v1aZv05F4XfOk9LWFFpn/Wo2ZgY= Name: javax/wsdl/Port.class SHA1-Digest: 3iIJv8+xYuCgleC6KIguAhzUTEU= Name: javax/wsdl/Output.class SHA1-Digest: TfnZgd/Z2GPFDICyfBHXuAdnlL8= Name: com/ibm/wsdl/ServiceImpl.class SHA1-Digest: eqVfGeMeIIdEDYHmBdYhks33w/A= Name: com/ibm/wsdl/extensions/mime/MIMEContentSerializer.class SHA1-Digest: RHxQGbEQPg28d5W9Vd7In1TFL0o= Name: com/ibm/wsdl/PartImpl.class SHA1-Digest: Q4AaKQ35PcTDygzB62cR/q3kBsw= Name: com/ibm/wsdl/extensions/soap12/SOAP12HeaderSerializer.class SHA1-Digest: 2DFyRPNvbdpzAEHrSchzbQBSDV0=

META-INF/ECLIPSEF.SF

Signature-Version: 1.0 SHA1-Digest-Manifest: AsxeL43xzC1xgxwpY5RyaHLsT4g= Created-By: 1.6.0 (IBM Corporation) SHA1-Digest-Manifest-Main-Attributes: Yv9nhr2vgs2ZQz3oNORR2KfJCtw= Name: com/ibm/wsdl/extensions/soap/SOAPConstants.class SHA1-Digest: o2hNvbsTl6BZlj0mrKKi6LWcbmI= Name: com/ibm/wsdl/extensions/soap/SOAPHeaderFaultImpl.class SHA1-Digest: nDnURywqAO/ypkFkN6/LTigHzKQ= Name: com/ibm/wsdl/util/IOUtils.class SHA1-Digest: abtJQ0XNi5VzpTW4cxqs2Rz0Zm8= Name: javax/wsdl/extensions/soap12/SOAP12Operation.class SHA1-Digest: DVPYw+E64bezOAbinpmUbvG3bwY= Name: com/ibm/wsdl/extensions/soap/SOAPOperationSerializer.class SHA1-Digest: At3bmmDuKr9vN2R2NHXrMMuC8LM= Name: com/ibm/wsdl/PortImpl.class SHA1-Digest: SD6Yc2huFPwhN/zCkIfHmaEkUCs= Name: com/ibm/wsdl/OutputImpl.class SHA1-Digest: UrUX2nNjz+HznqHl8mMRHPMM534= Name: com/ibm/wsdl/util/ObjectRegistry.class SHA1-Digest: et0dxdux2LKN1fV8scVscf4EaWs= Name: com/ibm/wsdl/extensions/mime/MIMEMultipartRelatedSerializer.clas s SHA1-Digest: /SL8biyCSHprbz2KBHsDAwMS7Ns= Name: javax/wsdl/extensions/soap12/SOAP12Body.class SHA1-Digest: Ax1E05I68Is3dmPBGmHdIVwidqM= Name: javax/wsdl/extensions/http/HTTPUrlReplacement.class SHA1-Digest: ZZtmhxWuqOwrWXm0X9cTEvVw0FE= Name: javax/wsdl/BindingFault.class SHA1-Digest: tu3FCjhIcbJ+KUasLZ+z+bX+hHw= Name: com/ibm/wsdl/extensions/soap/SOAPAddressSerializer.class SHA1-Digest: tFodo0Jdt2WcEBLw2CF7xBLU1Jk= Name: javax/wsdl/BindingOperation.class SHA1-Digest: vMbaFRl4AfqrPkEgkY5z5nYdkCc= Name: com/ibm/wsdl/util/xml/QNameUtils.class SHA1-Digest: T+iXGZMBOOh1MF0I8JQrk2bR5SQ= Name: com/ibm/wsdl/extensions/schema/SchemaConstants.class SHA1-Digest: icmyf+fn6UX0VScV0z0SuqEcZ4o= Name: com/ibm/wsdl/extensions/http/HTTPUrlReplacementImpl.class SHA1-Digest: WmIsSSbn9aVEsDHMM20wcxMUwCw= Name: com/ibm/wsdl/extensions/PopulatedExtensionRegistry.class SHA1-Digest: gXyEm235QdgbbIy7J3WN+jsYerM= Name: javax/wsdl/extensions/mime/MIMEMimeXml.class SHA1-Digest: lf0RGnFdXdZMY/XmPaspj026lJ8= Name: javax/wsdl/extensions/soap12/SOAP12Binding.class SHA1-Digest: mP/SJfDfXxtqTAkN/xv1oCF7lIc= Name: com/ibm/wsdl/BindingFaultImpl.class SHA1-Digest: a83D8qOMjANZa1FJ3ycuMEeY2q4= Name: com/ibm/wsdl/extensions/soap/SOAPBodySerializer.class SHA1-Digest: Vz8CQf4HvQTfrFEcGX+wQ1lxicA= Name: javax/wsdl/extensions/soap12/SOAP12HeaderFault.class SHA1-Digest: 9sZx6RVqqXI4iAwS1mYPI8diTw0= Name: javax/wsdl/extensions/UnknownExtensionSerializer.class SHA1-Digest: Ju6UeQWYjEJY/5/BR6XvHYE2uIs= Name: javax/wsdl/extensions/UnknownExtensionDeserializer.class SHA1-Digest: aLqTdiowdOJ0c/myYU7K0Ge/AjA= Name: javax/wsdl/extensions/soap12/SOAP12Header.class SHA1-Digest: Rzyd7Tt8ZfTNXJZhy942MBko+zA= Name: javax/wsdl/Operation.class SHA1-Digest: m3lgBUthrWkEXbC/DkSdpyWLMKk= Name: com/ibm/wsdl/TypesImpl.class SHA1-Digest: 7YAwCXvhfCMSNxZc09N16yRQvyg= Name: com/ibm/wsdl/extensions/soap/SOAPBodyImpl.class SHA1-Digest: FrFGrM+AWIN6YoceCKKsWfZmYjg= Name: javax/wsdl/WSDLException.class SHA1-Digest: Hq8nm3qdnNuF8rDNVWo/S0QSTNc= Name: javax/wsdl/extensions/ExtensibilityElement.class SHA1-Digest: yJqZovIy0FoAhi2H3eBOOc4fzy0= Name: com/ibm/wsdl/extensions/soap12/SOAP12AddressImpl.class SHA1-Digest: xzKavf1kPvaphM7TFamMb5BbDkY= Name: com/ibm/wsdl/extensions/soap12/SOAP12BindingSerializer.class SHA1-Digest: ACcLH7yXz0YAlaciCXIyfaQLC+w= Name: javax/wsdl/extensions/http/HTTPOperation.class SHA1-Digest: sKz5nokqXnvPtuHLc3eCQ9uVUzw= Name: javax/wsdl/xml/WSDLWriter.class SHA1-Digest: HWe79O6qMF30vob2MVc9T+FuSW0= Name: com/ibm/wsdl/extensions/soap12/SOAP12HeaderImpl.class SHA1-Digest: b1YOUOCpTwXrnn/Y9klsPX6NNpg= Name: com/ibm/wsdl/extensions/mime/MIMEContentImpl.class SHA1-Digest: CWbwuPI33Z/W8odl9cnLhrYgIgs= Name: javax/wsdl/extensions/schema/Schema.class SHA1-Digest: ns6ICLzsztrjgBm8IOW1ntbYSUY= Name: com/ibm/wsdl/InputImpl.class SHA1-Digest: w4pCX6Mvou7umOUbZ0K+1LqHLb4= Name: com/ibm/wsdl/extensions/schema/SchemaSerializer.class SHA1-Digest: waKXxg8AMLUHJtdIuArE6Lvqo5w= Name: com/ibm/wsdl/extensions/schema/SchemaDeserializer.class SHA1-Digest: P6PPQyfpElXLu2k1XehWStYzkGc= Name: com/ibm/wsdl/extensions/http/HTTPUrlReplacementSerializer.class SHA1-Digest: TxBwR6+YArbFCh4jNTTJcpgyX9M= Name: javax/wsdl/PortType.class SHA1-Digest: 8M+pAKbKWyzDtrL0vYvC0PVpZ5I= Name: javax/wsdl/extensions/soap12/SOAP12Address.class SHA1-Digest: NunHHREi490hfLcpWZR9R9sNsMo= Name: com/ibm/wsdl/xml/WSDLWriterImpl.class SHA1-Digest: RwiGBWl+Xt2k1mdQLQCR0CSkvC4= Name: javax/wsdl/Binding.class SHA1-Digest: 5Ah72dmlQctpDYR/cL6eJzqPTHA= Name: com/ibm/wsdl/AbstractWSDLElement.class SHA1-Digest: G4wvWU2Q9yKQLST0dPxDuIOIoZs= Name: javax/wsdl/Message.class SHA1-Digest: moDPPRDX5kyQc8FZM59eXTMKZM0= Name: com/ibm/wsdl/util/xml/XPathUtils.class SHA1-Digest: iTs6naKo7cncpCul+Uc8JJ3evMk= Name: javax/wsdl/Input.class SHA1-Digest: eEK3siqQH+aESTin2UmQ8p23ob8= Name: com/ibm/wsdl/extensions/mime/MIMEConstants.class SHA1-Digest: hjUkl8ycPgw3ug+ufubTR6y1rXo= Name: com/ibm/wsdl/PortTypeImpl.class SHA1-Digest: xDreqtpv5oAwE8Z0DtCX/uiB10c= Name: com/ibm/wsdl/extensions/soap12/SOAP12FaultSerializer.class SHA1-Digest: wYghErnta6tE+78mMRKr5YSerog= Name: javax/wsdl/extensions/http/HTTPBinding.class SHA1-Digest: 3sCw4EQ05TlWQoXIUCA/haVbm3c= Name: javax/wsdl/extensions/soap/SOAPOperation.class SHA1-Digest: FQwynJ/esEAnlQtZ5I9bOJqFUWY= Name: about.html SHA1-Digest: H5rO1UvPMtDdgsdQ/jitndo6Jg0= Name: com/ibm/wsdl/BindingOutputImpl.class SHA1-Digest: 8O7i3cYytITQ/P6d4OdlquPZdWM= Name: javax/wsdl/extensions/schema/SchemaReference.class SHA1-Digest: lEYo0qt1y8uQY30uCc8dHk91XYQ= Name: com/ibm/wsdl/extensions/soap12/SOAP12FaultImpl.class SHA1-Digest: GbvaPJp2X5JEe5P2xadjsiHeZzg= Name: javax/wsdl/factory/WSDLFactory.class SHA1-Digest: Ltqd9Im1098xAuRK21EgeqfpQf0= Name: com/ibm/wsdl/extensions/soap12/SOAP12OperationImpl.class SHA1-Digest: IpzW6Fp48/c4no/oIEinbneNxd8= Name: com/ibm/wsdl/util/xml/DOMUtils.class SHA1-Digest: uISYR3ljDXc0PpP5eIjfc7rTyU0= Name: javax/wsdl/BindingOutput.class SHA1-Digest: arM3FfUm2pIGJy6jeCV6C8pVTG8= Name: javax/wsdl/factory/WSDLFactory$1.class SHA1-Digest: yM593b8InBeIvTxdgDLbI0Crd9Y= Name: javax/wsdl/extensions/soap12/SOAP12Fault.class SHA1-Digest: 46p0/wXiICR1L5yQZETH/YiCAPY= Name: com/ibm/wsdl/extensions/http/HTTPAddressImpl.class SHA1-Digest: TvAW9NELgiHiqHzenx0k42bFtA0= Name: javax/wsdl/extensions/soap/SOAPBinding.class SHA1-Digest: HH3ocIGI0yKbh+VOnvT5L6nrXwo= Name: com/ibm/wsdl/extensions/http/HTTPBindingSerializer.class SHA1-Digest: Sg9JBdMZJLEBwlyvhBR/MIC7qyg= Name: javax/wsdl/Service.class SHA1-Digest: KyZSvG6o0M/kePVP5jE8ZSjWbKY= Name: javax/wsdl/extensions/http/HTTPUrlEncoded.class SHA1-Digest: Zslys9oBqzG+HsyHtTmWMYsTXNs= Name: com/ibm/wsdl/extensions/soap12/SOAP12BodySerializer.class SHA1-Digest: v7xli8gGTq3qsewGc/u0qdsNWkw= Name: com/ibm/wsdl/extensions/mime/MIMEMimeXmlImpl.class SHA1-Digest: zLyiXeTRk4gLhRMIDZSKRWANBis= Name: javax/wsdl/extensions/http/HTTPAddress.class SHA1-Digest: 9D4D7VwztiDwD2jdihWdtYyLpjY= Name: javax/wsdl/extensions/soap/SOAPHeaderFault.class SHA1-Digest: 1EIXEb/xxkpdqtazFXc5Yo4goyM= Name: javax/wsdl/OperationType.class SHA1-Digest: DOYu6DzUqj/H6Zz9FnZNU1FieGg= Name: com/ibm/wsdl/extensions/soap12/SOAP12BindingImpl.class SHA1-Digest: K3aJsMPOo9O99if1hj33klYdY2s= Name: javax/wsdl/xml/WSDLReader.class SHA1-Digest: fTxSAPHEP4KPwQGoSnF2jNWYSSU= Name: javax/wsdl/extensions/ExtensionRegistry.class SHA1-Digest: mOdfhGjAsVmfGKtve0ZT8LicLL0= Name: com/ibm/wsdl/extensions/http/HTTPUrlEncodedImpl.class SHA1-Digest: n7tYYlB2ub6MXhiFZGTpyeAWe7s= Name: com/ibm/wsdl/extensions/soap/SOAPHeaderSerializer.class SHA1-Digest: cQP8USYzBJLNTgqycR4DYDdXg7c= Name: com/ibm/wsdl/util/StringUtils.class SHA1-Digest: 3gLlmCFQrsH7hcGI+mzxtWQjOhU= Name: javax/wsdl/Import.class SHA1-Digest: bFad3s8F7ZeprsVJgntiVrvEWZ4= Name: com/ibm/wsdl/extensions/soap12/SOAP12BodyImpl.class SHA1-Digest: J55RWz5ZIVcGXOZHPSaxj2dtmUY= Name: com/ibm/wsdl/extensions/soap12/SOAP12Constants.class SHA1-Digest: DkSgXx3TIRINP0fs/Pcvs7x69xw= Name: META-INF/eclipse.inf SHA1-Digest: SAqY+5ITAL0mkdYeijlSRhyIaZk= Name: com/ibm/wsdl/extensions/soap/SOAPAddressImpl.class SHA1-Digest: +DzRqifUFe/OkYXHOi4l66mcy7Q= Name: com/ibm/wsdl/extensions/soap12/SOAP12HeaderFaultImpl.class SHA1-Digest: 6D9avP+mJjq3ApdEHvsVCjSNie8= Name: com/ibm/wsdl/FaultImpl.class SHA1-Digest: lcMQ3pnmeXWdizOx5Ju36uaYx7c= Name: com/ibm/wsdl/extensions/soap/SOAPBindingSerializer.class SHA1-Digest: fBnh1Jtg0zZDtY56SZ96uiUrzrU= Name: com/ibm/wsdl/xml/WSDLReaderImpl.class SHA1-Digest: 1UTWd79NE3sJuK522+hjNIw4yOE= Name: com/ibm/wsdl/extensions/soap12/SOAP12OperationSerializer.class SHA1-Digest: lpE/lT9ntWw3+ek2KIBtn4iFnMQ= Name: com/ibm/wsdl/BindingOperationImpl.class SHA1-Digest: hOl7HViv3IPCg5vmpTsu/rPY/UM= Name: com/ibm/wsdl/OperationImpl.class SHA1-Digest: XFZkGNFVrqW9GNFd9eMshMP7M04= Name: javax/wsdl/WSDLElement.class SHA1-Digest: iSuagoSMIbMYpMvXbyj4ZxVsyZA= Name: com/ibm/wsdl/ImportImpl.class SHA1-Digest: 9iyYJYcud6h3aIdofzMOXMCltCY= Name: javax/wsdl/extensions/ExtensionSerializer.class SHA1-Digest: eOHHLNueqzXXGqZ1mgC/og/ZyOE= Name: javax/wsdl/extensions/soap/SOAPBody.class SHA1-Digest: RffAOeVaBBYei4sncZhQowenVlc= Name: javax/wsdl/extensions/ExtensionDeserializer.class SHA1-Digest: MJqlJIA4jgH1W6D6bTkIIBfGlAk= Name: javax/wsdl/extensions/AttributeExtensible.class SHA1-Digest: UVcEsg6ur+r4HU7pevzjNhwjbvY= Name: javax/wsdl/extensions/soap/SOAPAddress.class SHA1-Digest: /W/gyPqZ36smcxZGNIX8itBoiEs= Name: javax/wsdl/Fault.class SHA1-Digest: 9qbSjTFS+xgL5nLFlegYgCqmUQI= Name: com/ibm/wsdl/extensions/soap12/SOAP12AddressSerializer.class SHA1-Digest: QRyUQ/n6s7eYTnwDpMnXO8Ge5RY= Name: com/ibm/wsdl/extensions/http/HTTPOperationImpl.class SHA1-Digest: dbqAJf2EnsWnJ1TjFBs6V9nyaoY= Name: javax/wsdl/extensions/UnknownExtensibilityElement.class SHA1-Digest: lHvv7tEDb4TGtwbgN4k74r1nQiU= Name: javax/wsdl/BindingInput.class SHA1-Digest: 591hszhnG80oqFs8kUbG1Yt2HQQ= Name: about_files/license.html SHA1-Digest: v1iJOFijpH6+LSCyQ7tDo8FTLN0= Name: com/ibm/wsdl/extensions/soap/SOAPFaultSerializer.class SHA1-Digest: AEv+x0Tcs+hcOTF+wzg61NVt0Hc= Name: com/ibm/wsdl/extensions/mime/MIMEMimeXmlSerializer.class SHA1-Digest: k/PSqoKzuz2xgXTuI/ZvLHNJju4= Name: com/ibm/wsdl/BindingImpl.class SHA1-Digest: 84cD4OqPf4BVuquuujBwHqOr7WY= Name: plugin.properties SHA1-Digest: AmIF1H55NAxuK2kMxbxBengezgk= Name: javax/wsdl/Definition.class SHA1-Digest: zOLmUqEXa/ApJGv00pBuI/Yd0eA= Name: com/ibm/wsdl/MessageImpl.class SHA1-Digest: 7ocEGbOHmr6mHPtz1RL2QMq4X/0= Name: javax/wsdl/extensions/mime/MIMEMultipartRelated.class SHA1-Digest: +lIuj8JzFx9X/9rYrvnoj7khXbc= Name: com/ibm/wsdl/BindingInputImpl.class SHA1-Digest: kzlHZGKzxgPFdvoqVTM+R+qkS+I= Name: com/ibm/wsdl/extensions/http/HTTPUrlEncodedSerializer.class SHA1-Digest: plDmvggzyvIcsy5vdeJlAq85duI= Name: javax/wsdl/Types.class SHA1-Digest: 3f7XLNs/LXWlNQb4kFRYH4FsFjc= Name: javax/wsdl/xml/WSDLLocator.class SHA1-Digest: 0hLnTMAAMtAz4QuGaw+lVMGhNBs= Name: javax/wsdl/extensions/schema/SchemaImport.class SHA1-Digest: PV3emjMMCByozk0k9dPmD/bBBzk= Name: com/ibm/wsdl/extensions/soap/SOAPFaultImpl.class SHA1-Digest: fxYezSLkh2g7McjeEIweNbe75Ds= Name: com/ibm/wsdl/Constants.class SHA1-Digest: dtSyGC2frzEmMqHc82q6weShZZE= Name: javax/wsdl/extensions/ElementExtensible.class SHA1-Digest: g8zwZyHNFUKWFKvy4XZbdQ6XexE= Name: com/ibm/wsdl/extensions/http/HTTPBindingImpl.class SHA1-Digest: f1pTLVPU3usy+u38EbroRSOoLts= Name: com/ibm/wsdl/extensions/soap/SOAPOperationImpl.class SHA1-Digest: y+/Bm5ofkzsMCREYVwHZTah5cX8= Name: javax/wsdl/extensions/mime/MIMEContent.class SHA1-Digest: 7nmMZG3OK+jG/nWibbO55aAeR1Q= Name: javax/wsdl/extensions/soap/SOAPHeader.class SHA1-Digest: 6Iad8DIUnmd20JiJlrkBqB+8DRo= Name: com/ibm/wsdl/DefinitionImpl.class SHA1-Digest: bq+NA7Qa7IAMU70lBVx3rOXkHOw= Name: com/ibm/wsdl/extensions/mime/MIMEMultipartRelatedImpl.class SHA1-Digest: 8oqLhy1dp+n5gLSxL/maO3gJ5Kk= Name: com/ibm/wsdl/extensions/schema/SchemaReferenceImpl.class SHA1-Digest: mTf4cWCQRZke+g1bXHRPI9G6OZo= Name: com/ibm/wsdl/extensions/schema/SchemaImpl.class SHA1-Digest: dG/j8f5KWYvvQHtSxG6I3u20zJo= Name: com/ibm/wsdl/extensions/http/HTTPConstants.class SHA1-Digest: +RwYOT8MmbXyiDNv7+1wFUZdAfg= Name: javax/wsdl/extensions/mime/MIMEPart.class SHA1-Digest: 8L7kWI/1Rti88Ebi8VGlP6BP+dc= Name: com/ibm/wsdl/extensions/schema/SchemaImportImpl.class SHA1-Digest: dvtWVcOe1s/A9Dt1vojRKtpX2yM= Name: javax/wsdl/extensions/soap/SOAPFault.class SHA1-Digest: U4z/79cItJiMSIEja3qkia7VaQI= Name: com/ibm/wsdl/factory/WSDLFactoryImpl.class SHA1-Digest: wohwOjHsdCJIB7eYZkQAwAFdX2o= Name: com/ibm/wsdl/extensions/soap/SOAPHeaderImpl.class SHA1-Digest: p36g54hhKAxuUj23gOQeG6NZuiA= Name: com/ibm/wsdl/extensions/http/HTTPOperationSerializer.class SHA1-Digest: HXHUbafqQTTNnQp4VpGeLLEW10Q= Name: javax/wsdl/Part.class SHA1-Digest: nmO4ZmJO7MIsvFw8HOZCNmU8PQE= Name: com/ibm/wsdl/util/xml/DOM2Writer.class SHA1-Digest: QHbee3bNQcKm+TpyJAj2Efwn5yg= Name: com/ibm/wsdl/extensions/mime/MIMEPartImpl.class SHA1-Digest: kgggG1hqH+gq775sT5WMe1+5oss= Name: com/ibm/wsdl/extensions/soap/SOAPBindingImpl.class SHA1-Digest: uk2UD2LHFR25I2nFWj6oQwLDuvQ= Name: com/ibm/wsdl/extensions/http/HTTPAddressSerializer.class SHA1-Digest: /cABgFnq7jkD03ecZV8yAc3Y4to= Name: com/ibm/wsdl/ServiceImpl.class SHA1-Digest: OV3YwN7rn0LoaQeBpLnWDTHyI/4= Name: javax/wsdl/Output.class SHA1-Digest: voRgrBETGNWBh2qT+veOgkwC99k= Name: javax/wsdl/Port.class SHA1-Digest: k9VQXZqX2kPOigleBnJzJrPIsFs= Name: com/ibm/wsdl/extensions/soap12/SOAP12HeaderSerializer.class SHA1-Digest: By6Jdr2GvY8TdTn7AwCbzM+OzlY= Name: com/ibm/wsdl/PartImpl.class SHA1-Digest: hALZkTXjITVWURv6n+p2Dls9sRU= Name: com/ibm/wsdl/extensions/mime/MIMEContentSerializer.class SHA1-Digest: SFwknPyt+SWY9kOwq/vlIJwwiHA=

META-INF/ECLIPSEF.RSA

META-INF/eclipse.inf

#Processed using Jarprocessor pack200.args = -E4 pack200.conditioned = true

about.html

About This Content

June, 2008

License

The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available at http://www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, "Program" will mean the Content.

If you did not receive this Content directly from the Eclipse Foundation, the Content is being redistributed by another party ("Redistributor") and different terms and conditions may apply to your use of any object code in the Content. Check the Redistributor's license that was provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise indicated below, the terms and conditions of the EPL still apply to any source code in the Content and such source code may be obtained at http://www.eclipse.org.

Third Party Content

The Content includes items that have been sourced from third parties as set out below. If you did not receive this Content directly from the Eclipse Foundation, the following is provided for informational purposes only, and you should look to the Redistributor's license for terms and conditions of use.

WSDL4J 1.6.2

The plug-in is accompanied by WSDL4J 1.6.2 ("WSDL4J") developed by IBM.

Your use of WSDL4J is governed by the terms and conditions of the Common Public License Version 1.0, a copy of which is located in about_files/license.html and is also available at http://www.opensource.org/licenses/cpl1.0.php.

Source code for WSDL4J may be obtained at http://sourceforge.net/projects/wsdl4j.

about_files/license.html

Common Public License - v 1.0

THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.

1. DEFINITIONS

"Contribution" means:

    a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and b) in the case of each subsequent Contributor:
      i) changes to the Program, and
        ii) additions to the Program;
          where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program.

          "Contributor" means any person or entity that distributes the Program.

          "Licensed Patents " mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program.

          "Program" means the Contributions distributed in accordance with this Agreement.

          "Recipient" means anyone who receives the Program under this Agreement, including all Contributors.

          2. GRANT OF RIGHTS

            a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form.
                b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder.
                    c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program.
                        d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement.

                          3. REQUIREMENTS

                          A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that:

                            a) it complies with the terms and conditions of this Agreement; and
                              b) its license agreement:
                                i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose;
                                  ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits;
                                    iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and
                                      iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange.

                                        When the Program is made available in source code form:

                                          a) it must be made available under this Agreement; and
                                            b) a copy of this Agreement must be included with each copy of the Program.

                                            Contributors may not remove or alter any copyright notices contained within the Program.

                                            Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution.

                                            4. COMMERCIAL DISTRIBUTION

                                            Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense.

                                            For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages.

                                            5. NO WARRANTY

                                            EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations.

                                            6. DISCLAIMER OF LIABILITY

                                            EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

                                            7. GENERAL

                                            If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.

                                            If Recipient institutes patent litigation against a Contributor with respect to a patent applicable to software (including a cross-claim or counterclaim in a lawsuit), then any patent licenses granted by that Contributor to such Recipient under this Agreement shall terminate as of the date such litigation is filed. In addition, if Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed.

                                            All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive.

                                            Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. IBM is the initial Agreement Steward. IBM may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved.

                                            This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation.

com/ibm/wsdl/AbstractWSDLElement.class

                    package com.ibm.wsdl;

                    public 
                    abstract 
                    synchronized 
                    class AbstractWSDLElement 
                    implements javax.wsdl.WSDLElement {
    
                    protected org.w3c.dom.Element 
                    docEl;
    
                    protected java.util.List 
                    extElements;
    
                    protected java.util.Map 
                    extensionAttributes;
    
                    public void AbstractWSDLElement();
    
                    public void 
                    setDocumentationElement(org.w3c.dom.Element);
    
                    public org.w3c.dom.Element 
                    getDocumentationElement();
    
                    public void 
                    addExtensibilityElement(javax.wsdl.extensions.ExtensibilityElement);
    
                    public javax.wsdl.extensions.ExtensibilityElement 
                    removeExtensibilityElement(javax.wsdl.extensions.ExtensibilityElement);
    
                    public java.util.List 
                    getExtensibilityElements();
    
                    public void 
                    setExtensionAttribute(javax.xml.namespace.QName, Object);
    
                    public Object 
                    getExtensionAttribute(javax.xml.namespace.QName);
    
                    public java.util.Map 
                    getExtensionAttributes();
    
                    public String 
                    toString();
}

                

com/ibm/wsdl/BindingFaultImpl.class

                    package com.ibm.wsdl;

                    public 
                    synchronized 
                    class BindingFaultImpl 
                    extends AbstractWSDLElement 
                    implements javax.wsdl.BindingFault {
    
                    protected String 
                    name;
    
                    protected java.util.List 
                    nativeAttributeNames;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void BindingFaultImpl();
    
                    public void 
                    setName(String);
    
                    public String 
                    getName();
    
                    public String 
                    toString();
    
                    public java.util.List 
                    getNativeAttributeNames();
}

                

com/ibm/wsdl/BindingImpl.class

                    package com.ibm.wsdl;

                    public 
                    synchronized 
                    class BindingImpl 
                    extends AbstractWSDLElement 
                    implements javax.wsdl.Binding {
    
                    protected javax.xml.namespace.QName 
                    name;
    
                    protected javax.wsdl.PortType 
                    portType;
    
                    protected java.util.List 
                    bindingOperations;
    
                    protected java.util.List 
                    nativeAttributeNames;
    
                    protected boolean 
                    isUndefined;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void BindingImpl();
    
                    public void 
                    setQName(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getQName();
    
                    public void 
                    setPortType(javax.wsdl.PortType);
    
                    public javax.wsdl.PortType 
                    getPortType();
    
                    public void 
                    addBindingOperation(javax.wsdl.BindingOperation);
    
                    public javax.wsdl.BindingOperation 
                    getBindingOperation(String, String, String);
    
                    public java.util.List 
                    getBindingOperations();
    
                    public javax.wsdl.BindingOperation 
                    removeBindingOperation(String, String, String);
    
                    public void 
                    setUndefined(boolean);
    
                    public boolean 
                    isUndefined();
    
                    public String 
                    toString();
    
                    public java.util.List 
                    getNativeAttributeNames();
}

                

com/ibm/wsdl/BindingInputImpl.class

                    package com.ibm.wsdl;

                    public 
                    synchronized 
                    class BindingInputImpl 
                    extends AbstractWSDLElement 
                    implements javax.wsdl.BindingInput {
    
                    protected String 
                    name;
    
                    protected java.util.List 
                    nativeAttributeNames;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void BindingInputImpl();
    
                    public void 
                    setName(String);
    
                    public String 
                    getName();
    
                    public String 
                    toString();
    
                    public java.util.List 
                    getNativeAttributeNames();
}

                

com/ibm/wsdl/BindingOperationImpl.class

                    package com.ibm.wsdl;

                    public 
                    synchronized 
                    class BindingOperationImpl 
                    extends AbstractWSDLElement 
                    implements javax.wsdl.BindingOperation {
    
                    protected String 
                    name;
    
                    protected javax.wsdl.Operation 
                    operation;
    
                    protected javax.wsdl.BindingInput 
                    bindingInput;
    
                    protected javax.wsdl.BindingOutput 
                    bindingOutput;
    
                    protected java.util.Map 
                    bindingFaults;
    
                    protected java.util.List 
                    nativeAttributeNames;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void BindingOperationImpl();
    
                    public void 
                    setName(String);
    
                    public String 
                    getName();
    
                    public void 
                    setOperation(javax.wsdl.Operation);
    
                    public javax.wsdl.Operation 
                    getOperation();
    
                    public void 
                    setBindingInput(javax.wsdl.BindingInput);
    
                    public javax.wsdl.BindingInput 
                    getBindingInput();
    
                    public void 
                    setBindingOutput(javax.wsdl.BindingOutput);
    
                    public javax.wsdl.BindingOutput 
                    getBindingOutput();
    
                    public void 
                    addBindingFault(javax.wsdl.BindingFault);
    
                    public javax.wsdl.BindingFault 
                    getBindingFault(String);
    
                    public javax.wsdl.BindingFault 
                    removeBindingFault(String);
    
                    public java.util.Map 
                    getBindingFaults();
    
                    public String 
                    toString();
    
                    public java.util.List 
                    getNativeAttributeNames();
}

                

com/ibm/wsdl/BindingOutputImpl.class

                    package com.ibm.wsdl;

                    public 
                    synchronized 
                    class BindingOutputImpl 
                    extends AbstractWSDLElement 
                    implements javax.wsdl.BindingOutput {
    
                    protected String 
                    name;
    
                    protected java.util.List 
                    nativeAttributeNames;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void BindingOutputImpl();
    
                    public void 
                    setName(String);
    
                    public String 
                    getName();
    
                    public String 
                    toString();
    
                    public java.util.List 
                    getNativeAttributeNames();
}

                

com/ibm/wsdl/Constants.class

                    package com.ibm.wsdl;

                    public 
                    synchronized 
                    class Constants {
    
                    public 
                    static 
                    final String 
                    NS_URI_WSDL = http://schemas.xmlsoap.org/wsdl/;
    
                    public 
                    static 
                    final String 
                    NS_URI_XMLNS = http://www.w3.org/2000/xmlns/;
    
                    public 
                    static 
                    final String 
                    ELEM_DEFINITIONS = definitions;
    
                    public 
                    static 
                    final String 
                    ELEM_IMPORT = import;
    
                    public 
                    static 
                    final String 
                    ELEM_TYPES = types;
    
                    public 
                    static 
                    final String 
                    ELEM_MESSAGE = message;
    
                    public 
                    static 
                    final String 
                    ELEM_PORT_TYPE = portType;
    
                    public 
                    static 
                    final String 
                    ELEM_BINDING = binding;
    
                    public 
                    static 
                    final String 
                    ELEM_SERVICE = service;
    
                    public 
                    static 
                    final String 
                    ELEM_PART = part;
    
                    public 
                    static 
                    final String 
                    ELEM_OPERATION = operation;
    
                    public 
                    static 
                    final String 
                    ELEM_INPUT = input;
    
                    public 
                    static 
                    final String 
                    ELEM_OUTPUT = output;
    
                    public 
                    static 
                    final String 
                    ELEM_FAULT = fault;
    
                    public 
                    static 
                    final String 
                    ELEM_PORT = port;
    
                    public 
                    static 
                    final String 
                    ELEM_DOCUMENTATION = documentation;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_DEFINITIONS;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_IMPORT;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_TYPES;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_MESSAGE;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_PORT_TYPE;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_BINDING;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_SERVICE;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_PART;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_OPERATION;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_INPUT;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_OUTPUT;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_FAULT;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_PORT;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_DOCUMENTATION;
    
                    public 
                    static 
                    final String 
                    ATTR_NAME = name;
    
                    public 
                    static 
                    final String 
                    ATTR_TARGET_NAMESPACE = targetNamespace;
    
                    public 
                    static 
                    final String 
                    ATTR_ELEMENT = element;
    
                    public 
                    static 
                    final String 
                    ATTR_TYPE = type;
    
                    public 
                    static 
                    final String 
                    ATTR_MESSAGE = message;
    
                    public 
                    static 
                    final String 
                    ATTR_PARAMETER_ORDER = parameterOrder;
    
                    public 
                    static 
                    final String 
                    ATTR_BINDING = binding;
    
                    public 
                    static 
                    final String 
                    ATTR_XMLNS = xmlns;
    
                    public 
                    static 
                    final String 
                    ATTR_NAMESPACE = namespace;
    
                    public 
                    static 
                    final String 
                    ATTR_LOCATION = location;
    
                    public 
                    static 
                    final String 
                    ATTR_REQUIRED = required;
    
                    public 
                    static 
                    final String[] 
                    DEFINITION_ATTR_NAMES;
    
                    public 
                    static 
                    final String[] 
                    PART_ATTR_NAMES;
    
                    public 
                    static 
                    final String[] 
                    BINDING_ATTR_NAMES;
    
                    public 
                    static 
                    final String[] 
                    BINDING_FAULT_ATTR_NAMES;
    
                    public 
                    static 
                    final String[] 
                    BINDING_INPUT_ATTR_NAMES;
    
                    public 
                    static 
                    final String[] 
                    BINDING_OPERATION_ATTR_NAMES;
    
                    public 
                    static 
                    final String[] 
                    BINDING_OUTPUT_ATTR_NAMES;
    
                    public 
                    static 
                    final String[] 
                    FAULT_ATTR_NAMES;
    
                    public 
                    static 
                    final String[] 
                    IMPORT_ATTR_NAMES;
    
                    public 
                    static 
                    final String[] 
                    INPUT_ATTR_NAMES;
    
                    public 
                    static 
                    final String[] 
                    MESSAGE_ATTR_NAMES;
    
                    public 
                    static 
                    final String[] 
                    OPERATION_ATTR_NAMES;
    
                    public 
                    static 
                    final String[] 
                    OUTPUT_ATTR_NAMES;
    
                    public 
                    static 
                    final String[] 
                    PORT_ATTR_NAMES;
    
                    public 
                    static 
                    final String[] 
                    PORT_TYPE_ATTR_NAMES;
    
                    public 
                    static 
                    final String[] 
                    SERVICE_ATTR_NAMES;
    
                    public 
                    static 
                    final String[] 
                    TYPES_ATTR_NAMES;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ATTR_REQUIRED;
    
                    public 
                    static 
                    final String 
                    XML_DECL_DEFAULT = UTF-8;
    
                    public 
                    static 
                    final String 
                    XML_DECL_START = <?xml version="1.0" encoding=";
    
                    public 
                    static 
                    final String 
                    XML_DECL_END = "?>;
    
                    public 
                    static 
                    final String 
                    FEATURE_VERBOSE = javax.wsdl.verbose;
    
                    public 
                    static 
                    final String 
                    FEATURE_IMPORT_DOCUMENTS = javax.wsdl.importDocuments;
    
                    public 
                    static 
                    final String 
                    NONE = :none;
    
                    public void Constants();
    
                    static void 
                    <clinit>();
}

                

com/ibm/wsdl/DefinitionImpl.class

                    package com.ibm.wsdl;

                    public 
                    synchronized 
                    class DefinitionImpl 
                    extends AbstractWSDLElement 
                    implements javax.wsdl.Definition {
    
                    protected String 
                    documentBaseURI;
    
                    protected javax.xml.namespace.QName 
                    name;
    
                    protected String 
                    targetNamespace;
    
                    protected java.util.Map 
                    namespaces;
    
                    protected java.util.Map 
                    imports;
    
                    protected javax.wsdl.Types 
                    types;
    
                    protected java.util.Map 
                    messages;
    
                    protected java.util.Map 
                    bindings;
    
                    protected java.util.Map 
                    portTypes;
    
                    protected java.util.Map 
                    services;
    
                    protected java.util.List 
                    nativeAttributeNames;
    
                    protected javax.wsdl.extensions.ExtensionRegistry 
                    extReg;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void DefinitionImpl();
    
                    public void 
                    setDocumentBaseURI(String);
    
                    public String 
                    getDocumentBaseURI();
    
                    public void 
                    setQName(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getQName();
    
                    public void 
                    setTargetNamespace(String);
    
                    public String 
                    getTargetNamespace();
    
                    public void 
                    addNamespace(String, String);
    
                    public String 
                    getNamespace(String);
    
                    public String 
                    removeNamespace(String);
    
                    public String 
                    getPrefix(String);
    
                    public java.util.Map 
                    getNamespaces();
    
                    public void 
                    setTypes(javax.wsdl.Types);
    
                    public javax.wsdl.Types 
                    getTypes();
    
                    public void 
                    addImport(javax.wsdl.Import);
    
                    public javax.wsdl.Import 
                    removeImport(javax.wsdl.Import);
    
                    public java.util.List 
                    getImports(String);
    
                    public java.util.Map 
                    getImports();
    
                    public void 
                    addMessage(javax.wsdl.Message);
    
                    public javax.wsdl.Message 
                    getMessage(javax.xml.namespace.QName);
    
                    public javax.wsdl.Message 
                    removeMessage(javax.xml.namespace.QName);
    
                    public java.util.Map 
                    getMessages();
    
                    public void 
                    addBinding(javax.wsdl.Binding);
    
                    public javax.wsdl.Binding 
                    getBinding(javax.xml.namespace.QName);
    
                    public javax.wsdl.Binding 
                    removeBinding(javax.xml.namespace.QName);
    
                    public java.util.Map 
                    getBindings();
    
                    public void 
                    addPortType(javax.wsdl.PortType);
    
                    public javax.wsdl.PortType 
                    getPortType(javax.xml.namespace.QName);
    
                    public javax.wsdl.PortType 
                    removePortType(javax.xml.namespace.QName);
    
                    public java.util.Map 
                    getPortTypes();
    
                    public void 
                    addService(javax.wsdl.Service);
    
                    public javax.wsdl.Service 
                    getService(javax.xml.namespace.QName);
    
                    public javax.wsdl.Service 
                    removeService(javax.xml.namespace.QName);
    
                    public java.util.Map 
                    getServices();
    
                    public javax.wsdl.Binding 
                    createBinding();
    
                    public javax.wsdl.BindingFault 
                    createBindingFault();
    
                    public javax.wsdl.BindingInput 
                    createBindingInput();
    
                    public javax.wsdl.BindingOperation 
                    createBindingOperation();
    
                    public javax.wsdl.BindingOutput 
                    createBindingOutput();
    
                    public javax.wsdl.Fault 
                    createFault();
    
                    public javax.wsdl.Import 
                    createImport();
    
                    public javax.wsdl.Input 
                    createInput();
    
                    public javax.wsdl.Message 
                    createMessage();
    
                    public javax.wsdl.Operation 
                    createOperation();
    
                    public javax.wsdl.Output 
                    createOutput();
    
                    public javax.wsdl.Part 
                    createPart();
    
                    public javax.wsdl.Port 
                    createPort();
    
                    public javax.wsdl.PortType 
                    createPortType();
    
                    public javax.wsdl.Service 
                    createService();
    
                    public javax.wsdl.Types 
                    createTypes();
    
                    public void 
                    setExtensionRegistry(javax.wsdl.extensions.ExtensionRegistry);
    
                    public javax.wsdl.extensions.ExtensionRegistry 
                    getExtensionRegistry();
    
                    private Object 
                    getFromImports(String, javax.xml.namespace.QName);
    
                    public String 
                    toString();
    
                    public java.util.List 
                    getNativeAttributeNames();
    
                    public java.util.Map 
                    getAllBindings();
    
                    public java.util.Map 
                    getAllPortTypes();
    
                    public java.util.Map 
                    getAllServices();
}

                

com/ibm/wsdl/FaultImpl.class

                    package com.ibm.wsdl;

                    public 
                    synchronized 
                    class FaultImpl 
                    extends AbstractWSDLElement 
                    implements javax.wsdl.Fault {
    
                    protected String 
                    name;
    
                    protected javax.wsdl.Message 
                    message;
    
                    protected java.util.List 
                    nativeAttributeNames;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void FaultImpl();
    
                    public void 
                    setName(String);
    
                    public String 
                    getName();
    
                    public void 
                    setMessage(javax.wsdl.Message);
    
                    public javax.wsdl.Message 
                    getMessage();
    
                    public java.util.List 
                    getNativeAttributeNames();
    
                    public String 
                    toString();
}

                

com/ibm/wsdl/ImportImpl.class

                    package com.ibm.wsdl;

                    public 
                    synchronized 
                    class ImportImpl 
                    extends AbstractWSDLElement 
                    implements javax.wsdl.Import {
    
                    protected String 
                    namespaceURI;
    
                    protected String 
                    locationURI;
    
                    protected javax.wsdl.Definition 
                    definition;
    
                    protected java.util.List 
                    nativeAttributeNames;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void ImportImpl();
    
                    public void 
                    setNamespaceURI(String);
    
                    public String 
                    getNamespaceURI();
    
                    public void 
                    setLocationURI(String);
    
                    public String 
                    getLocationURI();
    
                    public void 
                    setDefinition(javax.wsdl.Definition);
    
                    public javax.wsdl.Definition 
                    getDefinition();
    
                    public java.util.List 
                    getNativeAttributeNames();
    
                    public String 
                    toString();
}

                

com/ibm/wsdl/InputImpl.class

                    package com.ibm.wsdl;

                    public 
                    synchronized 
                    class InputImpl 
                    extends AbstractWSDLElement 
                    implements javax.wsdl.Input {
    
                    protected String 
                    name;
    
                    protected javax.wsdl.Message 
                    message;
    
                    protected java.util.List 
                    nativeAttributeNames;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void InputImpl();
    
                    public void 
                    setName(String);
    
                    public String 
                    getName();
    
                    public void 
                    setMessage(javax.wsdl.Message);
    
                    public javax.wsdl.Message 
                    getMessage();
    
                    public java.util.List 
                    getNativeAttributeNames();
    
                    public String 
                    toString();
}

                

com/ibm/wsdl/MessageImpl.class

                    package com.ibm.wsdl;

                    public 
                    synchronized 
                    class MessageImpl 
                    extends AbstractWSDLElement 
                    implements javax.wsdl.Message {
    
                    protected java.util.Map 
                    parts;
    
                    protected java.util.List 
                    additionOrderOfParts;
    
                    protected javax.xml.namespace.QName 
                    name;
    
                    protected java.util.List 
                    nativeAttributeNames;
    
                    protected boolean 
                    isUndefined;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void MessageImpl();
    
                    public void 
                    setQName(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getQName();
    
                    public void 
                    addPart(javax.wsdl.Part);
    
                    public javax.wsdl.Part 
                    getPart(String);
    
                    public javax.wsdl.Part 
                    removePart(String);
    
                    public java.util.Map 
                    getParts();
    
                    public java.util.List 
                    getOrderedParts(java.util.List);
    
                    public void 
                    setUndefined(boolean);
    
                    public boolean 
                    isUndefined();
    
                    public String 
                    toString();
    
                    public java.util.List 
                    getNativeAttributeNames();
}

                

com/ibm/wsdl/OperationImpl.class

                    package com.ibm.wsdl;

                    public 
                    synchronized 
                    class OperationImpl 
                    extends AbstractWSDLElement 
                    implements javax.wsdl.Operation {
    
                    protected String 
                    name;
    
                    protected javax.wsdl.Input 
                    input;
    
                    protected javax.wsdl.Output 
                    output;
    
                    protected java.util.Map 
                    faults;
    
                    protected javax.wsdl.OperationType 
                    style;
    
                    protected java.util.List 
                    parameterOrder;
    
                    protected java.util.List 
                    nativeAttributeNames;
    
                    protected boolean 
                    isUndefined;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void OperationImpl();
    
                    public void 
                    setName(String);
    
                    public String 
                    getName();
    
                    public void 
                    setInput(javax.wsdl.Input);
    
                    public javax.wsdl.Input 
                    getInput();
    
                    public void 
                    setOutput(javax.wsdl.Output);
    
                    public javax.wsdl.Output 
                    getOutput();
    
                    public void 
                    addFault(javax.wsdl.Fault);
    
                    public javax.wsdl.Fault 
                    getFault(String);
    
                    public javax.wsdl.Fault 
                    removeFault(String);
    
                    public java.util.Map 
                    getFaults();
    
                    public void 
                    setStyle(javax.wsdl.OperationType);
    
                    public javax.wsdl.OperationType 
                    getStyle();
    
                    public void 
                    setParameterOrdering(java.util.List);
    
                    public java.util.List 
                    getParameterOrdering();
    
                    public void 
                    setUndefined(boolean);
    
                    public boolean 
                    isUndefined();
    
                    public String 
                    toString();
    
                    public java.util.List 
                    getNativeAttributeNames();
}

                

com/ibm/wsdl/OutputImpl.class

                    package com.ibm.wsdl;

                    public 
                    synchronized 
                    class OutputImpl 
                    extends AbstractWSDLElement 
                    implements javax.wsdl.Output {
    
                    protected String 
                    name;
    
                    protected javax.wsdl.Message 
                    message;
    
                    protected java.util.List 
                    nativeAttributeNames;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void OutputImpl();
    
                    public void 
                    setName(String);
    
                    public String 
                    getName();
    
                    public void 
                    setMessage(javax.wsdl.Message);
    
                    public javax.wsdl.Message 
                    getMessage();
    
                    public java.util.List 
                    getNativeAttributeNames();
    
                    public String 
                    toString();
}

                

com/ibm/wsdl/PartImpl.class

                    package com.ibm.wsdl;

                    public 
                    synchronized 
                    class PartImpl 
                    extends AbstractWSDLElement 
                    implements javax.wsdl.Part {
    
                    protected String 
                    name;
    
                    protected javax.xml.namespace.QName 
                    elementName;
    
                    protected javax.xml.namespace.QName 
                    typeName;
    
                    protected java.util.List 
                    nativeAttributeNames;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void PartImpl();
    
                    public void 
                    setName(String);
    
                    public String 
                    getName();
    
                    public void 
                    setElementName(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getElementName();
    
                    public void 
                    setTypeName(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getTypeName();
    
                    public java.util.List 
                    getNativeAttributeNames();
    
                    public String 
                    toString();
}

                

com/ibm/wsdl/PortImpl.class

                    package com.ibm.wsdl;

                    public 
                    synchronized 
                    class PortImpl 
                    extends AbstractWSDLElement 
                    implements javax.wsdl.Port {
    
                    protected String 
                    name;
    
                    protected javax.wsdl.Binding 
                    binding;
    
                    protected java.util.List 
                    nativeAttributeNames;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void PortImpl();
    
                    public void 
                    setName(String);
    
                    public String 
                    getName();
    
                    public void 
                    setBinding(javax.wsdl.Binding);
    
                    public javax.wsdl.Binding 
                    getBinding();
    
                    public String 
                    toString();
    
                    public java.util.List 
                    getNativeAttributeNames();
}

                

com/ibm/wsdl/PortTypeImpl.class

                    package com.ibm.wsdl;

                    public 
                    synchronized 
                    class PortTypeImpl 
                    extends AbstractWSDLElement 
                    implements javax.wsdl.PortType {
    
                    protected javax.xml.namespace.QName 
                    name;
    
                    protected java.util.List 
                    operations;
    
                    protected java.util.List 
                    nativeAttributeNames;
    
                    protected boolean 
                    isUndefined;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void PortTypeImpl();
    
                    public void 
                    setQName(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getQName();
    
                    public void 
                    addOperation(javax.wsdl.Operation);
    
                    public javax.wsdl.Operation 
                    getOperation(String, String, String);
    
                    public java.util.List 
                    getOperations();
    
                    public javax.wsdl.Operation 
                    removeOperation(String, String, String);
    
                    public void 
                    setUndefined(boolean);
    
                    public boolean 
                    isUndefined();
    
                    public java.util.List 
                    getNativeAttributeNames();
    
                    public String 
                    toString();
}

                

com/ibm/wsdl/ServiceImpl.class

                    package com.ibm.wsdl;

                    public 
                    synchronized 
                    class ServiceImpl 
                    extends AbstractWSDLElement 
                    implements javax.wsdl.Service {
    
                    protected javax.xml.namespace.QName 
                    name;
    
                    protected java.util.Map 
                    ports;
    
                    protected java.util.List 
                    nativeAttributeNames;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void ServiceImpl();
    
                    public void 
                    setQName(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getQName();
    
                    public void 
                    addPort(javax.wsdl.Port);
    
                    public javax.wsdl.Port 
                    getPort(String);
    
                    public javax.wsdl.Port 
                    removePort(String);
    
                    public java.util.Map 
                    getPorts();
    
                    public String 
                    toString();
    
                    public java.util.List 
                    getNativeAttributeNames();
}

                

com/ibm/wsdl/TypesImpl.class

                    package com.ibm.wsdl;

                    public 
                    synchronized 
                    class TypesImpl 
                    extends AbstractWSDLElement 
                    implements javax.wsdl.Types {
    
                    protected java.util.List 
                    nativeAttributeNames;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void TypesImpl();
    
                    public String 
                    toString();
    
                    public java.util.List 
                    getNativeAttributeNames();
}

                

com/ibm/wsdl/extensions/PopulatedExtensionRegistry.class

                    package com.ibm.wsdl.extensions;

                    public 
                    synchronized 
                    class PopulatedExtensionRegistry 
                    extends javax.wsdl.extensions.ExtensionRegistry {
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void PopulatedExtensionRegistry();
}

                

com/ibm/wsdl/extensions/http/HTTPAddressImpl.class

                    package com.ibm.wsdl.extensions.http;

                    public 
                    synchronized 
                    class HTTPAddressImpl 
                    implements javax.wsdl.extensions.http.HTTPAddress {
    
                    protected javax.xml.namespace.QName 
                    elementType;
    
                    protected Boolean 
                    required;
    
                    protected String 
                    locationURI;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void HTTPAddressImpl();
    
                    public void 
                    setElementType(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getElementType();
    
                    public void 
                    setRequired(Boolean);
    
                    public Boolean 
                    getRequired();
    
                    public void 
                    setLocationURI(String);
    
                    public String 
                    getLocationURI();
    
                    public String 
                    toString();
}

                

com/ibm/wsdl/extensions/http/HTTPAddressSerializer.class

                    package com.ibm.wsdl.extensions.http;

                    public 
                    synchronized 
                    class HTTPAddressSerializer 
                    implements javax.wsdl.extensions.ExtensionSerializer, javax.wsdl.extensions.ExtensionDeserializer, java.io.Serializable {
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void HTTPAddressSerializer();
    
                    public void 
                    marshall(Class, javax.xml.namespace.QName, javax.wsdl.extensions.ExtensibilityElement, java.io.PrintWriter, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
    
                    public javax.wsdl.extensions.ExtensibilityElement 
                    unmarshall(Class, javax.xml.namespace.QName, org.w3c.dom.Element, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
}

                

com/ibm/wsdl/extensions/http/HTTPBindingImpl.class

                    package com.ibm.wsdl.extensions.http;

                    public 
                    synchronized 
                    class HTTPBindingImpl 
                    implements javax.wsdl.extensions.http.HTTPBinding {
    
                    protected javax.xml.namespace.QName 
                    elementType;
    
                    protected Boolean 
                    required;
    
                    protected String 
                    verb;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void HTTPBindingImpl();
    
                    public void 
                    setElementType(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getElementType();
    
                    public void 
                    setRequired(Boolean);
    
                    public Boolean 
                    getRequired();
    
                    public void 
                    setVerb(String);
    
                    public String 
                    getVerb();
    
                    public String 
                    toString();
}

                

com/ibm/wsdl/extensions/http/HTTPBindingSerializer.class

                    package com.ibm.wsdl.extensions.http;

                    public 
                    synchronized 
                    class HTTPBindingSerializer 
                    implements javax.wsdl.extensions.ExtensionSerializer, javax.wsdl.extensions.ExtensionDeserializer, java.io.Serializable {
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void HTTPBindingSerializer();
    
                    public void 
                    marshall(Class, javax.xml.namespace.QName, javax.wsdl.extensions.ExtensibilityElement, java.io.PrintWriter, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
    
                    public javax.wsdl.extensions.ExtensibilityElement 
                    unmarshall(Class, javax.xml.namespace.QName, org.w3c.dom.Element, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
}

                

com/ibm/wsdl/extensions/http/HTTPConstants.class

                    package com.ibm.wsdl.extensions.http;

                    public 
                    synchronized 
                    class HTTPConstants {
    
                    public 
                    static 
                    final String 
                    NS_URI_HTTP = http://schemas.xmlsoap.org/wsdl/http/;
    
                    public 
                    static 
                    final String 
                    ELEM_ADDRESS = address;
    
                    public 
                    static 
                    final String 
                    ELEM_URL_ENCODED = urlEncoded;
    
                    public 
                    static 
                    final String 
                    ELEM_URL_REPLACEMENT = urlReplacement;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_HTTP_BINDING;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_HTTP_OPERATION;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_HTTP_ADDRESS;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_HTTP_URL_ENCODED;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_HTTP_URL_REPLACEMENT;
    
                    public 
                    static 
                    final String 
                    ATTR_VERB = verb;
    
                    public void HTTPConstants();
    
                    static void 
                    <clinit>();
}

                

com/ibm/wsdl/extensions/http/HTTPOperationImpl.class

                    package com.ibm.wsdl.extensions.http;

                    public 
                    synchronized 
                    class HTTPOperationImpl 
                    implements javax.wsdl.extensions.http.HTTPOperation {
    
                    protected javax.xml.namespace.QName 
                    elementType;
    
                    protected Boolean 
                    required;
    
                    protected String 
                    locationURI;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void HTTPOperationImpl();
    
                    public void 
                    setElementType(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getElementType();
    
                    public void 
                    setRequired(Boolean);
    
                    public Boolean 
                    getRequired();
    
                    public void 
                    setLocationURI(String);
    
                    public String 
                    getLocationURI();
    
                    public String 
                    toString();
}

                

com/ibm/wsdl/extensions/http/HTTPOperationSerializer.class

                    package com.ibm.wsdl.extensions.http;

                    public 
                    synchronized 
                    class HTTPOperationSerializer 
                    implements javax.wsdl.extensions.ExtensionSerializer, javax.wsdl.extensions.ExtensionDeserializer, java.io.Serializable {
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void HTTPOperationSerializer();
    
                    public void 
                    marshall(Class, javax.xml.namespace.QName, javax.wsdl.extensions.ExtensibilityElement, java.io.PrintWriter, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
    
                    public javax.wsdl.extensions.ExtensibilityElement 
                    unmarshall(Class, javax.xml.namespace.QName, org.w3c.dom.Element, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
}

                

com/ibm/wsdl/extensions/http/HTTPUrlEncodedImpl.class

                    package com.ibm.wsdl.extensions.http;

                    public 
                    synchronized 
                    class HTTPUrlEncodedImpl 
                    implements javax.wsdl.extensions.http.HTTPUrlEncoded {
    
                    protected javax.xml.namespace.QName 
                    elementType;
    
                    protected Boolean 
                    required;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void HTTPUrlEncodedImpl();
    
                    public void 
                    setElementType(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getElementType();
    
                    public void 
                    setRequired(Boolean);
    
                    public Boolean 
                    getRequired();
    
                    public String 
                    toString();
}

                

com/ibm/wsdl/extensions/http/HTTPUrlEncodedSerializer.class

                    package com.ibm.wsdl.extensions.http;

                    public 
                    synchronized 
                    class HTTPUrlEncodedSerializer 
                    implements javax.wsdl.extensions.ExtensionSerializer, javax.wsdl.extensions.ExtensionDeserializer, java.io.Serializable {
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void HTTPUrlEncodedSerializer();
    
                    public void 
                    marshall(Class, javax.xml.namespace.QName, javax.wsdl.extensions.ExtensibilityElement, java.io.PrintWriter, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
    
                    public javax.wsdl.extensions.ExtensibilityElement 
                    unmarshall(Class, javax.xml.namespace.QName, org.w3c.dom.Element, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
}

                

com/ibm/wsdl/extensions/http/HTTPUrlReplacementImpl.class

                    package com.ibm.wsdl.extensions.http;

                    public 
                    synchronized 
                    class HTTPUrlReplacementImpl 
                    implements javax.wsdl.extensions.http.HTTPUrlReplacement {
    
                    protected javax.xml.namespace.QName 
                    elementType;
    
                    protected Boolean 
                    required;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void HTTPUrlReplacementImpl();
    
                    public void 
                    setElementType(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getElementType();
    
                    public void 
                    setRequired(Boolean);
    
                    public Boolean 
                    getRequired();
    
                    public String 
                    toString();
}

                

com/ibm/wsdl/extensions/http/HTTPUrlReplacementSerializer.class

                    package com.ibm.wsdl.extensions.http;

                    public 
                    synchronized 
                    class HTTPUrlReplacementSerializer 
                    implements javax.wsdl.extensions.ExtensionSerializer, javax.wsdl.extensions.ExtensionDeserializer, java.io.Serializable {
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void HTTPUrlReplacementSerializer();
    
                    public void 
                    marshall(Class, javax.xml.namespace.QName, javax.wsdl.extensions.ExtensibilityElement, java.io.PrintWriter, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
    
                    public javax.wsdl.extensions.ExtensibilityElement 
                    unmarshall(Class, javax.xml.namespace.QName, org.w3c.dom.Element, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
}

                

com/ibm/wsdl/extensions/mime/MIMEConstants.class

                    package com.ibm.wsdl.extensions.mime;

                    public 
                    synchronized 
                    class MIMEConstants {
    
                    public 
                    static 
                    final String 
                    NS_URI_MIME = http://schemas.xmlsoap.org/wsdl/mime/;
    
                    public 
                    static 
                    final String 
                    ELEM_CONTENT = content;
    
                    public 
                    static 
                    final String 
                    ELEM_MULTIPART_RELATED = multipartRelated;
    
                    public 
                    static 
                    final String 
                    ELEM_MIME_XML = mimeXml;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_MIME_CONTENT;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_MIME_MULTIPART_RELATED;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_MIME_PART;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_MIME_MIME_XML;
    
                    public 
                    static 
                    final String 
                    ATTR_PART = part;
    
                    public void MIMEConstants();
    
                    static void 
                    <clinit>();
}

                

com/ibm/wsdl/extensions/mime/MIMEContentImpl.class

                    package com.ibm.wsdl.extensions.mime;

                    public 
                    synchronized 
                    class MIMEContentImpl 
                    implements javax.wsdl.extensions.mime.MIMEContent {
    
                    protected javax.xml.namespace.QName 
                    elementType;
    
                    protected Boolean 
                    required;
    
                    protected String 
                    part;
    
                    protected String 
                    type;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void MIMEContentImpl();
    
                    public void 
                    setElementType(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getElementType();
    
                    public void 
                    setRequired(Boolean);
    
                    public Boolean 
                    getRequired();
    
                    public void 
                    setPart(String);
    
                    public String 
                    getPart();
    
                    public void 
                    setType(String);
    
                    public String 
                    getType();
    
                    public String 
                    toString();
}

                

com/ibm/wsdl/extensions/mime/MIMEContentSerializer.class

                    package com.ibm.wsdl.extensions.mime;

                    public 
                    synchronized 
                    class MIMEContentSerializer 
                    implements javax.wsdl.extensions.ExtensionSerializer, javax.wsdl.extensions.ExtensionDeserializer, java.io.Serializable {
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void MIMEContentSerializer();
    
                    public void 
                    marshall(Class, javax.xml.namespace.QName, javax.wsdl.extensions.ExtensibilityElement, java.io.PrintWriter, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
    
                    public javax.wsdl.extensions.ExtensibilityElement 
                    unmarshall(Class, javax.xml.namespace.QName, org.w3c.dom.Element, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
}

                

com/ibm/wsdl/extensions/mime/MIMEMimeXmlImpl.class

                    package com.ibm.wsdl.extensions.mime;

                    public 
                    synchronized 
                    class MIMEMimeXmlImpl 
                    implements javax.wsdl.extensions.mime.MIMEMimeXml {
    
                    protected javax.xml.namespace.QName 
                    elementType;
    
                    protected Boolean 
                    required;
    
                    protected String 
                    part;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void MIMEMimeXmlImpl();
    
                    public void 
                    setElementType(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getElementType();
    
                    public void 
                    setRequired(Boolean);
    
                    public Boolean 
                    getRequired();
    
                    public void 
                    setPart(String);
    
                    public String 
                    getPart();
    
                    public String 
                    toString();
}

                

com/ibm/wsdl/extensions/mime/MIMEMimeXmlSerializer.class

                    package com.ibm.wsdl.extensions.mime;

                    public 
                    synchronized 
                    class MIMEMimeXmlSerializer 
                    implements javax.wsdl.extensions.ExtensionSerializer, javax.wsdl.extensions.ExtensionDeserializer, java.io.Serializable {
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void MIMEMimeXmlSerializer();
    
                    public void 
                    marshall(Class, javax.xml.namespace.QName, javax.wsdl.extensions.ExtensibilityElement, java.io.PrintWriter, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
    
                    public javax.wsdl.extensions.ExtensibilityElement 
                    unmarshall(Class, javax.xml.namespace.QName, org.w3c.dom.Element, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
}

                

com/ibm/wsdl/extensions/mime/MIMEMultipartRelatedImpl.class

                    package com.ibm.wsdl.extensions.mime;

                    public 
                    synchronized 
                    class MIMEMultipartRelatedImpl 
                    implements javax.wsdl.extensions.mime.MIMEMultipartRelated {
    
                    protected javax.xml.namespace.QName 
                    elementType;
    
                    protected Boolean 
                    required;
    
                    protected java.util.List 
                    mimeParts;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void MIMEMultipartRelatedImpl();
    
                    public void 
                    setElementType(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getElementType();
    
                    public void 
                    setRequired(Boolean);
    
                    public Boolean 
                    getRequired();
    
                    public void 
                    addMIMEPart(javax.wsdl.extensions.mime.MIMEPart);
    
                    public javax.wsdl.extensions.mime.MIMEPart 
                    removeMIMEPart(javax.wsdl.extensions.mime.MIMEPart);
    
                    public java.util.List 
                    getMIMEParts();
    
                    public String 
                    toString();
}

                

com/ibm/wsdl/extensions/mime/MIMEMultipartRelatedSerializer.class

                    package com.ibm.wsdl.extensions.mime;

                    public 
                    synchronized 
                    class MIMEMultipartRelatedSerializer 
                    implements javax.wsdl.extensions.ExtensionSerializer, javax.wsdl.extensions.ExtensionDeserializer, java.io.Serializable {
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void MIMEMultipartRelatedSerializer();
    
                    public void 
                    marshall(Class, javax.xml.namespace.QName, javax.wsdl.extensions.ExtensibilityElement, java.io.PrintWriter, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
    
                    private void 
                    printMIMEParts(java.util.List, java.io.PrintWriter, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
    
                    public javax.wsdl.extensions.ExtensibilityElement 
                    unmarshall(Class, javax.xml.namespace.QName, org.w3c.dom.Element, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
    
                    private javax.wsdl.extensions.mime.MIMEPart 
                    parseMIMEPart(Class, javax.xml.namespace.QName, org.w3c.dom.Element, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
}

                

com/ibm/wsdl/extensions/mime/MIMEPartImpl.class

                    package com.ibm.wsdl.extensions.mime;

                    public 
                    synchronized 
                    class MIMEPartImpl 
                    implements javax.wsdl.extensions.mime.MIMEPart {
    
                    protected javax.xml.namespace.QName 
                    elementType;
    
                    protected Boolean 
                    required;
    
                    protected java.util.List 
                    extElements;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void MIMEPartImpl();
    
                    public void 
                    setElementType(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getElementType();
    
                    public void 
                    setRequired(Boolean);
    
                    public Boolean 
                    getRequired();
    
                    public void 
                    addExtensibilityElement(javax.wsdl.extensions.ExtensibilityElement);
    
                    public javax.wsdl.extensions.ExtensibilityElement 
                    removeExtensibilityElement(javax.wsdl.extensions.ExtensibilityElement);
    
                    public java.util.List 
                    getExtensibilityElements();
    
                    public String 
                    toString();
}

                

com/ibm/wsdl/extensions/schema/SchemaConstants.class

                    package com.ibm.wsdl.extensions.schema;

                    public 
                    synchronized 
                    class SchemaConstants {
    
                    public 
                    static 
                    final String 
                    ATTR_ID = id;
    
                    public 
                    static 
                    final String 
                    ATTR_SCHEMA_LOCATION = schemaLocation;
    
                    public 
                    static 
                    final String 
                    ELEM_SCHEMA = schema;
    
                    public 
                    static 
                    final String 
                    ELEM_INCLUDE = include;
    
                    public 
                    static 
                    final String 
                    ELEM_REDEFINE = redefine;
    
                    public 
                    static 
                    final String 
                    NS_URI_XSD_1999 = http://www.w3.org/1999/XMLSchema;
    
                    public 
                    static 
                    final String 
                    NS_URI_XSD_2000 = http://www.w3.org/2000/10/XMLSchema;
    
                    public 
                    static 
                    final String 
                    NS_URI_XSD_2001 = http://www.w3.org/2001/XMLSchema;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_XSD_1999;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_XSD_2000;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_XSD_2001;
    
                    public 
                    static 
                    final java.util.List 
                    XSD_QNAME_LIST;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_IMPORT_XSD_1999;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_IMPORT_XSD_2000;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_IMPORT_XSD_2001;
    
                    public 
                    static 
                    final java.util.List 
                    XSD_IMPORT_QNAME_LIST;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_INCLUDE_XSD_1999;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_INCLUDE_XSD_2000;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_INCLUDE_XSD_2001;
    
                    public 
                    static 
                    final java.util.List 
                    XSD_INCLUDE_QNAME_LIST;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_REDEFINE_XSD_1999;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_REDEFINE_XSD_2000;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_REDEFINE_XSD_2001;
    
                    public 
                    static 
                    final java.util.List 
                    XSD_REDEFINE_QNAME_LIST;
    
                    public void SchemaConstants();
    
                    static void 
                    <clinit>();
}

                

com/ibm/wsdl/extensions/schema/SchemaDeserializer.class

                    package com.ibm.wsdl.extensions.schema;

                    public 
                    synchronized 
                    class SchemaDeserializer 
                    implements javax.wsdl.extensions.ExtensionDeserializer, java.io.Serializable {
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    private 
                    final java.util.Map 
                    allReferencedSchemas;
    
                    private 
                    static ThreadLocal 
                    wsdlLocator;
    
                    public void SchemaDeserializer();
    
                    public 
                    static void 
                    setLocator(javax.wsdl.xml.WSDLLocator);
    
                    public javax.wsdl.extensions.ExtensibilityElement 
                    unmarshall(Class, javax.xml.namespace.QName, org.w3c.dom.Element, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
    
                    static void 
                    <clinit>();
}

                

com/ibm/wsdl/extensions/schema/SchemaImpl.class

                    package com.ibm.wsdl.extensions.schema;

                    public 
                    synchronized 
                    class SchemaImpl 
                    implements javax.wsdl.extensions.schema.Schema {
    
                    protected javax.xml.namespace.QName 
                    elementType;
    
                    protected Boolean 
                    required;
    
                    protected org.w3c.dom.Element 
                    element;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    private java.util.Map 
                    imports;
    
                    private java.util.List 
                    includes;
    
                    private java.util.List 
                    redefines;
    
                    private String 
                    documentBaseURI;
    
                    public void SchemaImpl();
    
                    public java.util.Map 
                    getImports();
    
                    public javax.wsdl.extensions.schema.SchemaImport 
                    createImport();
    
                    public void 
                    addImport(javax.wsdl.extensions.schema.SchemaImport);
    
                    public java.util.List 
                    getIncludes();
    
                    public javax.wsdl.extensions.schema.SchemaReference 
                    createInclude();
    
                    public void 
                    addInclude(javax.wsdl.extensions.schema.SchemaReference);
    
                    public java.util.List 
                    getRedefines();
    
                    public javax.wsdl.extensions.schema.SchemaReference 
                    createRedefine();
    
                    public void 
                    addRedefine(javax.wsdl.extensions.schema.SchemaReference);
    
                    public String 
                    toString();
    
                    public void 
                    setElementType(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getElementType();
    
                    public void 
                    setRequired(Boolean);
    
                    public Boolean 
                    getRequired();
    
                    public void 
                    setElement(org.w3c.dom.Element);
    
                    public org.w3c.dom.Element 
                    getElement();
    
                    public void 
                    setDocumentBaseURI(String);
    
                    public String 
                    getDocumentBaseURI();
}

                

com/ibm/wsdl/extensions/schema/SchemaImportImpl.class

                    package com.ibm.wsdl.extensions.schema;

                    public 
                    synchronized 
                    class SchemaImportImpl 
                    extends SchemaReferenceImpl 
                    implements javax.wsdl.extensions.schema.SchemaImport {
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    private String 
                    namespace;
    
                    public void SchemaImportImpl();
    
                    public String 
                    getNamespaceURI();
    
                    public void 
                    setNamespaceURI(String);
}

                

com/ibm/wsdl/extensions/schema/SchemaReferenceImpl.class

                    package com.ibm.wsdl.extensions.schema;

                    public 
                    synchronized 
                    class SchemaReferenceImpl 
                    implements javax.wsdl.extensions.schema.SchemaReference {
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    private String 
                    id;
    
                    private String 
                    schemaLocation;
    
                    private javax.wsdl.extensions.schema.Schema 
                    referencedSchema;
    
                    public void SchemaReferenceImpl();
    
                    public String 
                    getId();
    
                    public void 
                    setId(String);
    
                    public String 
                    getSchemaLocationURI();
    
                    public void 
                    setSchemaLocationURI(String);
    
                    public javax.wsdl.extensions.schema.Schema 
                    getReferencedSchema();
    
                    public void 
                    setReferencedSchema(javax.wsdl.extensions.schema.Schema);
}

                

com/ibm/wsdl/extensions/schema/SchemaSerializer.class

                    package com.ibm.wsdl.extensions.schema;

                    public 
                    synchronized 
                    class SchemaSerializer 
                    implements javax.wsdl.extensions.ExtensionSerializer, java.io.Serializable {
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void SchemaSerializer();
    
                    public void 
                    marshall(Class, javax.xml.namespace.QName, javax.wsdl.extensions.ExtensibilityElement, java.io.PrintWriter, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
}

                

com/ibm/wsdl/extensions/soap/SOAPAddressImpl.class

                    package com.ibm.wsdl.extensions.soap;

                    public 
                    synchronized 
                    class SOAPAddressImpl 
                    implements javax.wsdl.extensions.soap.SOAPAddress {
    
                    protected javax.xml.namespace.QName 
                    elementType;
    
                    protected Boolean 
                    required;
    
                    protected String 
                    locationURI;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void SOAPAddressImpl();
    
                    public void 
                    setElementType(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getElementType();
    
                    public void 
                    setRequired(Boolean);
    
                    public Boolean 
                    getRequired();
    
                    public void 
                    setLocationURI(String);
    
                    public String 
                    getLocationURI();
    
                    public String 
                    toString();
}

                

com/ibm/wsdl/extensions/soap/SOAPAddressSerializer.class

                    package com.ibm.wsdl.extensions.soap;

                    public 
                    synchronized 
                    class SOAPAddressSerializer 
                    implements javax.wsdl.extensions.ExtensionSerializer, javax.wsdl.extensions.ExtensionDeserializer, java.io.Serializable {
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void SOAPAddressSerializer();
    
                    public void 
                    marshall(Class, javax.xml.namespace.QName, javax.wsdl.extensions.ExtensibilityElement, java.io.PrintWriter, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
    
                    public javax.wsdl.extensions.ExtensibilityElement 
                    unmarshall(Class, javax.xml.namespace.QName, org.w3c.dom.Element, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
}

                

com/ibm/wsdl/extensions/soap/SOAPBindingImpl.class

                    package com.ibm.wsdl.extensions.soap;

                    public 
                    synchronized 
                    class SOAPBindingImpl 
                    implements javax.wsdl.extensions.soap.SOAPBinding {
    
                    protected javax.xml.namespace.QName 
                    elementType;
    
                    protected Boolean 
                    required;
    
                    protected String 
                    style;
    
                    protected String 
                    transportURI;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void SOAPBindingImpl();
    
                    public void 
                    setElementType(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getElementType();
    
                    public void 
                    setRequired(Boolean);
    
                    public Boolean 
                    getRequired();
    
                    public void 
                    setStyle(String);
    
                    public String 
                    getStyle();
    
                    public void 
                    setTransportURI(String);
    
                    public String 
                    getTransportURI();
    
                    public String 
                    toString();
}

                

com/ibm/wsdl/extensions/soap/SOAPBindingSerializer.class

                    package com.ibm.wsdl.extensions.soap;

                    public 
                    synchronized 
                    class SOAPBindingSerializer 
                    implements javax.wsdl.extensions.ExtensionSerializer, javax.wsdl.extensions.ExtensionDeserializer, java.io.Serializable {
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void SOAPBindingSerializer();
    
                    public void 
                    marshall(Class, javax.xml.namespace.QName, javax.wsdl.extensions.ExtensibilityElement, java.io.PrintWriter, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
    
                    public javax.wsdl.extensions.ExtensibilityElement 
                    unmarshall(Class, javax.xml.namespace.QName, org.w3c.dom.Element, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
}

                

com/ibm/wsdl/extensions/soap/SOAPBodyImpl.class

                    package com.ibm.wsdl.extensions.soap;

                    public 
                    synchronized 
                    class SOAPBodyImpl 
                    implements javax.wsdl.extensions.soap.SOAPBody {
    
                    protected javax.xml.namespace.QName 
                    elementType;
    
                    protected Boolean 
                    required;
    
                    protected java.util.List 
                    parts;
    
                    protected String 
                    use;
    
                    protected java.util.List 
                    encodingStyles;
    
                    protected String 
                    namespaceURI;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void SOAPBodyImpl();
    
                    public void 
                    setElementType(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getElementType();
    
                    public void 
                    setRequired(Boolean);
    
                    public Boolean 
                    getRequired();
    
                    public void 
                    setParts(java.util.List);
    
                    public java.util.List 
                    getParts();
    
                    public void 
                    setUse(String);
    
                    public String 
                    getUse();
    
                    public void 
                    setEncodingStyles(java.util.List);
    
                    public java.util.List 
                    getEncodingStyles();
    
                    public void 
                    setNamespaceURI(String);
    
                    public String 
                    getNamespaceURI();
    
                    public String 
                    toString();
}

                

com/ibm/wsdl/extensions/soap/SOAPBodySerializer.class

                    package com.ibm.wsdl.extensions.soap;

                    public 
                    synchronized 
                    class SOAPBodySerializer 
                    implements javax.wsdl.extensions.ExtensionSerializer, javax.wsdl.extensions.ExtensionDeserializer, java.io.Serializable {
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void SOAPBodySerializer();
    
                    public void 
                    marshall(Class, javax.xml.namespace.QName, javax.wsdl.extensions.ExtensibilityElement, java.io.PrintWriter, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
    
                    public javax.wsdl.extensions.ExtensibilityElement 
                    unmarshall(Class, javax.xml.namespace.QName, org.w3c.dom.Element, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
}

                

com/ibm/wsdl/extensions/soap/SOAPConstants.class

                    package com.ibm.wsdl.extensions.soap;

                    public 
                    synchronized 
                    class SOAPConstants {
    
                    public 
                    static 
                    final String 
                    NS_URI_SOAP = http://schemas.xmlsoap.org/wsdl/soap/;
    
                    public 
                    static 
                    final String 
                    ELEM_BODY = body;
    
                    public 
                    static 
                    final String 
                    ELEM_HEADER = header;
    
                    public 
                    static 
                    final String 
                    ELEM_HEADER_FAULT = headerfault;
    
                    public 
                    static 
                    final String 
                    ELEM_ADDRESS = address;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_SOAP_BINDING;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_SOAP_BODY;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_SOAP_HEADER;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_SOAP_HEADER_FAULT;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_SOAP_ADDRESS;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_SOAP_OPERATION;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_SOAP_FAULT;
    
                    public 
                    static 
                    final String 
                    ATTR_TRANSPORT = transport;
    
                    public 
                    static 
                    final String 
                    ATTR_STYLE = style;
    
                    public 
                    static 
                    final String 
                    ATTR_SOAP_ACTION = soapAction;
    
                    public 
                    static 
                    final String 
                    ATTR_PARTS = parts;
    
                    public 
                    static 
                    final String 
                    ATTR_USE = use;
    
                    public 
                    static 
                    final String 
                    ATTR_ENCODING_STYLE = encodingStyle;
    
                    public 
                    static 
                    final String 
                    ATTR_PART = part;
    
                    public void SOAPConstants();
    
                    static void 
                    <clinit>();
}

                

com/ibm/wsdl/extensions/soap/SOAPFaultImpl.class

                    package com.ibm.wsdl.extensions.soap;

                    public 
                    synchronized 
                    class SOAPFaultImpl 
                    implements javax.wsdl.extensions.soap.SOAPFault {
    
                    protected javax.xml.namespace.QName 
                    elementType;
    
                    protected Boolean 
                    required;
    
                    protected String 
                    name;
    
                    protected String 
                    use;
    
                    protected java.util.List 
                    encodingStyles;
    
                    protected String 
                    namespaceURI;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void SOAPFaultImpl();
    
                    public void 
                    setElementType(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getElementType();
    
                    public void 
                    setRequired(Boolean);
    
                    public Boolean 
                    getRequired();
    
                    public void 
                    setName(String);
    
                    public String 
                    getName();
    
                    public void 
                    setUse(String);
    
                    public String 
                    getUse();
    
                    public void 
                    setEncodingStyles(java.util.List);
    
                    public java.util.List 
                    getEncodingStyles();
    
                    public void 
                    setNamespaceURI(String);
    
                    public String 
                    getNamespaceURI();
    
                    public String 
                    toString();
}

                

com/ibm/wsdl/extensions/soap/SOAPFaultSerializer.class

                    package com.ibm.wsdl.extensions.soap;

                    public 
                    synchronized 
                    class SOAPFaultSerializer 
                    implements javax.wsdl.extensions.ExtensionSerializer, javax.wsdl.extensions.ExtensionDeserializer, java.io.Serializable {
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void SOAPFaultSerializer();
    
                    public void 
                    marshall(Class, javax.xml.namespace.QName, javax.wsdl.extensions.ExtensibilityElement, java.io.PrintWriter, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
    
                    public javax.wsdl.extensions.ExtensibilityElement 
                    unmarshall(Class, javax.xml.namespace.QName, org.w3c.dom.Element, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
}

                

com/ibm/wsdl/extensions/soap/SOAPHeaderFaultImpl.class

                    package com.ibm.wsdl.extensions.soap;

                    public 
                    synchronized 
                    class SOAPHeaderFaultImpl 
                    implements javax.wsdl.extensions.soap.SOAPHeaderFault {
    
                    protected javax.xml.namespace.QName 
                    elementType;
    
                    protected Boolean 
                    required;
    
                    protected javax.xml.namespace.QName 
                    message;
    
                    protected String 
                    part;
    
                    protected String 
                    use;
    
                    protected java.util.List 
                    encodingStyles;
    
                    protected String 
                    namespaceURI;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void SOAPHeaderFaultImpl();
    
                    public void 
                    setElementType(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getElementType();
    
                    public void 
                    setRequired(Boolean);
    
                    public Boolean 
                    getRequired();
    
                    public void 
                    setMessage(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getMessage();
    
                    public void 
                    setPart(String);
    
                    public String 
                    getPart();
    
                    public void 
                    setUse(String);
    
                    public String 
                    getUse();
    
                    public void 
                    setEncodingStyles(java.util.List);
    
                    public java.util.List 
                    getEncodingStyles();
    
                    public void 
                    setNamespaceURI(String);
    
                    public String 
                    getNamespaceURI();
    
                    public String 
                    toString();
}

                

com/ibm/wsdl/extensions/soap/SOAPHeaderImpl.class

                    package com.ibm.wsdl.extensions.soap;

                    public 
                    synchronized 
                    class SOAPHeaderImpl 
                    implements javax.wsdl.extensions.soap.SOAPHeader {
    
                    protected javax.xml.namespace.QName 
                    elementType;
    
                    protected Boolean 
                    required;
    
                    protected javax.xml.namespace.QName 
                    message;
    
                    protected String 
                    part;
    
                    protected String 
                    use;
    
                    protected java.util.List 
                    encodingStyles;
    
                    protected String 
                    namespaceURI;
    
                    protected java.util.List 
                    soapHeaderFaults;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void SOAPHeaderImpl();
    
                    public void 
                    setElementType(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getElementType();
    
                    public void 
                    setRequired(Boolean);
    
                    public Boolean 
                    getRequired();
    
                    public void 
                    setMessage(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getMessage();
    
                    public void 
                    setPart(String);
    
                    public String 
                    getPart();
    
                    public void 
                    setUse(String);
    
                    public String 
                    getUse();
    
                    public void 
                    setEncodingStyles(java.util.List);
    
                    public java.util.List 
                    getEncodingStyles();
    
                    public void 
                    setNamespaceURI(String);
    
                    public String 
                    getNamespaceURI();
    
                    public void 
                    addSOAPHeaderFault(javax.wsdl.extensions.soap.SOAPHeaderFault);
    
                    public javax.wsdl.extensions.soap.SOAPHeaderFault 
                    removeSOAPHeaderFault(javax.wsdl.extensions.soap.SOAPHeaderFault);
    
                    public java.util.List 
                    getSOAPHeaderFaults();
    
                    public String 
                    toString();
}

                

com/ibm/wsdl/extensions/soap/SOAPHeaderSerializer.class

                    package com.ibm.wsdl.extensions.soap;

                    public 
                    synchronized 
                    class SOAPHeaderSerializer 
                    implements javax.wsdl.extensions.ExtensionSerializer, javax.wsdl.extensions.ExtensionDeserializer, java.io.Serializable {
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void SOAPHeaderSerializer();
    
                    public void 
                    marshall(Class, javax.xml.namespace.QName, javax.wsdl.extensions.ExtensibilityElement, java.io.PrintWriter, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
    
                    private 
                    static void 
                    printSoapHeaderFaults(java.util.List, javax.wsdl.Definition, java.io.PrintWriter) 
                    throws javax.wsdl.WSDLException;
    
                    public javax.wsdl.extensions.ExtensibilityElement 
                    unmarshall(Class, javax.xml.namespace.QName, org.w3c.dom.Element, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
    
                    private 
                    static javax.wsdl.extensions.soap.SOAPHeaderFault 
                    parseSoapHeaderFault(Class, javax.xml.namespace.QName, org.w3c.dom.Element, javax.wsdl.extensions.ExtensionRegistry, javax.wsdl.Definition) 
                    throws javax.wsdl.WSDLException;
}

                

com/ibm/wsdl/extensions/soap/SOAPOperationImpl.class

                    package com.ibm.wsdl.extensions.soap;

                    public 
                    synchronized 
                    class SOAPOperationImpl 
                    implements javax.wsdl.extensions.soap.SOAPOperation {
    
                    protected javax.xml.namespace.QName 
                    elementType;
    
                    protected Boolean 
                    required;
    
                    protected String 
                    soapActionURI;
    
                    protected String 
                    style;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void SOAPOperationImpl();
    
                    public void 
                    setElementType(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getElementType();
    
                    public void 
                    setRequired(Boolean);
    
                    public Boolean 
                    getRequired();
    
                    public void 
                    setSoapActionURI(String);
    
                    public String 
                    getSoapActionURI();
    
                    public void 
                    setStyle(String);
    
                    public String 
                    getStyle();
    
                    public String 
                    toString();
}

                

com/ibm/wsdl/extensions/soap/SOAPOperationSerializer.class

                    package com.ibm.wsdl.extensions.soap;

                    public 
                    synchronized 
                    class SOAPOperationSerializer 
                    implements javax.wsdl.extensions.ExtensionSerializer, javax.wsdl.extensions.ExtensionDeserializer, java.io.Serializable {
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void SOAPOperationSerializer();
    
                    public void 
                    marshall(Class, javax.xml.namespace.QName, javax.wsdl.extensions.ExtensibilityElement, java.io.PrintWriter, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
    
                    public javax.wsdl.extensions.ExtensibilityElement 
                    unmarshall(Class, javax.xml.namespace.QName, org.w3c.dom.Element, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
}

                

com/ibm/wsdl/extensions/soap12/SOAP12AddressImpl.class

                    package com.ibm.wsdl.extensions.soap12;

                    public 
                    synchronized 
                    class SOAP12AddressImpl 
                    implements javax.wsdl.extensions.soap12.SOAP12Address {
    
                    protected javax.xml.namespace.QName 
                    elementType;
    
                    protected Boolean 
                    required;
    
                    protected String 
                    locationURI;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void SOAP12AddressImpl();
    
                    public void 
                    setElementType(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getElementType();
    
                    public void 
                    setRequired(Boolean);
    
                    public Boolean 
                    getRequired();
    
                    public void 
                    setLocationURI(String);
    
                    public String 
                    getLocationURI();
    
                    public String 
                    toString();
}

                

com/ibm/wsdl/extensions/soap12/SOAP12AddressSerializer.class

                    package com.ibm.wsdl.extensions.soap12;

                    public 
                    synchronized 
                    class SOAP12AddressSerializer 
                    implements javax.wsdl.extensions.ExtensionSerializer, javax.wsdl.extensions.ExtensionDeserializer, java.io.Serializable {
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void SOAP12AddressSerializer();
    
                    public void 
                    marshall(Class, javax.xml.namespace.QName, javax.wsdl.extensions.ExtensibilityElement, java.io.PrintWriter, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
    
                    public javax.wsdl.extensions.ExtensibilityElement 
                    unmarshall(Class, javax.xml.namespace.QName, org.w3c.dom.Element, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
}

                

com/ibm/wsdl/extensions/soap12/SOAP12BindingImpl.class

                    package com.ibm.wsdl.extensions.soap12;

                    public 
                    synchronized 
                    class SOAP12BindingImpl 
                    implements javax.wsdl.extensions.soap12.SOAP12Binding {
    
                    protected javax.xml.namespace.QName 
                    elementType;
    
                    protected Boolean 
                    required;
    
                    protected String 
                    style;
    
                    protected String 
                    transportURI;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void SOAP12BindingImpl();
    
                    public void 
                    setElementType(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getElementType();
    
                    public void 
                    setRequired(Boolean);
    
                    public Boolean 
                    getRequired();
    
                    public void 
                    setStyle(String);
    
                    public String 
                    getStyle();
    
                    public void 
                    setTransportURI(String);
    
                    public String 
                    getTransportURI();
    
                    public String 
                    toString();
}

                

com/ibm/wsdl/extensions/soap12/SOAP12BindingSerializer.class

                    package com.ibm.wsdl.extensions.soap12;

                    public 
                    synchronized 
                    class SOAP12BindingSerializer 
                    implements javax.wsdl.extensions.ExtensionSerializer, javax.wsdl.extensions.ExtensionDeserializer, java.io.Serializable {
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void SOAP12BindingSerializer();
    
                    public void 
                    marshall(Class, javax.xml.namespace.QName, javax.wsdl.extensions.ExtensibilityElement, java.io.PrintWriter, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
    
                    public javax.wsdl.extensions.ExtensibilityElement 
                    unmarshall(Class, javax.xml.namespace.QName, org.w3c.dom.Element, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
}

                

com/ibm/wsdl/extensions/soap12/SOAP12BodyImpl.class

                    package com.ibm.wsdl.extensions.soap12;

                    public 
                    synchronized 
                    class SOAP12BodyImpl 
                    implements javax.wsdl.extensions.soap12.SOAP12Body {
    
                    protected javax.xml.namespace.QName 
                    elementType;
    
                    protected Boolean 
                    required;
    
                    protected java.util.List 
                    parts;
    
                    protected String 
                    use;
    
                    protected String 
                    encodingStyle;
    
                    protected String 
                    namespaceURI;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void SOAP12BodyImpl();
    
                    public void 
                    setElementType(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getElementType();
    
                    public void 
                    setRequired(Boolean);
    
                    public Boolean 
                    getRequired();
    
                    public void 
                    setParts(java.util.List);
    
                    public java.util.List 
                    getParts();
    
                    public void 
                    setUse(String);
    
                    public String 
                    getUse();
    
                    public void 
                    setEncodingStyle(String);
    
                    public String 
                    getEncodingStyle();
    
                    public void 
                    setNamespaceURI(String);
    
                    public String 
                    getNamespaceURI();
    
                    public String 
                    toString();
}

                

com/ibm/wsdl/extensions/soap12/SOAP12BodySerializer.class

                    package com.ibm.wsdl.extensions.soap12;

                    public 
                    synchronized 
                    class SOAP12BodySerializer 
                    implements javax.wsdl.extensions.ExtensionSerializer, javax.wsdl.extensions.ExtensionDeserializer, java.io.Serializable {
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void SOAP12BodySerializer();
    
                    public void 
                    marshall(Class, javax.xml.namespace.QName, javax.wsdl.extensions.ExtensibilityElement, java.io.PrintWriter, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
    
                    public javax.wsdl.extensions.ExtensibilityElement 
                    unmarshall(Class, javax.xml.namespace.QName, org.w3c.dom.Element, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
}

                

com/ibm/wsdl/extensions/soap12/SOAP12Constants.class

                    package com.ibm.wsdl.extensions.soap12;

                    public 
                    synchronized 
                    class SOAP12Constants {
    
                    public 
                    static 
                    final String 
                    NS_URI_SOAP12 = http://schemas.xmlsoap.org/wsdl/soap12/;
    
                    public 
                    static 
                    final String 
                    ELEM_BODY = body;
    
                    public 
                    static 
                    final String 
                    ELEM_HEADER = header;
    
                    public 
                    static 
                    final String 
                    ELEM_HEADER_FAULT = headerfault;
    
                    public 
                    static 
                    final String 
                    ELEM_ADDRESS = address;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_SOAP_BINDING;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_SOAP_BODY;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_SOAP_HEADER;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_SOAP_HEADER_FAULT;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_SOAP_ADDRESS;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_SOAP_OPERATION;
    
                    public 
                    static 
                    final javax.xml.namespace.QName 
                    Q_ELEM_SOAP_FAULT;
    
                    public 
                    static 
                    final String 
                    ATTR_TRANSPORT = transport;
    
                    public 
                    static 
                    final String 
                    ATTR_STYLE = style;
    
                    public 
                    static 
                    final String 
                    ATTR_SOAP_ACTION = soapAction;
    
                    public 
                    static 
                    final String 
                    ATTR_SOAP_ACTION_REQUIRED = soapActionRequired;
    
                    public 
                    static 
                    final String 
                    ATTR_PARTS = parts;
    
                    public 
                    static 
                    final String 
                    ATTR_USE = use;
    
                    public 
                    static 
                    final String 
                    ATTR_ENCODING_STYLE = encodingStyle;
    
                    public 
                    static 
                    final String 
                    ATTR_PART = part;
    
                    public void SOAP12Constants();
    
                    static void 
                    <clinit>();
}

                

com/ibm/wsdl/extensions/soap12/SOAP12FaultImpl.class

                    package com.ibm.wsdl.extensions.soap12;

                    public 
                    synchronized 
                    class SOAP12FaultImpl 
                    implements javax.wsdl.extensions.soap12.SOAP12Fault {
    
                    protected javax.xml.namespace.QName 
                    elementType;
    
                    protected Boolean 
                    required;
    
                    protected String 
                    name;
    
                    protected String 
                    use;
    
                    protected String 
                    encodingStyle;
    
                    protected String 
                    namespaceURI;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void SOAP12FaultImpl();
    
                    public void 
                    setElementType(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getElementType();
    
                    public void 
                    setRequired(Boolean);
    
                    public Boolean 
                    getRequired();
    
                    public void 
                    setName(String);
    
                    public String 
                    getName();
    
                    public void 
                    setUse(String);
    
                    public String 
                    getUse();
    
                    public void 
                    setEncodingStyle(String);
    
                    public String 
                    getEncodingStyle();
    
                    public void 
                    setNamespaceURI(String);
    
                    public String 
                    getNamespaceURI();
    
                    public String 
                    toString();
}

                

com/ibm/wsdl/extensions/soap12/SOAP12FaultSerializer.class

                    package com.ibm.wsdl.extensions.soap12;

                    public 
                    synchronized 
                    class SOAP12FaultSerializer 
                    implements javax.wsdl.extensions.ExtensionSerializer, javax.wsdl.extensions.ExtensionDeserializer, java.io.Serializable {
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void SOAP12FaultSerializer();
    
                    public void 
                    marshall(Class, javax.xml.namespace.QName, javax.wsdl.extensions.ExtensibilityElement, java.io.PrintWriter, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
    
                    public javax.wsdl.extensions.ExtensibilityElement 
                    unmarshall(Class, javax.xml.namespace.QName, org.w3c.dom.Element, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
}

                

com/ibm/wsdl/extensions/soap12/SOAP12HeaderFaultImpl.class

                    package com.ibm.wsdl.extensions.soap12;

                    public 
                    synchronized 
                    class SOAP12HeaderFaultImpl 
                    implements javax.wsdl.extensions.soap12.SOAP12HeaderFault {
    
                    protected javax.xml.namespace.QName 
                    elementType;
    
                    protected Boolean 
                    required;
    
                    protected javax.xml.namespace.QName 
                    message;
    
                    protected String 
                    part;
    
                    protected String 
                    use;
    
                    protected String 
                    encodingStyle;
    
                    protected String 
                    namespaceURI;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void SOAP12HeaderFaultImpl();
    
                    public void 
                    setElementType(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getElementType();
    
                    public void 
                    setRequired(Boolean);
    
                    public Boolean 
                    getRequired();
    
                    public void 
                    setMessage(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getMessage();
    
                    public void 
                    setPart(String);
    
                    public String 
                    getPart();
    
                    public void 
                    setUse(String);
    
                    public String 
                    getUse();
    
                    public void 
                    setEncodingStyle(String);
    
                    public String 
                    getEncodingStyle();
    
                    public void 
                    setNamespaceURI(String);
    
                    public String 
                    getNamespaceURI();
    
                    public String 
                    toString();
}

                

com/ibm/wsdl/extensions/soap12/SOAP12HeaderImpl.class

                    package com.ibm.wsdl.extensions.soap12;

                    public 
                    synchronized 
                    class SOAP12HeaderImpl 
                    implements javax.wsdl.extensions.soap12.SOAP12Header {
    
                    protected javax.xml.namespace.QName 
                    elementType;
    
                    protected Boolean 
                    required;
    
                    protected javax.xml.namespace.QName 
                    message;
    
                    protected String 
                    part;
    
                    protected String 
                    use;
    
                    protected String 
                    encodingStyle;
    
                    protected String 
                    namespaceURI;
    
                    protected java.util.List 
                    soapHeaderFaults;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void SOAP12HeaderImpl();
    
                    public void 
                    setElementType(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getElementType();
    
                    public void 
                    setRequired(Boolean);
    
                    public Boolean 
                    getRequired();
    
                    public void 
                    setMessage(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getMessage();
    
                    public void 
                    setPart(String);
    
                    public String 
                    getPart();
    
                    public void 
                    setUse(String);
    
                    public String 
                    getUse();
    
                    public void 
                    setEncodingStyle(String);
    
                    public String 
                    getEncodingStyle();
    
                    public void 
                    setNamespaceURI(String);
    
                    public String 
                    getNamespaceURI();
    
                    public void 
                    addSOAP12HeaderFault(javax.wsdl.extensions.soap12.SOAP12HeaderFault);
    
                    public javax.wsdl.extensions.soap12.SOAP12HeaderFault 
                    removeSOAP12HeaderFault(javax.wsdl.extensions.soap12.SOAP12HeaderFault);
    
                    public java.util.List 
                    getSOAP12HeaderFaults();
    
                    public String 
                    toString();
}

                

com/ibm/wsdl/extensions/soap12/SOAP12HeaderSerializer.class

                    package com.ibm.wsdl.extensions.soap12;

                    public 
                    synchronized 
                    class SOAP12HeaderSerializer 
                    implements javax.wsdl.extensions.ExtensionSerializer, javax.wsdl.extensions.ExtensionDeserializer, java.io.Serializable {
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void SOAP12HeaderSerializer();
    
                    public void 
                    marshall(Class, javax.xml.namespace.QName, javax.wsdl.extensions.ExtensibilityElement, java.io.PrintWriter, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
    
                    private 
                    static void 
                    printSoapHeaderFaults(java.util.List, javax.wsdl.Definition, java.io.PrintWriter) 
                    throws javax.wsdl.WSDLException;
    
                    public javax.wsdl.extensions.ExtensibilityElement 
                    unmarshall(Class, javax.xml.namespace.QName, org.w3c.dom.Element, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
    
                    private 
                    static javax.wsdl.extensions.soap12.SOAP12HeaderFault 
                    parseSoapHeaderFault(Class, javax.xml.namespace.QName, org.w3c.dom.Element, javax.wsdl.extensions.ExtensionRegistry, javax.wsdl.Definition) 
                    throws javax.wsdl.WSDLException;
}

                

com/ibm/wsdl/extensions/soap12/SOAP12OperationImpl.class

                    package com.ibm.wsdl.extensions.soap12;

                    public 
                    synchronized 
                    class SOAP12OperationImpl 
                    implements javax.wsdl.extensions.soap12.SOAP12Operation {
    
                    protected javax.xml.namespace.QName 
                    elementType;
    
                    protected Boolean 
                    required;
    
                    protected String 
                    soapActionURI;
    
                    protected Boolean 
                    soapActionRequired;
    
                    protected String 
                    style;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void SOAP12OperationImpl();
    
                    public void 
                    setElementType(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getElementType();
    
                    public void 
                    setRequired(Boolean);
    
                    public Boolean 
                    getRequired();
    
                    public void 
                    setSoapActionURI(String);
    
                    public String 
                    getSoapActionURI();
    
                    public void 
                    setSoapActionRequired(Boolean);
    
                    public Boolean 
                    getSoapActionRequired();
    
                    public void 
                    setStyle(String);
    
                    public String 
                    getStyle();
    
                    public String 
                    toString();
}

                

com/ibm/wsdl/extensions/soap12/SOAP12OperationSerializer.class

                    package com.ibm.wsdl.extensions.soap12;

                    public 
                    synchronized 
                    class SOAP12OperationSerializer 
                    implements javax.wsdl.extensions.ExtensionSerializer, javax.wsdl.extensions.ExtensionDeserializer, java.io.Serializable {
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void SOAP12OperationSerializer();
    
                    public void 
                    marshall(Class, javax.xml.namespace.QName, javax.wsdl.extensions.ExtensibilityElement, java.io.PrintWriter, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
    
                    public javax.wsdl.extensions.ExtensibilityElement 
                    unmarshall(Class, javax.xml.namespace.QName, org.w3c.dom.Element, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
}

                

com/ibm/wsdl/factory/WSDLFactoryImpl.class

                    package com.ibm.wsdl.factory;

                    public 
                    synchronized 
                    class WSDLFactoryImpl 
                    extends javax.wsdl.factory.WSDLFactory {
    
                    public void WSDLFactoryImpl();
    
                    public javax.wsdl.Definition 
                    newDefinition();
    
                    public javax.wsdl.xml.WSDLReader 
                    newWSDLReader();
    
                    public javax.wsdl.xml.WSDLWriter 
                    newWSDLWriter();
    
                    public javax.wsdl.extensions.ExtensionRegistry 
                    newPopulatedExtensionRegistry();
}

                

com/ibm/wsdl/util/IOUtils.class

                    package com.ibm.wsdl.util;

                    public 
                    synchronized 
                    class IOUtils {
    
                    static boolean 
                    debug;
    
                    public void IOUtils();
    
                    public 
                    static String 
                    getStringFromReader(java.io.Reader) 
                    throws java.io.IOException;
    
                    static void 
                    <clinit>();
}

                

com/ibm/wsdl/util/ObjectRegistry.class

                    package com.ibm.wsdl.util;

                    public 
                    synchronized 
                    class ObjectRegistry {
    java.util.Hashtable 
                    reg;
    ObjectRegistry 
                    parent;
    
                    public void ObjectRegistry();
    
                    public void ObjectRegistry(java.util.Map);
    
                    public void ObjectRegistry(ObjectRegistry);
    
                    public void 
                    register(String, Object);
    
                    public void 
                    unregister(String);
    
                    public Object 
                    lookup(String) 
                    throws IllegalArgumentException;
}

                

com/ibm/wsdl/util/StringUtils.class

                    package com.ibm.wsdl.util;

                    public 
                    synchronized 
                    class StringUtils {
    
                    public 
                    static 
                    final String 
                    lineSeparator;
    
                    public 
                    static 
                    final String 
                    lineSeparatorStr;
    
                    public void StringUtils();
    
                    public 
                    static String 
                    cleanString(String);
    
                    public 
                    static String 
                    getClassName(Class);
    
                    private 
                    static String 
                    parseDescriptor(String);
    
                    public 
                    static java.net.URL 
                    getURL(java.net.URL, String) 
                    throws java.net.MalformedURLException;
    
                    public 
                    static java.io.InputStream 
                    getContentAsInputStream(java.net.URL) 
                    throws SecurityException, IllegalArgumentException, java.io.IOException;
    
                    public 
                    static java.util.List 
                    parseNMTokens(String);
    
                    public 
                    static String 
                    getNMTokens(java.util.List);
    
                    static void 
                    <clinit>();
}

                

com/ibm/wsdl/util/xml/DOM2Writer.class

                    package com.ibm.wsdl.util.xml;

                    public 
                    synchronized 
                    class DOM2Writer {
    
                    private 
                    static String 
                    NS_URI_XMLNS;
    
                    private 
                    static String 
                    NS_URI_XML;
    
                    private 
                    static java.util.Map 
                    xmlEncodingMap;
    
                    public void DOM2Writer();
    
                    public 
                    static String 
                    nodeToString(org.w3c.dom.Node);
    
                    public 
                    static String 
                    nodeToString(org.w3c.dom.Node, java.util.Map);
    
                    public 
                    static void 
                    serializeElementAsDocument(org.w3c.dom.Element, java.io.Writer);
    
                    public 
                    static void 
                    serializeElementAsDocument(org.w3c.dom.Element, java.util.Map, java.io.Writer);
    
                    public 
                    static void 
                    serializeAsXML(org.w3c.dom.Node, java.io.Writer);
    
                    public 
                    static void 
                    serializeAsXML(org.w3c.dom.Node, java.util.Map, java.io.Writer);
    
                    private 
                    static void 
                    print(org.w3c.dom.Node, com.ibm.wsdl.util.ObjectRegistry, java.io.PrintWriter, String);
    
                    public 
                    static String 
                    java2XMLEncoding(String);
    
                    private 
                    static void 
                    printNamespaceDecl(org.w3c.dom.Node, com.ibm.wsdl.util.ObjectRegistry, java.io.PrintWriter);
    
                    private 
                    static void 
                    printNamespaceDecl(org.w3c.dom.Element, org.w3c.dom.Node, com.ibm.wsdl.util.ObjectRegistry, java.io.PrintWriter);
    
                    private 
                    static String 
                    normalize(String);
    
                    static void 
                    <clinit>();
}

                

com/ibm/wsdl/util/xml/DOMUtils.class

                    package com.ibm.wsdl.util.xml;

                    public 
                    synchronized 
                    class DOMUtils {
    
                    private 
                    static String 
                    NS_URI_XMLNS;
    
                    private 
                    static 
                    final String 
                    ATTR_XMLNS = xmlns;
    
                    public void DOMUtils();
    
                    public 
                    static java.util.List 
                    getAttributes(org.w3c.dom.Element);
    
                    public 
                    static String 
                    getAttribute(org.w3c.dom.Element, String);
    
                    public 
                    static String 
                    getAttribute(org.w3c.dom.Element, String, java.util.List);
    
                    public 
                    static String 
                    getAttributeNS(org.w3c.dom.Element, String, String);
    
                    public 
                    static String 
                    getChildCharacterData(org.w3c.dom.Element);
    
                    public 
                    static org.w3c.dom.Element 
                    getFirstChildElement(org.w3c.dom.Element);
    
                    public 
                    static org.w3c.dom.Element 
                    getNextSiblingElement(org.w3c.dom.Element);
    
                    public 
                    static org.w3c.dom.Element 
                    findChildElementWithAttribute(org.w3c.dom.Element, String, String);
    
                    public 
                    static int 
                    countKids(org.w3c.dom.Element, short);
    
                    public 
                    static String 
                    getNamespaceURIFromPrefix(org.w3c.dom.Node, String);
    
                    public 
                    static javax.xml.namespace.QName 
                    getQName(String, org.w3c.dom.Element, javax.wsdl.Definition) 
                    throws javax.wsdl.WSDLException;
    
                    public 
                    static void 
                    registerUniquePrefix(String, String, javax.wsdl.Definition);
    
                    public 
                    static javax.xml.namespace.QName 
                    getQualifiedAttributeValue(org.w3c.dom.Element, String, String, boolean, javax.wsdl.Definition) 
                    throws javax.wsdl.WSDLException;
    
                    public 
                    static javax.xml.namespace.QName 
                    getQualifiedAttributeValue(org.w3c.dom.Element, String, String, boolean, javax.wsdl.Definition, java.util.List) 
                    throws javax.wsdl.WSDLException;
    
                    public 
                    static void 
                    throwWSDLException(org.w3c.dom.Element) 
                    throws javax.wsdl.WSDLException;
    
                    public 
                    static void 
                    printAttribute(String, String, java.io.PrintWriter);
    
                    public 
                    static void 
                    printQualifiedAttribute(javax.xml.namespace.QName, String, javax.wsdl.Definition, java.io.PrintWriter) 
                    throws javax.wsdl.WSDLException;
    
                    public 
                    static void 
                    printQualifiedAttribute(javax.xml.namespace.QName, javax.xml.namespace.QName, javax.wsdl.Definition, java.io.PrintWriter) 
                    throws javax.wsdl.WSDLException;
    
                    public 
                    static void 
                    printQualifiedAttribute(String, javax.xml.namespace.QName, javax.wsdl.Definition, java.io.PrintWriter) 
                    throws javax.wsdl.WSDLException;
    
                    public 
                    static String 
                    getQualifiedValue(String, String, javax.wsdl.Definition) 
                    throws javax.wsdl.WSDLException;
    
                    public 
                    static String 
                    getPrefix(String, javax.wsdl.Definition) 
                    throws javax.wsdl.WSDLException;
    
                    public 
                    static String 
                    cleanString(String);
    
                    static void 
                    <clinit>();
}

                

com/ibm/wsdl/util/xml/QNameUtils.class

                    package com.ibm.wsdl.util.xml;

                    public 
                    synchronized 
                    class QNameUtils {
    
                    public void QNameUtils();
    
                    public 
                    static boolean 
                    matches(javax.xml.namespace.QName, org.w3c.dom.Node);
    
                    public 
                    static javax.xml.namespace.QName 
                    newQName(org.w3c.dom.Node);
}

                

com/ibm/wsdl/util/xml/XPathUtils.class

                    package com.ibm.wsdl.util.xml;

                    public 
                    synchronized 
                    class XPathUtils {
    
                    public void XPathUtils();
    
                    private 
                    static org.w3c.dom.Node 
                    getPreviousTypedNode(org.w3c.dom.Node, short);
    
                    private 
                    static org.w3c.dom.Node 
                    getNextTypedNode(org.w3c.dom.Node, short);
    
                    private 
                    static String 
                    getValue(org.w3c.dom.Node, short);
    
                    private 
                    static short 
                    getNodeType(org.w3c.dom.Node);
    
                    private 
                    static String 
                    getXPathFromVector(java.util.Vector);
    
                    private 
                    static java.util.Vector 
                    getVectorPathFromNode(org.w3c.dom.Node);
    
                    public 
                    static String 
                    getXPathExprFromNode(org.w3c.dom.Node) 
                    throws IllegalArgumentException;
}

                

com/ibm/wsdl/xml/WSDLReaderImpl.class

                    package com.ibm.wsdl.xml;

                    public 
                    synchronized 
                    class WSDLReaderImpl 
                    implements javax.wsdl.xml.WSDLReader {
    
                    private 
                    static 
                    final java.util.List 
                    STYLE_ONE_WAY;
    
                    private 
                    static 
                    final java.util.List 
                    STYLE_REQUEST_RESPONSE;
    
                    private 
                    static 
                    final java.util.List 
                    STYLE_SOLICIT_RESPONSE;
    
                    private 
                    static 
                    final java.util.List 
                    STYLE_NOTIFICATION;
    
                    protected boolean 
                    verbose;
    
                    protected boolean 
                    importDocuments;
    
                    protected javax.wsdl.extensions.ExtensionRegistry 
                    extReg;
    
                    protected String 
                    factoryImplName;
    
                    protected javax.wsdl.xml.WSDLLocator 
                    loc;
    
                    protected javax.wsdl.factory.WSDLFactory 
                    factory;
    
                    protected java.util.Map 
                    allSchemas;
    
                    public void WSDLReaderImpl();
    
                    public void 
                    setFeature(String, boolean) 
                    throws IllegalArgumentException;
    
                    public boolean 
                    getFeature(String) 
                    throws IllegalArgumentException;
    
                    public void 
                    setExtensionRegistry(javax.wsdl.extensions.ExtensionRegistry);
    
                    public javax.wsdl.extensions.ExtensionRegistry 
                    getExtensionRegistry();
    
                    protected javax.wsdl.factory.WSDLFactory 
                    getWSDLFactory() 
                    throws javax.wsdl.WSDLException;
    
                    public void 
                    setFactoryImplName(String) 
                    throws UnsupportedOperationException;
    
                    public String 
                    getFactoryImplName();
    
                    protected javax.wsdl.Definition 
                    parseDefinitions(String, org.w3c.dom.Element, java.util.Map) 
                    throws javax.wsdl.WSDLException;
    
                    protected javax.wsdl.Import 
                    parseImport(org.w3c.dom.Element, javax.wsdl.Definition, java.util.Map) 
                    throws javax.wsdl.WSDLException;
    
                    protected javax.wsdl.Types 
                    parseTypes(org.w3c.dom.Element, javax.wsdl.Definition) 
                    throws javax.wsdl.WSDLException;
    
                    protected javax.wsdl.extensions.ExtensibilityElement 
                    parseSchema(Class, org.w3c.dom.Element, javax.wsdl.Definition) 
                    throws javax.wsdl.WSDLException;
    
                    protected javax.wsdl.extensions.ExtensibilityElement 
                    parseSchema(Class, org.w3c.dom.Element, javax.wsdl.Definition, javax.wsdl.extensions.ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
    
                    protected javax.wsdl.Binding 
                    parseBinding(org.w3c.dom.Element, javax.wsdl.Definition) 
                    throws javax.wsdl.WSDLException;
    
                    protected javax.wsdl.BindingOperation 
                    parseBindingOperation(org.w3c.dom.Element, javax.wsdl.PortType, javax.wsdl.Definition) 
                    throws javax.wsdl.WSDLException;
    
                    protected javax.wsdl.BindingInput 
                    parseBindingInput(org.w3c.dom.Element, javax.wsdl.Definition) 
                    throws javax.wsdl.WSDLException;
    
                    protected javax.wsdl.BindingOutput 
                    parseBindingOutput(org.w3c.dom.Element, javax.wsdl.Definition) 
                    throws javax.wsdl.WSDLException;
    
                    protected javax.wsdl.BindingFault 
                    parseBindingFault(org.w3c.dom.Element, javax.wsdl.Definition) 
                    throws javax.wsdl.WSDLException;
    
                    protected javax.wsdl.Message 
                    parseMessage(org.w3c.dom.Element, javax.wsdl.Definition) 
                    throws javax.wsdl.WSDLException;
    
                    protected javax.wsdl.Part 
                    parsePart(org.w3c.dom.Element, javax.wsdl.Definition) 
                    throws javax.wsdl.WSDLException;
    
                    protected void 
                    parseExtensibilityAttributes(org.w3c.dom.Element, Class, javax.wsdl.extensions.AttributeExtensible, javax.wsdl.Definition) 
                    throws javax.wsdl.WSDLException;
    
                    protected Object 
                    parseExtensibilityAttribute(org.w3c.dom.Element, int, String, javax.wsdl.Definition) 
                    throws javax.wsdl.WSDLException;
    
                    protected javax.wsdl.PortType 
                    parsePortType(org.w3c.dom.Element, javax.wsdl.Definition) 
                    throws javax.wsdl.WSDLException;
    
                    protected javax.wsdl.Operation 
                    parseOperation(org.w3c.dom.Element, javax.wsdl.PortType, javax.wsdl.Definition) 
                    throws javax.wsdl.WSDLException;
    
                    protected javax.wsdl.Service 
                    parseService(org.w3c.dom.Element, javax.wsdl.Definition) 
                    throws javax.wsdl.WSDLException;
    
                    protected javax.wsdl.Port 
                    parsePort(org.w3c.dom.Element, javax.wsdl.Definition) 
                    throws javax.wsdl.WSDLException;
    
                    protected javax.wsdl.extensions.ExtensibilityElement 
                    parseExtensibilityElement(Class, org.w3c.dom.Element, javax.wsdl.Definition) 
                    throws javax.wsdl.WSDLException;
    
                    protected javax.wsdl.Input 
                    parseInput(org.w3c.dom.Element, javax.wsdl.Definition) 
                    throws javax.wsdl.WSDLException;
    
                    protected javax.wsdl.Output 
                    parseOutput(org.w3c.dom.Element, javax.wsdl.Definition) 
                    throws javax.wsdl.WSDLException;
    
                    protected javax.wsdl.Fault 
                    parseFault(org.w3c.dom.Element, javax.wsdl.Definition) 
                    throws javax.wsdl.WSDLException;
    
                    private 
                    static javax.xml.namespace.QName 
                    getQualifiedAttributeValue(org.w3c.dom.Element, String, String, javax.wsdl.Definition) 
                    throws javax.wsdl.WSDLException;
    
                    private 
                    static javax.xml.namespace.QName 
                    getQualifiedAttributeValue(org.w3c.dom.Element, String, String, javax.wsdl.Definition, java.util.List) 
                    throws javax.wsdl.WSDLException;
    
                    private 
                    static void 
                    checkElementName(org.w3c.dom.Element, javax.xml.namespace.QName) 
                    throws javax.wsdl.WSDLException;
    
                    private 
                    static org.w3c.dom.Document 
                    getDocument(org.xml.sax.InputSource, String) 
                    throws javax.wsdl.WSDLException;
    
                    private 
                    static void 
                    registerNSDeclarations(org.w3c.dom.NamedNodeMap, javax.wsdl.Definition);
    
                    public javax.wsdl.Definition 
                    readWSDL(String) 
                    throws javax.wsdl.WSDLException;
    
                    public javax.wsdl.Definition 
                    readWSDL(String, String) 
                    throws javax.wsdl.WSDLException;
    
                    public javax.wsdl.Definition 
                    readWSDL(String, org.w3c.dom.Element) 
                    throws javax.wsdl.WSDLException;
    
                    public javax.wsdl.Definition 
                    readWSDL(javax.wsdl.xml.WSDLLocator, org.w3c.dom.Element) 
                    throws javax.wsdl.WSDLException;
    
                    protected javax.wsdl.Definition 
                    readWSDL(String, org.w3c.dom.Element, java.util.Map) 
                    throws javax.wsdl.WSDLException;
    
                    public javax.wsdl.Definition 
                    readWSDL(String, org.w3c.dom.Document) 
                    throws javax.wsdl.WSDLException;
    
                    public javax.wsdl.Definition 
                    readWSDL(String, org.xml.sax.InputSource) 
                    throws javax.wsdl.WSDLException;
    
                    public javax.wsdl.Definition 
                    readWSDL(javax.wsdl.xml.WSDLLocator) 
                    throws javax.wsdl.WSDLException;
    
                    static void 
                    <clinit>();
}

                

com/ibm/wsdl/xml/WSDLWriterImpl.class

                    package com.ibm.wsdl.xml;

                    public 
                    synchronized 
                    class WSDLWriterImpl 
                    implements javax.wsdl.xml.WSDLWriter {
    
                    public void WSDLWriterImpl();
    
                    public void 
                    setFeature(String, boolean) 
                    throws IllegalArgumentException;
    
                    public boolean 
                    getFeature(String) 
                    throws IllegalArgumentException;
    
                    protected void 
                    printDefinition(javax.wsdl.Definition, java.io.PrintWriter) 
                    throws javax.wsdl.WSDLException;
    
                    protected void 
                    printServices(java.util.Map, javax.wsdl.Definition, java.io.PrintWriter) 
                    throws javax.wsdl.WSDLException;
    
                    protected void 
                    printPorts(java.util.Map, javax.wsdl.Definition, java.io.PrintWriter) 
                    throws javax.wsdl.WSDLException;
    
                    protected void 
                    printBindings(java.util.Map, javax.wsdl.Definition, java.io.PrintWriter) 
                    throws javax.wsdl.WSDLException;
    
                    protected void 
                    printBindingOperations(java.util.List, javax.wsdl.Definition, java.io.PrintWriter) 
                    throws javax.wsdl.WSDLException;
    
                    protected void 
                    printBindingInput(javax.wsdl.BindingInput, javax.wsdl.Definition, java.io.PrintWriter) 
                    throws javax.wsdl.WSDLException;
    
                    protected void 
                    printBindingOutput(javax.wsdl.BindingOutput, javax.wsdl.Definition, java.io.PrintWriter) 
                    throws javax.wsdl.WSDLException;
    
                    protected void 
                    printBindingFaults(java.util.Map, javax.wsdl.Definition, java.io.PrintWriter) 
                    throws javax.wsdl.WSDLException;
    
                    protected void 
                    printPortTypes(java.util.Map, javax.wsdl.Definition, java.io.PrintWriter) 
                    throws javax.wsdl.WSDLException;
    
                    protected void 
                    printOperations(java.util.List, javax.wsdl.Definition, java.io.PrintWriter) 
                    throws javax.wsdl.WSDLException;
    
                    protected void 
                    printInput(javax.wsdl.Input, javax.wsdl.Definition, java.io.PrintWriter) 
                    throws javax.wsdl.WSDLException;
    
                    protected void 
                    printOutput(javax.wsdl.Output, javax.wsdl.Definition, java.io.PrintWriter) 
                    throws javax.wsdl.WSDLException;
    
                    protected void 
                    printFaults(java.util.Map, javax.wsdl.Definition, java.io.PrintWriter) 
                    throws javax.wsdl.WSDLException;
    
                    protected void 
                    printMessages(java.util.Map, javax.wsdl.Definition, java.io.PrintWriter) 
                    throws javax.wsdl.WSDLException;
    
                    protected void 
                    printParts(java.util.List, javax.wsdl.Definition, java.io.PrintWriter) 
                    throws javax.wsdl.WSDLException;
    
                    protected void 
                    printExtensibilityAttributes(Class, javax.wsdl.extensions.AttributeExtensible, javax.wsdl.Definition, java.io.PrintWriter) 
                    throws javax.wsdl.WSDLException;
    
                    protected void 
                    printDocumentation(org.w3c.dom.Element, javax.wsdl.Definition, java.io.PrintWriter) 
                    throws javax.wsdl.WSDLException;
    
                    protected void 
                    printTypes(javax.wsdl.Types, javax.wsdl.Definition, java.io.PrintWriter) 
                    throws javax.wsdl.WSDLException;
    
                    protected void 
                    printImports(java.util.Map, javax.wsdl.Definition, java.io.PrintWriter) 
                    throws javax.wsdl.WSDLException;
    
                    protected void 
                    printNamespaceDeclarations(java.util.Map, java.io.PrintWriter) 
                    throws javax.wsdl.WSDLException;
    
                    protected void 
                    printExtensibilityElements(Class, java.util.List, javax.wsdl.Definition, java.io.PrintWriter) 
                    throws javax.wsdl.WSDLException;
    
                    private 
                    static org.w3c.dom.Document 
                    getDocument(org.xml.sax.InputSource, String) 
                    throws javax.wsdl.WSDLException;
    
                    public org.w3c.dom.Document 
                    getDocument(javax.wsdl.Definition) 
                    throws javax.wsdl.WSDLException;
    
                    public void 
                    writeWSDL(javax.wsdl.Definition, java.io.Writer) 
                    throws javax.wsdl.WSDLException;
    
                    public void 
                    writeWSDL(javax.wsdl.Definition, java.io.OutputStream) 
                    throws javax.wsdl.WSDLException;
    
                    public 
                    static void 
                    main(String[]) 
                    throws javax.wsdl.WSDLException;
}

                

javax/wsdl/Binding.class

                    package javax.wsdl;

                    public 
                    abstract 
                    interface Binding 
                    extends WSDLElement {
    
                    public 
                    abstract void 
                    setQName(javax.xml.namespace.QName);
    
                    public 
                    abstract javax.xml.namespace.QName 
                    getQName();
    
                    public 
                    abstract void 
                    setPortType(PortType);
    
                    public 
                    abstract PortType 
                    getPortType();
    
                    public 
                    abstract void 
                    addBindingOperation(BindingOperation);
    
                    public 
                    abstract BindingOperation 
                    getBindingOperation(String, String, String);
    
                    public 
                    abstract java.util.List 
                    getBindingOperations();
    
                    public 
                    abstract BindingOperation 
                    removeBindingOperation(String, String, String);
    
                    public 
                    abstract void 
                    setUndefined(boolean);
    
                    public 
                    abstract boolean 
                    isUndefined();
}

                

javax/wsdl/BindingFault.class

                    package javax.wsdl;

                    public 
                    abstract 
                    interface BindingFault 
                    extends WSDLElement {
    
                    public 
                    abstract void 
                    setName(String);
    
                    public 
                    abstract String 
                    getName();
}

                

javax/wsdl/BindingInput.class

                    package javax.wsdl;

                    public 
                    abstract 
                    interface BindingInput 
                    extends WSDLElement {
    
                    public 
                    abstract void 
                    setName(String);
    
                    public 
                    abstract String 
                    getName();
}

                

javax/wsdl/BindingOperation.class

                    package javax.wsdl;

                    public 
                    abstract 
                    interface BindingOperation 
                    extends WSDLElement {
    
                    public 
                    abstract void 
                    setName(String);
    
                    public 
                    abstract String 
                    getName();
    
                    public 
                    abstract void 
                    setOperation(Operation);
    
                    public 
                    abstract Operation 
                    getOperation();
    
                    public 
                    abstract void 
                    setBindingInput(BindingInput);
    
                    public 
                    abstract BindingInput 
                    getBindingInput();
    
                    public 
                    abstract void 
                    setBindingOutput(BindingOutput);
    
                    public 
                    abstract BindingOutput 
                    getBindingOutput();
    
                    public 
                    abstract void 
                    addBindingFault(BindingFault);
    
                    public 
                    abstract BindingFault 
                    removeBindingFault(String);
    
                    public 
                    abstract BindingFault 
                    getBindingFault(String);
    
                    public 
                    abstract java.util.Map 
                    getBindingFaults();
}

                

javax/wsdl/BindingOutput.class

                    package javax.wsdl;

                    public 
                    abstract 
                    interface BindingOutput 
                    extends WSDLElement {
    
                    public 
                    abstract void 
                    setName(String);
    
                    public 
                    abstract String 
                    getName();
}

                

javax/wsdl/Definition.class

                    package javax.wsdl;

                    public 
                    abstract 
                    interface Definition 
                    extends WSDLElement {
    
                    public 
                    abstract void 
                    setDocumentBaseURI(String);
    
                    public 
                    abstract String 
                    getDocumentBaseURI();
    
                    public 
                    abstract void 
                    setQName(javax.xml.namespace.QName);
    
                    public 
                    abstract javax.xml.namespace.QName 
                    getQName();
    
                    public 
                    abstract void 
                    setTargetNamespace(String);
    
                    public 
                    abstract String 
                    getTargetNamespace();
    
                    public 
                    abstract void 
                    addNamespace(String, String);
    
                    public 
                    abstract String 
                    getNamespace(String);
    
                    public 
                    abstract String 
                    removeNamespace(String);
    
                    public 
                    abstract String 
                    getPrefix(String);
    
                    public 
                    abstract java.util.Map 
                    getNamespaces();
    
                    public 
                    abstract void 
                    setTypes(Types);
    
                    public 
                    abstract Types 
                    getTypes();
    
                    public 
                    abstract void 
                    addImport(Import);
    
                    public 
                    abstract Import 
                    removeImport(Import);
    
                    public 
                    abstract java.util.List 
                    getImports(String);
    
                    public 
                    abstract java.util.Map 
                    getImports();
    
                    public 
                    abstract void 
                    addMessage(Message);
    
                    public 
                    abstract Message 
                    getMessage(javax.xml.namespace.QName);
    
                    public 
                    abstract Message 
                    removeMessage(javax.xml.namespace.QName);
    
                    public 
                    abstract java.util.Map 
                    getMessages();
    
                    public 
                    abstract void 
                    addBinding(Binding);
    
                    public 
                    abstract Binding 
                    getBinding(javax.xml.namespace.QName);
    
                    public 
                    abstract Binding 
                    removeBinding(javax.xml.namespace.QName);
    
                    public 
                    abstract java.util.Map 
                    getBindings();
    
                    public 
                    abstract java.util.Map 
                    getAllBindings();
    
                    public 
                    abstract void 
                    addPortType(PortType);
    
                    public 
                    abstract PortType 
                    getPortType(javax.xml.namespace.QName);
    
                    public 
                    abstract PortType 
                    removePortType(javax.xml.namespace.QName);
    
                    public 
                    abstract java.util.Map 
                    getPortTypes();
    
                    public 
                    abstract java.util.Map 
                    getAllPortTypes();
    
                    public 
                    abstract void 
                    addService(Service);
    
                    public 
                    abstract Service 
                    getService(javax.xml.namespace.QName);
    
                    public 
                    abstract Service 
                    removeService(javax.xml.namespace.QName);
    
                    public 
                    abstract java.util.Map 
                    getServices();
    
                    public 
                    abstract java.util.Map 
                    getAllServices();
    
                    public 
                    abstract Binding 
                    createBinding();
    
                    public 
                    abstract BindingFault 
                    createBindingFault();
    
                    public 
                    abstract BindingInput 
                    createBindingInput();
    
                    public 
                    abstract BindingOperation 
                    createBindingOperation();
    
                    public 
                    abstract BindingOutput 
                    createBindingOutput();
    
                    public 
                    abstract Fault 
                    createFault();
    
                    public 
                    abstract Import 
                    createImport();
    
                    public 
                    abstract Input 
                    createInput();
    
                    public 
                    abstract Message 
                    createMessage();
    
                    public 
                    abstract Operation 
                    createOperation();
    
                    public 
                    abstract Output 
                    createOutput();
    
                    public 
                    abstract Part 
                    createPart();
    
                    public 
                    abstract Port 
                    createPort();
    
                    public 
                    abstract PortType 
                    createPortType();
    
                    public 
                    abstract Service 
                    createService();
    
                    public 
                    abstract Types 
                    createTypes();
    
                    public 
                    abstract extensions.ExtensionRegistry 
                    getExtensionRegistry();
    
                    public 
                    abstract void 
                    setExtensionRegistry(extensions.ExtensionRegistry);
}

                

javax/wsdl/Fault.class

                    package javax.wsdl;

                    public 
                    abstract 
                    interface Fault 
                    extends WSDLElement {
    
                    public 
                    abstract void 
                    setName(String);
    
                    public 
                    abstract String 
                    getName();
    
                    public 
                    abstract void 
                    setMessage(Message);
    
                    public 
                    abstract Message 
                    getMessage();
}

                

javax/wsdl/Import.class

                    package javax.wsdl;

                    public 
                    abstract 
                    interface Import 
                    extends WSDLElement {
    
                    public 
                    abstract void 
                    setNamespaceURI(String);
    
                    public 
                    abstract String 
                    getNamespaceURI();
    
                    public 
                    abstract void 
                    setLocationURI(String);
    
                    public 
                    abstract String 
                    getLocationURI();
    
                    public 
                    abstract void 
                    setDefinition(Definition);
    
                    public 
                    abstract Definition 
                    getDefinition();
}

                

javax/wsdl/Input.class

                    package javax.wsdl;

                    public 
                    abstract 
                    interface Input 
                    extends WSDLElement {
    
                    public 
                    abstract void 
                    setName(String);
    
                    public 
                    abstract String 
                    getName();
    
                    public 
                    abstract void 
                    setMessage(Message);
    
                    public 
                    abstract Message 
                    getMessage();
}

                

javax/wsdl/Message.class

                    package javax.wsdl;

                    public 
                    abstract 
                    interface Message 
                    extends WSDLElement {
    
                    public 
                    abstract void 
                    setQName(javax.xml.namespace.QName);
    
                    public 
                    abstract javax.xml.namespace.QName 
                    getQName();
    
                    public 
                    abstract void 
                    addPart(Part);
    
                    public 
                    abstract Part 
                    getPart(String);
    
                    public 
                    abstract Part 
                    removePart(String);
    
                    public 
                    abstract java.util.Map 
                    getParts();
    
                    public 
                    abstract java.util.List 
                    getOrderedParts(java.util.List);
    
                    public 
                    abstract void 
                    setUndefined(boolean);
    
                    public 
                    abstract boolean 
                    isUndefined();
}

                

javax/wsdl/Operation.class

                    package javax.wsdl;

                    public 
                    abstract 
                    interface Operation 
                    extends WSDLElement {
    
                    public 
                    abstract void 
                    setName(String);
    
                    public 
                    abstract String 
                    getName();
    
                    public 
                    abstract void 
                    setInput(Input);
    
                    public 
                    abstract Input 
                    getInput();
    
                    public 
                    abstract void 
                    setOutput(Output);
    
                    public 
                    abstract Output 
                    getOutput();
    
                    public 
                    abstract void 
                    addFault(Fault);
    
                    public 
                    abstract Fault 
                    getFault(String);
    
                    public 
                    abstract Fault 
                    removeFault(String);
    
                    public 
                    abstract java.util.Map 
                    getFaults();
    
                    public 
                    abstract void 
                    setStyle(OperationType);
    
                    public 
                    abstract OperationType 
                    getStyle();
    
                    public 
                    abstract void 
                    setParameterOrdering(java.util.List);
    
                    public 
                    abstract java.util.List 
                    getParameterOrdering();
    
                    public 
                    abstract void 
                    setUndefined(boolean);
    
                    public 
                    abstract boolean 
                    isUndefined();
}

                

javax/wsdl/OperationType.class

                    package javax.wsdl;

                    public 
                    synchronized 
                    class OperationType 
                    implements java.io.Serializable {
    
                    private 
                    final String 
                    id;
    
                    private 
                    final int 
                    intId;
    
                    private 
                    static int 
                    counter;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public 
                    static OperationType 
                    ONE_WAY;
    
                    public 
                    static OperationType 
                    REQUEST_RESPONSE;
    
                    public 
                    static OperationType 
                    SOLICIT_RESPONSE;
    
                    public 
                    static OperationType 
                    NOTIFICATION;
    
                    private 
                    static 
                    final OperationType[] 
                    INSTANCES;
    
                    private void OperationType(String);
    
                    private String 
                    getId();
    
                    public boolean 
                    equals(OperationType);
    
                    public String 
                    toString();
    
                    private Object 
                    readResolve() 
                    throws java.io.ObjectStreamException;
    
                    static void 
                    <clinit>();
}

                

javax/wsdl/Output.class

                    package javax.wsdl;

                    public 
                    abstract 
                    interface Output 
                    extends WSDLElement {
    
                    public 
                    abstract void 
                    setName(String);
    
                    public 
                    abstract String 
                    getName();
    
                    public 
                    abstract void 
                    setMessage(Message);
    
                    public 
                    abstract Message 
                    getMessage();
}

                

javax/wsdl/Part.class

                    package javax.wsdl;

                    public 
                    abstract 
                    interface Part 
                    extends WSDLElement {
    
                    public 
                    abstract void 
                    setName(String);
    
                    public 
                    abstract String 
                    getName();
    
                    public 
                    abstract void 
                    setElementName(javax.xml.namespace.QName);
    
                    public 
                    abstract javax.xml.namespace.QName 
                    getElementName();
    
                    public 
                    abstract void 
                    setTypeName(javax.xml.namespace.QName);
    
                    public 
                    abstract javax.xml.namespace.QName 
                    getTypeName();
}

                

javax/wsdl/Port.class

                    package javax.wsdl;

                    public 
                    abstract 
                    interface Port 
                    extends WSDLElement {
    
                    public 
                    abstract void 
                    setName(String);
    
                    public 
                    abstract String 
                    getName();
    
                    public 
                    abstract void 
                    setBinding(Binding);
    
                    public 
                    abstract Binding 
                    getBinding();
}

                

javax/wsdl/PortType.class

                    package javax.wsdl;

                    public 
                    abstract 
                    interface PortType 
                    extends WSDLElement {
    
                    public 
                    abstract void 
                    setQName(javax.xml.namespace.QName);
    
                    public 
                    abstract javax.xml.namespace.QName 
                    getQName();
    
                    public 
                    abstract void 
                    addOperation(Operation);
    
                    public 
                    abstract Operation 
                    getOperation(String, String, String);
    
                    public 
                    abstract java.util.List 
                    getOperations();
    
                    public 
                    abstract Operation 
                    removeOperation(String, String, String);
    
                    public 
                    abstract void 
                    setUndefined(boolean);
    
                    public 
                    abstract boolean 
                    isUndefined();
}

                

javax/wsdl/Service.class

                    package javax.wsdl;

                    public 
                    abstract 
                    interface Service 
                    extends WSDLElement {
    
                    public 
                    abstract void 
                    setQName(javax.xml.namespace.QName);
    
                    public 
                    abstract javax.xml.namespace.QName 
                    getQName();
    
                    public 
                    abstract void 
                    addPort(Port);
    
                    public 
                    abstract Port 
                    getPort(String);
    
                    public 
                    abstract Port 
                    removePort(String);
    
                    public 
                    abstract java.util.Map 
                    getPorts();
}

                

javax/wsdl/Types.class

                    package javax.wsdl;

                    public 
                    abstract 
                    interface Types 
                    extends WSDLElement {
}

                

javax/wsdl/WSDLElement.class

                    package javax.wsdl;

                    public 
                    abstract 
                    interface WSDLElement 
                    extends java.io.Serializable, extensions.AttributeExtensible, extensions.ElementExtensible {
    
                    public 
                    abstract void 
                    setDocumentationElement(org.w3c.dom.Element);
    
                    public 
                    abstract org.w3c.dom.Element 
                    getDocumentationElement();
}

                

javax/wsdl/WSDLException.class

                    package javax.wsdl;

                    public 
                    synchronized 
                    class WSDLException 
                    extends Exception {
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public 
                    static 
                    final String 
                    INVALID_WSDL = INVALID_WSDL;
    
                    public 
                    static 
                    final String 
                    PARSER_ERROR = PARSER_ERROR;
    
                    public 
                    static 
                    final String 
                    OTHER_ERROR = OTHER_ERROR;
    
                    public 
                    static 
                    final String 
                    CONFIGURATION_ERROR = CONFIGURATION_ERROR;
    
                    public 
                    static 
                    final String 
                    UNBOUND_PREFIX = UNBOUND_PREFIX;
    
                    public 
                    static 
                    final String 
                    NO_PREFIX_SPECIFIED = NO_PREFIX_SPECIFIED;
    
                    private String 
                    faultCode;
    
                    private Throwable 
                    targetThrowable;
    
                    private String 
                    location;
    
                    public void WSDLException(String, String, Throwable);
    
                    public void WSDLException(String, String);
    
                    public void 
                    setFaultCode(String);
    
                    public String 
                    getFaultCode();
    
                    public void 
                    setTargetException(Throwable);
    
                    public Throwable 
                    getTargetException();
    
                    public void 
                    setLocation(String);
    
                    public String 
                    getLocation();
    
                    public String 
                    getMessage();
}

                

javax/wsdl/extensions/AttributeExtensible.class

                    package javax.wsdl.extensions;

                    public 
                    abstract 
                    interface AttributeExtensible {
    
                    public 
                    static 
                    final int 
                    NO_DECLARED_TYPE = -1;
    
                    public 
                    static 
                    final int 
                    STRING_TYPE = 0;
    
                    public 
                    static 
                    final int 
                    QNAME_TYPE = 1;
    
                    public 
                    static 
                    final int 
                    LIST_OF_STRINGS_TYPE = 2;
    
                    public 
                    static 
                    final int 
                    LIST_OF_QNAMES_TYPE = 3;
    
                    public 
                    abstract void 
                    setExtensionAttribute(javax.xml.namespace.QName, Object);
    
                    public 
                    abstract Object 
                    getExtensionAttribute(javax.xml.namespace.QName);
    
                    public 
                    abstract java.util.Map 
                    getExtensionAttributes();
    
                    public 
                    abstract java.util.List 
                    getNativeAttributeNames();
}

                

javax/wsdl/extensions/ElementExtensible.class

                    package javax.wsdl.extensions;

                    public 
                    abstract 
                    interface ElementExtensible {
    
                    public 
                    abstract void 
                    addExtensibilityElement(ExtensibilityElement);
    
                    public 
                    abstract ExtensibilityElement 
                    removeExtensibilityElement(ExtensibilityElement);
    
                    public 
                    abstract java.util.List 
                    getExtensibilityElements();
}

                

javax/wsdl/extensions/ExtensibilityElement.class

                    package javax.wsdl.extensions;

                    public 
                    abstract 
                    interface ExtensibilityElement {
    
                    public 
                    abstract void 
                    setElementType(javax.xml.namespace.QName);
    
                    public 
                    abstract javax.xml.namespace.QName 
                    getElementType();
    
                    public 
                    abstract void 
                    setRequired(Boolean);
    
                    public 
                    abstract Boolean 
                    getRequired();
}

                

javax/wsdl/extensions/ExtensionDeserializer.class

                    package javax.wsdl.extensions;

                    public 
                    abstract 
                    interface ExtensionDeserializer {
    
                    public 
                    abstract ExtensibilityElement 
                    unmarshall(Class, javax.xml.namespace.QName, org.w3c.dom.Element, javax.wsdl.Definition, ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
}

                

javax/wsdl/extensions/ExtensionRegistry.class

                    package javax.wsdl.extensions;

                    public 
                    synchronized 
                    class ExtensionRegistry 
                    implements java.io.Serializable {
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    protected java.util.Map 
                    serializerReg;
    
                    protected java.util.Map 
                    deserializerReg;
    
                    protected java.util.Map 
                    extensionTypeReg;
    
                    protected ExtensionSerializer 
                    defaultSer;
    
                    protected ExtensionDeserializer 
                    defaultDeser;
    
                    protected java.util.Map 
                    extensionAttributeTypeReg;
    
                    public void ExtensionRegistry();
    
                    public void 
                    setDefaultSerializer(ExtensionSerializer);
    
                    public ExtensionSerializer 
                    getDefaultSerializer();
    
                    public void 
                    setDefaultDeserializer(ExtensionDeserializer);
    
                    public ExtensionDeserializer 
                    getDefaultDeserializer();
    
                    public void 
                    registerSerializer(Class, javax.xml.namespace.QName, ExtensionSerializer);
    
                    public void 
                    registerDeserializer(Class, javax.xml.namespace.QName, ExtensionDeserializer);
    
                    public ExtensionSerializer 
                    querySerializer(Class, javax.xml.namespace.QName) 
                    throws javax.wsdl.WSDLException;
    
                    public ExtensionDeserializer 
                    queryDeserializer(Class, javax.xml.namespace.QName) 
                    throws javax.wsdl.WSDLException;
    
                    public java.util.Set 
                    getAllowableExtensions(Class);
    
                    public void 
                    mapExtensionTypes(Class, javax.xml.namespace.QName, Class);
    
                    public ExtensibilityElement 
                    createExtension(Class, javax.xml.namespace.QName) 
                    throws javax.wsdl.WSDLException;
    
                    public void 
                    registerExtensionAttributeType(Class, javax.xml.namespace.QName, int);
    
                    public int 
                    queryExtensionAttributeType(Class, javax.xml.namespace.QName);
}

                

javax/wsdl/extensions/ExtensionSerializer.class

                    package javax.wsdl.extensions;

                    public 
                    abstract 
                    interface ExtensionSerializer {
    
                    public 
                    abstract void 
                    marshall(Class, javax.xml.namespace.QName, ExtensibilityElement, java.io.PrintWriter, javax.wsdl.Definition, ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
}

                

javax/wsdl/extensions/UnknownExtensibilityElement.class

                    package javax.wsdl.extensions;

                    public 
                    synchronized 
                    class UnknownExtensibilityElement 
                    implements ExtensibilityElement, java.io.Serializable {
    
                    protected javax.xml.namespace.QName 
                    elementType;
    
                    protected Boolean 
                    required;
    
                    protected org.w3c.dom.Element 
                    element;
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void UnknownExtensibilityElement();
    
                    public void 
                    setElementType(javax.xml.namespace.QName);
    
                    public javax.xml.namespace.QName 
                    getElementType();
    
                    public void 
                    setRequired(Boolean);
    
                    public Boolean 
                    getRequired();
    
                    public void 
                    setElement(org.w3c.dom.Element);
    
                    public org.w3c.dom.Element 
                    getElement();
    
                    public String 
                    toString();
}

                

javax/wsdl/extensions/UnknownExtensionDeserializer.class

                    package javax.wsdl.extensions;

                    public 
                    synchronized 
                    class UnknownExtensionDeserializer 
                    implements ExtensionDeserializer, java.io.Serializable {
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void UnknownExtensionDeserializer();
    
                    public ExtensibilityElement 
                    unmarshall(Class, javax.xml.namespace.QName, org.w3c.dom.Element, javax.wsdl.Definition, ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
}

                

javax/wsdl/extensions/UnknownExtensionSerializer.class

                    package javax.wsdl.extensions;

                    public 
                    synchronized 
                    class UnknownExtensionSerializer 
                    implements ExtensionSerializer, java.io.Serializable {
    
                    public 
                    static 
                    final long 
                    serialVersionUID = 1;
    
                    public void UnknownExtensionSerializer();
    
                    public void 
                    marshall(Class, javax.xml.namespace.QName, ExtensibilityElement, java.io.PrintWriter, javax.wsdl.Definition, ExtensionRegistry) 
                    throws javax.wsdl.WSDLException;
}

                

javax/wsdl/extensions/http/HTTPAddress.class

                    package javax.wsdl.extensions.http;

                    public 
                    abstract 
                    interface HTTPAddress 
                    extends javax.wsdl.extensions.ExtensibilityElement, java.io.Serializable {
    
                    public 
                    abstract void 
                    setLocationURI(String);
    
                    public 
                    abstract String 
                    getLocationURI();
}

                

javax/wsdl/extensions/http/HTTPBinding.class

                    package javax.wsdl.extensions.http;

                    public 
                    abstract 
                    interface HTTPBinding 
                    extends javax.wsdl.extensions.ExtensibilityElement, java.io.Serializable {
    
                    public 
                    abstract void 
                    setVerb(String);
    
                    public 
                    abstract String 
                    getVerb();
}

                

javax/wsdl/extensions/http/HTTPOperation.class

                    package javax.wsdl.extensions.http;

                    public 
                    abstract 
                    interface HTTPOperation 
                    extends javax.wsdl.extensions.ExtensibilityElement, java.io.Serializable {
    
                    public 
                    abstract void 
                    setLocationURI(String);
    
                    public 
                    abstract String 
                    getLocationURI();
}

                

javax/wsdl/extensions/http/HTTPUrlEncoded.class

                    package javax.wsdl.extensions.http;

                    public 
                    abstract 
                    interface HTTPUrlEncoded 
                    extends javax.wsdl.extensions.ExtensibilityElement, java.io.Serializable {
}

                

javax/wsdl/extensions/http/HTTPUrlReplacement.class

                    package javax.wsdl.extensions.http;

                    public 
                    abstract 
                    interface HTTPUrlReplacement 
                    extends javax.wsdl.extensions.ExtensibilityElement, java.io.Serializable {
}

                

javax/wsdl/extensions/mime/MIMEContent.class

                    package javax.wsdl.extensions.mime;

                    public 
                    abstract 
                    interface MIMEContent 
                    extends javax.wsdl.extensions.ExtensibilityElement, java.io.Serializable {
    
                    public 
                    abstract void 
                    setPart(String);
    
                    public 
                    abstract String 
                    getPart();
    
                    public 
                    abstract void 
                    setType(String);
    
                    public 
                    abstract String 
                    getType();
}

                

javax/wsdl/extensions/mime/MIMEMimeXml.class

                    package javax.wsdl.extensions.mime;

                    public 
                    abstract 
                    interface MIMEMimeXml 
                    extends javax.wsdl.extensions.ExtensibilityElement, java.io.Serializable {
    
                    public 
                    abstract void 
                    setPart(String);
    
                    public 
                    abstract String 
                    getPart();
}

                

javax/wsdl/extensions/mime/MIMEMultipartRelated.class

                    package javax.wsdl.extensions.mime;

                    public 
                    abstract 
                    interface MIMEMultipartRelated 
                    extends javax.wsdl.extensions.ExtensibilityElement, java.io.Serializable {
    
                    public 
                    abstract void 
                    addMIMEPart(MIMEPart);
    
                    public 
                    abstract MIMEPart 
                    removeMIMEPart(MIMEPart);
    
                    public 
                    abstract java.util.List 
                    getMIMEParts();
}

                

javax/wsdl/extensions/mime/MIMEPart.class

                    package javax.wsdl.extensions.mime;

                    public 
                    abstract 
                    interface MIMEPart 
                    extends javax.wsdl.extensions.ElementExtensible, javax.wsdl.extensions.ExtensibilityElement, java.io.Serializable {
}

                

javax/wsdl/extensions/schema/Schema.class

                    package javax.wsdl.extensions.schema;

                    public 
                    abstract 
                    interface Schema 
                    extends javax.wsdl.extensions.ExtensibilityElement, java.io.Serializable {
    
                    public 
                    abstract java.util.Map 
                    getImports();
    
                    public 
                    abstract SchemaImport 
                    createImport();
    
                    public 
                    abstract void 
                    addImport(SchemaImport);
    
                    public 
                    abstract java.util.List 
                    getIncludes();
    
                    public 
                    abstract SchemaReference 
                    createInclude();
    
                    public 
                    abstract void 
                    addInclude(SchemaReference);
    
                    public 
                    abstract java.util.List 
                    getRedefines();
    
                    public 
                    abstract SchemaReference 
                    createRedefine();
    
                    public 
                    abstract void 
                    addRedefine(SchemaReference);
    
                    public 
                    abstract void 
                    setElement(org.w3c.dom.Element);
    
                    public 
                    abstract org.w3c.dom.Element 
                    getElement();
    
                    public 
                    abstract void 
                    setDocumentBaseURI(String);
    
                    public 
                    abstract String 
                    getDocumentBaseURI();
}

                

javax/wsdl/extensions/schema/SchemaImport.class

                    package javax.wsdl.extensions.schema;

                    public 
                    abstract 
                    interface SchemaImport 
                    extends SchemaReference {
    
                    public 
                    abstract String 
                    getNamespaceURI();
    
                    public 
                    abstract void 
                    setNamespaceURI(String);
}

                

javax/wsdl/extensions/schema/SchemaReference.class

                    package javax.wsdl.extensions.schema;

                    public 
                    abstract 
                    interface SchemaReference 
                    extends java.io.Serializable {
    
                    public 
                    abstract String 
                    getId();
    
                    public 
                    abstract void 
                    setId(String);
    
                    public 
                    abstract String 
                    getSchemaLocationURI();
    
                    public 
                    abstract void 
                    setSchemaLocationURI(String);
    
                    public 
                    abstract Schema 
                    getReferencedSchema();
    
                    public 
                    abstract void 
                    setReferencedSchema(Schema);
}

                

javax/wsdl/extensions/soap/SOAPAddress.class

                    package javax.wsdl.extensions.soap;

                    public 
                    abstract 
                    interface SOAPAddress 
                    extends javax.wsdl.extensions.ExtensibilityElement, java.io.Serializable {
    
                    public 
                    abstract void 
                    setLocationURI(String);
    
                    public 
                    abstract String 
                    getLocationURI();
}

                

javax/wsdl/extensions/soap/SOAPBinding.class

                    package javax.wsdl.extensions.soap;

                    public 
                    abstract 
                    interface SOAPBinding 
                    extends javax.wsdl.extensions.ExtensibilityElement, java.io.Serializable {
    
                    public 
                    abstract void 
                    setStyle(String);
    
                    public 
                    abstract String 
                    getStyle();
    
                    public 
                    abstract void 
                    setTransportURI(String);
    
                    public 
                    abstract String 
                    getTransportURI();
}

                

javax/wsdl/extensions/soap/SOAPBody.class

                    package javax.wsdl.extensions.soap;

                    public 
                    abstract 
                    interface SOAPBody 
                    extends javax.wsdl.extensions.ExtensibilityElement, java.io.Serializable {
    
                    public 
                    abstract void 
                    setParts(java.util.List);
    
                    public 
                    abstract java.util.List 
                    getParts();
    
                    public 
                    abstract void 
                    setUse(String);
    
                    public 
                    abstract String 
                    getUse();
    
                    public 
                    abstract void 
                    setEncodingStyles(java.util.List);
    
                    public 
                    abstract java.util.List 
                    getEncodingStyles();
    
                    public 
                    abstract void 
                    setNamespaceURI(String);
    
                    public 
                    abstract String 
                    getNamespaceURI();
}

                

javax/wsdl/extensions/soap/SOAPFault.class

                    package javax.wsdl.extensions.soap;

                    public 
                    abstract 
                    interface SOAPFault 
                    extends javax.wsdl.extensions.ExtensibilityElement, java.io.Serializable {
    
                    public 
                    abstract void 
                    setName(String);
    
                    public 
                    abstract String 
                    getName();
    
                    public 
                    abstract void 
                    setUse(String);
    
                    public 
                    abstract String 
                    getUse();
    
                    public 
                    abstract void 
                    setEncodingStyles(java.util.List);
    
                    public 
                    abstract java.util.List 
                    getEncodingStyles();
    
                    public 
                    abstract void 
                    setNamespaceURI(String);
    
                    public 
                    abstract String 
                    getNamespaceURI();
}

                

javax/wsdl/extensions/soap/SOAPHeader.class

                    package javax.wsdl.extensions.soap;

                    public 
                    abstract 
                    interface SOAPHeader 
                    extends javax.wsdl.extensions.ExtensibilityElement, java.io.Serializable {
    
                    public 
                    abstract void 
                    setMessage(javax.xml.namespace.QName);
    
                    public 
                    abstract javax.xml.namespace.QName 
                    getMessage();
    
                    public 
                    abstract void 
                    setPart(String);
    
                    public 
                    abstract String 
                    getPart();
    
                    public 
                    abstract void 
                    setUse(String);
    
                    public 
                    abstract String 
                    getUse();
    
                    public 
                    abstract void 
                    setEncodingStyles(java.util.List);
    
                    public 
                    abstract java.util.List 
                    getEncodingStyles();
    
                    public 
                    abstract void 
                    setNamespaceURI(String);
    
                    public 
                    abstract String 
                    getNamespaceURI();
    
                    public 
                    abstract void 
                    addSOAPHeaderFault(SOAPHeaderFault);
    
                    public 
                    abstract SOAPHeaderFault 
                    removeSOAPHeaderFault(SOAPHeaderFault);
    
                    public 
                    abstract java.util.List 
                    getSOAPHeaderFaults();
}

                

javax/wsdl/extensions/soap/SOAPHeaderFault.class

                    package javax.wsdl.extensions.soap;

                    public 
                    abstract 
                    interface SOAPHeaderFault 
                    extends javax.wsdl.extensions.ExtensibilityElement, java.io.Serializable {
    
                    public 
                    abstract void 
                    setMessage(javax.xml.namespace.QName);
    
                    public 
                    abstract javax.xml.namespace.QName 
                    getMessage();
    
                    public 
                    abstract void 
                    setPart(String);
    
                    public 
                    abstract String 
                    getPart();
    
                    public 
                    abstract void 
                    setUse(String);
    
                    public 
                    abstract String 
                    getUse();
    
                    public 
                    abstract void 
                    setEncodingStyles(java.util.List);
    
                    public 
                    abstract java.util.List 
                    getEncodingStyles();
    
                    public 
                    abstract void 
                    setNamespaceURI(String);
    
                    public 
                    abstract String 
                    getNamespaceURI();
}

                

javax/wsdl/extensions/soap/SOAPOperation.class

                    package javax.wsdl.extensions.soap;

                    public 
                    abstract 
                    interface SOAPOperation 
                    extends javax.wsdl.extensions.ExtensibilityElement, java.io.Serializable {
    
                    public 
                    abstract void 
                    setSoapActionURI(String);
    
                    public 
                    abstract String 
                    getSoapActionURI();
    
                    public 
                    abstract void 
                    setStyle(String);
    
                    public 
                    abstract String 
                    getStyle();
}

                

javax/wsdl/extensions/soap12/SOAP12Address.class

                    package javax.wsdl.extensions.soap12;

                    public 
                    abstract 
                    interface SOAP12Address 
                    extends javax.wsdl.extensions.ExtensibilityElement, java.io.Serializable {
    
                    public 
                    abstract void 
                    setLocationURI(String);
    
                    public 
                    abstract String 
                    getLocationURI();
}

                

javax/wsdl/extensions/soap12/SOAP12Binding.class

                    package javax.wsdl.extensions.soap12;

                    public 
                    abstract 
                    interface SOAP12Binding 
                    extends javax.wsdl.extensions.ExtensibilityElement, java.io.Serializable {
    
                    public 
                    abstract void 
                    setStyle(String);
    
                    public 
                    abstract String 
                    getStyle();
    
                    public 
                    abstract void 
                    setTransportURI(String);
    
                    public 
                    abstract String 
                    getTransportURI();
}

                

javax/wsdl/extensions/soap12/SOAP12Body.class

                    package javax.wsdl.extensions.soap12;

                    public 
                    abstract 
                    interface SOAP12Body 
                    extends javax.wsdl.extensions.ExtensibilityElement, java.io.Serializable {
    
                    public 
                    abstract void 
                    setParts(java.util.List);
    
                    public 
                    abstract java.util.List 
                    getParts();
    
                    public 
                    abstract void 
                    setUse(String);
    
                    public 
                    abstract String 
                    getUse();
    
                    public 
                    abstract void 
                    setEncodingStyle(String);
    
                    public 
                    abstract String 
                    getEncodingStyle();
    
                    public 
                    abstract void 
                    setNamespaceURI(String);
    
                    public 
                    abstract String 
                    getNamespaceURI();
}

                

javax/wsdl/extensions/soap12/SOAP12Fault.class

                    package javax.wsdl.extensions.soap12;

                    public 
                    abstract 
                    interface SOAP12Fault 
                    extends javax.wsdl.extensions.ExtensibilityElement, java.io.Serializable {
    
                    public 
                    abstract void 
                    setName(String);
    
                    public 
                    abstract String 
                    getName();
    
                    public 
                    abstract void 
                    setUse(String);
    
                    public 
                    abstract String 
                    getUse();
    
                    public 
                    abstract void 
                    setEncodingStyle(String);
    
                    public 
                    abstract String 
                    getEncodingStyle();
    
                    public 
                    abstract void 
                    setNamespaceURI(String);
    
                    public 
                    abstract String 
                    getNamespaceURI();
}

                

javax/wsdl/extensions/soap12/SOAP12Header.class

                    package javax.wsdl.extensions.soap12;

                    public 
                    abstract 
                    interface SOAP12Header 
                    extends javax.wsdl.extensions.ExtensibilityElement, java.io.Serializable {
    
                    public 
                    abstract void 
                    setMessage(javax.xml.namespace.QName);
    
                    public 
                    abstract javax.xml.namespace.QName 
                    getMessage();
    
                    public 
                    abstract void 
                    setPart(String);
    
                    public 
                    abstract String 
                    getPart();
    
                    public 
                    abstract void 
                    setUse(String);
    
                    public 
                    abstract String 
                    getUse();
    
                    public 
                    abstract void 
                    setEncodingStyle(String);
    
                    public 
                    abstract String 
                    getEncodingStyle();
    
                    public 
                    abstract void 
                    setNamespaceURI(String);
    
                    public 
                    abstract String 
                    getNamespaceURI();
    
                    public 
                    abstract void 
                    addSOAP12HeaderFault(SOAP12HeaderFault);
    
                    public 
                    abstract java.util.List 
                    getSOAP12HeaderFaults();
    
                    public 
                    abstract SOAP12HeaderFault 
                    removeSOAP12HeaderFault(SOAP12HeaderFault);
}

                

javax/wsdl/extensions/soap12/SOAP12HeaderFault.class

                    package javax.wsdl.extensions.soap12;

                    public 
                    abstract 
                    interface SOAP12HeaderFault 
                    extends javax.wsdl.extensions.ExtensibilityElement, java.io.Serializable {
    
                    public 
                    abstract void 
                    setMessage(javax.xml.namespace.QName);
    
                    public 
                    abstract javax.xml.namespace.QName 
                    getMessage();
    
                    public 
                    abstract void 
                    setPart(String);
    
                    public 
                    abstract String 
                    getPart();
    
                    public 
                    abstract void 
                    setUse(String);
    
                    public 
                    abstract String 
                    getUse();
    
                    public 
                    abstract void 
                    setEncodingStyle(String);
    
                    public 
                    abstract String 
                    getEncodingStyle();
    
                    public 
                    abstract void 
                    setNamespaceURI(String);
    
                    public 
                    abstract String 
                    getNamespaceURI();
}

                

javax/wsdl/extensions/soap12/SOAP12Operation.class

                    package javax.wsdl.extensions.soap12;

                    public 
                    abstract 
                    interface SOAP12Operation 
                    extends javax.wsdl.extensions.ExtensibilityElement, java.io.Serializable {
    
                    public 
                    abstract void 
                    setSoapActionURI(String);
    
                    public 
                    abstract String 
                    getSoapActionURI();
    
                    public 
                    abstract void 
                    setSoapActionRequired(Boolean);
    
                    public 
                    abstract Boolean 
                    getSoapActionRequired();
    
                    public 
                    abstract void 
                    setStyle(String);
    
                    public 
                    abstract String 
                    getStyle();
}

                

javax/wsdl/factory/WSDLFactory$1.class

                    package javax.wsdl.factory;

                    synchronized 
                    class WSDLFactory$1 
                    implements java.security.PrivilegedAction {
    void WSDLFactory$1(String);
    
                    public Object 
                    run();
}

                

javax/wsdl/factory/WSDLFactory.class

                    package javax.wsdl.factory;

                    public 
                    abstract 
                    synchronized 
                    class WSDLFactory {
    
                    private 
                    static 
                    final String 
                    PROPERTY_NAME = javax.wsdl.factory.WSDLFactory;
    
                    private 
                    static 
                    final String 
                    PROPERTY_FILE_NAME = wsdl.properties;
    
                    private 
                    static 
                    final String 
                    META_INF_SERVICES_PROPERTY_FILE_NAME = javax.wsdl.factory.WSDLFactory;
    
                    private 
                    static 
                    final String 
                    DEFAULT_FACTORY_IMPL_NAME = com.ibm.wsdl.factory.WSDLFactoryImpl;
    
                    private 
                    static String 
                    fullPropertyFileName;
    
                    private 
                    static String 
                    metaInfServicesFullPropertyFileName;
    
                    public void WSDLFactory();
    
                    public 
                    static WSDLFactory 
                    newInstance() 
                    throws javax.wsdl.WSDLException;
    
                    public 
                    static WSDLFactory 
                    newInstance(String) 
                    throws javax.wsdl.WSDLException;
    
                    public 
                    static WSDLFactory 
                    newInstance(String, ClassLoader) 
                    throws javax.wsdl.WSDLException;
    
                    public 
                    abstract javax.wsdl.Definition 
                    newDefinition();
    
                    public 
                    abstract javax.wsdl.xml.WSDLReader 
                    newWSDLReader();
    
                    public 
                    abstract javax.wsdl.xml.WSDLWriter 
                    newWSDLWriter();
    
                    public 
                    abstract javax.wsdl.extensions.ExtensionRegistry 
                    newPopulatedExtensionRegistry();
    
                    private 
                    static String 
                    findFactoryImplName();
    
                    private 
                    static String 
                    getFullPropertyFileName();
    
                    private 
                    static String 
                    getMetaInfFullPropertyFileName();
    
                    static void 
                    <clinit>();
}

                

javax/wsdl/xml/WSDLLocator.class

                    package javax.wsdl.xml;

                    public 
                    abstract 
                    interface WSDLLocator {
    
                    public 
                    abstract org.xml.sax.InputSource 
                    getBaseInputSource();
    
                    public 
                    abstract org.xml.sax.InputSource 
                    getImportInputSource(String, String);
    
                    public 
                    abstract String 
                    getBaseURI();
    
                    public 
                    abstract String 
                    getLatestImportURI();
    
                    public 
                    abstract void 
                    close();
}

                

javax/wsdl/xml/WSDLReader.class

                    package javax.wsdl.xml;

                    public 
                    abstract 
                    interface WSDLReader {
    
                    public 
                    abstract void 
                    setFeature(String, boolean) 
                    throws IllegalArgumentException;
    
                    public 
                    abstract boolean 
                    getFeature(String) 
                    throws IllegalArgumentException;
    
                    public 
                    abstract void 
                    setExtensionRegistry(javax.wsdl.extensions.ExtensionRegistry);
    
                    public 
                    abstract javax.wsdl.extensions.ExtensionRegistry 
                    getExtensionRegistry();
    
                    public 
                    abstract void 
                    setFactoryImplName(String) 
                    throws UnsupportedOperationException;
    
                    public 
                    abstract String 
                    getFactoryImplName();
    
                    public 
                    abstract javax.wsdl.Definition 
                    readWSDL(String) 
                    throws javax.wsdl.WSDLException;
    
                    public 
                    abstract javax.wsdl.Definition 
                    readWSDL(String, String) 
                    throws javax.wsdl.WSDLException;
    
                    public 
                    abstract javax.wsdl.Definition 
                    readWSDL(String, org.w3c.dom.Element) 
                    throws javax.wsdl.WSDLException;
    
                    public 
                    abstract javax.wsdl.Definition 
                    readWSDL(WSDLLocator, org.w3c.dom.Element) 
                    throws javax.wsdl.WSDLException;
    
                    public 
                    abstract javax.wsdl.Definition 
                    readWSDL(String, org.w3c.dom.Document) 
                    throws javax.wsdl.WSDLException;
    
                    public 
                    abstract javax.wsdl.Definition 
                    readWSDL(String, org.xml.sax.InputSource) 
                    throws javax.wsdl.WSDLException;
    
                    public 
                    abstract javax.wsdl.Definition 
                    readWSDL(WSDLLocator) 
                    throws javax.wsdl.WSDLException;
}

                

javax/wsdl/xml/WSDLWriter.class

                    package javax.wsdl.xml;

                    public 
                    abstract 
                    interface WSDLWriter {
    
                    public 
                    abstract void 
                    setFeature(String, boolean) 
                    throws IllegalArgumentException;
    
                    public 
                    abstract boolean 
                    getFeature(String) 
                    throws IllegalArgumentException;
    
                    public 
                    abstract org.w3c.dom.Document 
                    getDocument(javax.wsdl.Definition) 
                    throws javax.wsdl.WSDLException;
    
                    public 
                    abstract void 
                    writeWSDL(javax.wsdl.Definition, java.io.Writer) 
                    throws javax.wsdl.WSDLException;
    
                    public 
                    abstract void 
                    writeWSDL(javax.wsdl.Definition, java.io.OutputStream) 
                    throws javax.wsdl.WSDLException;
}

                

plugin.properties

# properties file for javax.wsdl Bundle-Vendor.0 = Eclipse Orbit Bundle-Name.0 = WSDL4J

BookStoreCXFWS/WebContent/WEB-INF/web.xml

Book Store Services contextConfigLocation classpath:org/mississippi/book/store/services/cxf.xml org.springframework.web.context.ContextLoaderListener CXFServlet org.apache.cxf.transport.servlet.CXFServlet CXFServlet /services/*