Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 80200 invoked from network); 21 Oct 2003 02:01:04 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 21 Oct 2003 02:01:04 -0000 Received: (qmail 32596 invoked by uid 500); 21 Oct 2003 02:00:44 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 32396 invoked by uid 500); 21 Oct 2003 02:00:43 -0000 Mailing-List: contact axis-dev-help@ws.apache.org; run by ezmlm Precedence: bulk Reply-To: axis-dev@ws.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list axis-dev@ws.apache.org Received: (qmail 32384 invoked by uid 500); 21 Oct 2003 02:00:42 -0000 Delivered-To: apmail-ws-axis-cvs@apache.org Date: 21 Oct 2003 02:01:00 -0000 Message-ID: <20031021020100.80169.qmail@minotaur.apache.org> From: gdaniels@apache.org To: ws-axis-cvs@apache.org Subject: cvs commit: ws-axis/java/src/org/apache/axis/wsdl/fromJava Emitter.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N gdaniels 2003/10/20 19:00:59 Modified: java/src/org/apache/axis/handlers BasicHandler.java java/src/org/apache/axis/message SOAPHeaderElement.java java/src/org/apache/axis/wsdl/fromJava Emitter.java Log: Couple of minor cosmetic changes, add a QName/Object constructor for SOAPHeaderElement. Revision Changes Path 1.43 +7 -7 ws-axis/java/src/org/apache/axis/handlers/BasicHandler.java Index: BasicHandler.java =================================================================== RCS file: /home/cvs/ws-axis/java/src/org/apache/axis/handlers/BasicHandler.java,v retrieving revision 1.42 retrieving revision 1.43 diff -u -r1.42 -r1.43 --- BasicHandler.java 22 Jul 2003 19:35:00 -0000 1.42 +++ BasicHandler.java 21 Oct 2003 02:00:59 -0000 1.43 @@ -103,9 +103,13 @@ } } - /** Stubbed-out methods. Override in your child class to implement - * any real behavior. + /** + * Stubbed-out methods. Override in your child class to implement + * any real behavior. Note that there is NOT a stub for invoke(), since + * we require any Handler derivative to implement that. */ + + public void init() { } @@ -122,11 +126,7 @@ public void onFault(MessageContext msgContext) { } - - /** Must implement this in subclasses. - */ - public abstract void invoke(MessageContext msgContext) throws AxisFault; - + /** * Set the given option (name/value) in this handler's bag of options */ 1.27 +5 -0 ws-axis/java/src/org/apache/axis/message/SOAPHeaderElement.java Index: SOAPHeaderElement.java =================================================================== RCS file: /home/cvs/ws-axis/java/src/org/apache/axis/message/SOAPHeaderElement.java,v retrieving revision 1.26 retrieving revision 1.27 diff -u -r1.26 -r1.27 --- SOAPHeaderElement.java 13 Sep 2003 12:52:13 -0000 1.26 +++ SOAPHeaderElement.java 21 Oct 2003 02:00:59 -0000 1.27 @@ -97,6 +97,11 @@ { super(namespace, localPart, value); } + + public SOAPHeaderElement(QName qname, Object value) + { + super(qname, value); + } public SOAPHeaderElement(Element elem) { 1.102 +0 -1 ws-axis/java/src/org/apache/axis/wsdl/fromJava/Emitter.java Index: Emitter.java =================================================================== RCS file: /home/cvs/ws-axis/java/src/org/apache/axis/wsdl/fromJava/Emitter.java,v retrieving revision 1.101 retrieving revision 1.102 diff -u -r1.101 -r1.102 --- Emitter.java 13 Oct 2003 19:15:39 -0000 1.101 +++ Emitter.java 21 Oct 2003 02:00:59 -0000 1.102 @@ -1411,7 +1411,6 @@ if (use == Use.ENCODED || style == Style.RPC) { // Add the type representing the param - // For convenience, add an element for the param // Write QName typeQName = param.getTypeQName(); if(javaType != null)