You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by ff...@apache.org on 2009/08/17 04:24:21 UTC

svn commit: r804826 - in /servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/main/java/org/apache/servicemix/cxfbc/interceptors: SchemaValidationInInterceptor.java SchemaValidationOutInterceptor.java

Author: ffang
Date: Mon Aug 17 02:24:21 2009
New Revision: 804826

URL: http://svn.apache.org/viewvc?rev=804826&view=rev
Log:
[SMXCOMP-616]add defaulut construnctor for SchemaValidationIn/OutInterceptor

Modified:
    servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/main/java/org/apache/servicemix/cxfbc/interceptors/SchemaValidationInInterceptor.java
    servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/main/java/org/apache/servicemix/cxfbc/interceptors/SchemaValidationOutInterceptor.java

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/main/java/org/apache/servicemix/cxfbc/interceptors/SchemaValidationInInterceptor.java
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/main/java/org/apache/servicemix/cxfbc/interceptors/SchemaValidationInInterceptor.java?rev=804826&r1=804825&r2=804826&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/main/java/org/apache/servicemix/cxfbc/interceptors/SchemaValidationInInterceptor.java (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/main/java/org/apache/servicemix/cxfbc/interceptors/SchemaValidationInInterceptor.java Mon Aug 17 02:24:21 2009
@@ -25,6 +25,10 @@
 
 public class SchemaValidationInInterceptor extends AbstractSchemaValidationInterceptor {
 
+    public SchemaValidationInInterceptor() {
+        this(true, false);
+    }
+
     public SchemaValidationInInterceptor(boolean useJBIWrapper, boolean useSOAPEnvelope) {
         super(Phase.PRE_INVOKE, useJBIWrapper, useSOAPEnvelope);
         addAfter(JbiInWsdl1Interceptor.class.getName());

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/main/java/org/apache/servicemix/cxfbc/interceptors/SchemaValidationOutInterceptor.java
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/main/java/org/apache/servicemix/cxfbc/interceptors/SchemaValidationOutInterceptor.java?rev=804826&r1=804825&r2=804826&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/main/java/org/apache/servicemix/cxfbc/interceptors/SchemaValidationOutInterceptor.java (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/main/java/org/apache/servicemix/cxfbc/interceptors/SchemaValidationOutInterceptor.java Mon Aug 17 02:24:21 2009
@@ -26,6 +26,10 @@
 
 public class SchemaValidationOutInterceptor extends AbstractSchemaValidationInterceptor {
 
+    public SchemaValidationOutInterceptor() {
+        this(true, false);
+    }
+
     public SchemaValidationOutInterceptor(boolean useJBIWrapper, boolean useSOAPEnvelope) {
         super(Phase.PRE_STREAM, useJBIWrapper, useSOAPEnvelope);
         addBefore(JbiOutInterceptor.class.getName());