You are viewing a plain text version of this content. The canonical link for it is here.
Posted to muse-commits@ws.apache.org by da...@apache.org on 2006/12/09 21:47:58 UTC

svn commit: r485058 - /webservices/muse/trunk/modules/muse-platform-axis2/src/org/apache/muse/core/platform/axis2/AxisEnvironment.java

Author: danj
Date: Sat Dec  9 12:47:56 2006
New Revision: 485058

URL: http://svn.apache.org/viewvc?view=rev&rev=485058
Log:
Fix for MUSE-139

Modified:
    webservices/muse/trunk/modules/muse-platform-axis2/src/org/apache/muse/core/platform/axis2/AxisEnvironment.java

Modified: webservices/muse/trunk/modules/muse-platform-axis2/src/org/apache/muse/core/platform/axis2/AxisEnvironment.java
URL: http://svn.apache.org/viewvc/webservices/muse/trunk/modules/muse-platform-axis2/src/org/apache/muse/core/platform/axis2/AxisEnvironment.java?view=diff&rev=485058&r1=485057&r2=485058
==============================================================================
--- webservices/muse/trunk/modules/muse-platform-axis2/src/org/apache/muse/core/platform/axis2/AxisEnvironment.java (original)
+++ webservices/muse/trunk/modules/muse-platform-axis2/src/org/apache/muse/core/platform/axis2/AxisEnvironment.java Sat Dec  9 12:47:56 2006
@@ -68,7 +68,7 @@
      * adoption of something like JSR-261 or some WS-A project in Apache Commons.
      *
      */
-    public static MessageHeaders convertContext()
+    public MessageHeaders convertContext()
     {
         MessageContext context = MessageContext.getCurrentMessageContext();
         SOAPHeader axiom = context.getEnvelope().getHeader();
@@ -92,7 +92,7 @@
      * adoption of something like JSR-261 or some WS-A project in Apache Commons.
      *
      */
-    public static EndpointReference convertEPR(org.apache.axis2.addressing.EndpointReference axisEPR)
+    public EndpointReference convertEPR(org.apache.axis2.addressing.EndpointReference axisEPR)
     {
         URI address = URI.create(axisEPR.getAddress());
         EndpointReference epr = new EndpointReference(address);
@@ -119,7 +119,7 @@
      * the Axiom API, which is similar but... different.
      *
      */
-    public static OMElement convertToAxiom(Element xml)
+    public OMElement convertToAxiom(Element xml)
     {
         String xmlString = XmlUtils.toString(xml, false);
         byte[] xmlBytes = xmlString.getBytes();
@@ -144,7 +144,7 @@
      * the Axiom API, which is similar but... different.
      *
      */
-    public static Element convertToDOM(OMElement axiom)
+    public Element convertToDOM(OMElement axiom)
     {
         Element dom = XmlUtils.createElement(axiom.getQName());
 



---------------------------------------------------------------------
To unsubscribe, e-mail: muse-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: muse-commits-help@ws.apache.org