You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commons-dev@ws.apache.org by th...@apache.org on 2007/01/12 11:49:09 UTC

svn commit: r495542 - /webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMOutputFormat.java

Author: thilina
Date: Fri Jan 12 02:49:08 2007
New Revision: 495542

URL: http://svn.apache.org/viewvc?view=rev&rev=495542
Log:
First step towards giving the user the ability to configure the MIME boundary of the MIME messages

Modified:
    webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMOutputFormat.java

Modified: webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMOutputFormat.java
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMOutputFormat.java?view=diff&rev=495542&r1=495541&r2=495542
==============================================================================
--- webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMOutputFormat.java (original)
+++ webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMOutputFormat.java Fri Jan 12 02:49:08 2007
@@ -33,8 +33,8 @@
     private String mimeBoundary = null;
     private String rootContentId = null;
     private int nextid = 0;
-    private boolean doOptimize;
-    private boolean doingSWA;
+    private boolean doOptimize=false;
+    private boolean doingSWA=false;
     private boolean isSoap11 = true;
 
     /**
@@ -188,4 +188,8 @@
     public void setAutoCloseWriter(boolean autoCloseWriter) {
         this.autoCloseWriter = autoCloseWriter;
     }
+
+	public void setMimeBoundary(String mimeBoundary) {
+		this.mimeBoundary = mimeBoundary;
+	}
 }



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