You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2007/10/10 21:34:38 UTC

svn commit: r583591 - in /incubator/cxf/branches/2.0.x-fixes: ./ rt/core/src/main/java/org/apache/cxf/feature/ rt/core/src/main/java/org/apache/cxf/interceptor/ rt/core/src/main/resources/schemas/

Author: dkulp
Date: Wed Oct 10 12:34:37 2007
New Revision: 583591

URL: http://svn.apache.org/viewvc?rev=583591&view=rev
Log:
Merged revisions 583590 via svnmerge from 
https://svn.apache.org/repos/asf/incubator/cxf/trunk

........
  r583590 | dkulp | 2007-10-10 15:32:45 -0400 (Wed, 10 Oct 2007) | 2 lines
  
  Fix typo in schema, change name of configurable limit attribute for loggers
........

Modified:
    incubator/cxf/branches/2.0.x-fixes/   (props changed)
    incubator/cxf/branches/2.0.x-fixes/rt/core/src/main/java/org/apache/cxf/feature/LoggingFeature.java
    incubator/cxf/branches/2.0.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/LoggingInInterceptor.java
    incubator/cxf/branches/2.0.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/LoggingOutInterceptor.java
    incubator/cxf/branches/2.0.x-fixes/rt/core/src/main/resources/schemas/core.xsd

Propchange: incubator/cxf/branches/2.0.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: incubator/cxf/branches/2.0.x-fixes/rt/core/src/main/java/org/apache/cxf/feature/LoggingFeature.java
URL: http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/rt/core/src/main/java/org/apache/cxf/feature/LoggingFeature.java?rev=583591&r1=583590&r2=583591&view=diff
==============================================================================
--- incubator/cxf/branches/2.0.x-fixes/rt/core/src/main/java/org/apache/cxf/feature/LoggingFeature.java (original)
+++ incubator/cxf/branches/2.0.x-fixes/rt/core/src/main/java/org/apache/cxf/feature/LoggingFeature.java Wed Oct 10 12:34:37 2007
@@ -47,11 +47,11 @@
         }
     }
 
-    public void setLoggingLimit(int lim) {
+    public void setLimit(int lim) {
         limit = lim;
     }
     
-    public int getLoggingLimit() {
+    public int getLimit() {
         return limit;
     }    
 }

Modified: incubator/cxf/branches/2.0.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/LoggingInInterceptor.java
URL: http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/LoggingInInterceptor.java?rev=583591&r1=583590&r2=583591&view=diff
==============================================================================
--- incubator/cxf/branches/2.0.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/LoggingInInterceptor.java (original)
+++ incubator/cxf/branches/2.0.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/LoggingInInterceptor.java Wed Oct 10 12:34:37 2007
@@ -47,11 +47,11 @@
         super(Phase.RECEIVE);
         limit = lim;
     }
-    public void setLoggingLimit(int lim) {
+    public void setLimit(int lim) {
         limit = lim;
     }
     
-    public int getLoggingLimit() {
+    public int getLimit() {
         return limit;
     }    
 

Modified: incubator/cxf/branches/2.0.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/LoggingOutInterceptor.java
URL: http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/LoggingOutInterceptor.java?rev=583591&r1=583590&r2=583591&view=diff
==============================================================================
--- incubator/cxf/branches/2.0.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/LoggingOutInterceptor.java (original)
+++ incubator/cxf/branches/2.0.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/LoggingOutInterceptor.java Wed Oct 10 12:34:37 2007
@@ -50,11 +50,11 @@
         limit = lim;
     }
     
-    public void setLoggingLimit(int lim) {
+    public void setLimit(int lim) {
         limit = lim;
     }
     
-    public int getLoggingLimit() {
+    public int getLimit() {
         return limit;
     }    
 

Modified: incubator/cxf/branches/2.0.x-fixes/rt/core/src/main/resources/schemas/core.xsd
URL: http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/rt/core/src/main/resources/schemas/core.xsd?rev=583591&r1=583590&r2=583591&view=diff
==============================================================================
--- incubator/cxf/branches/2.0.x-fixes/rt/core/src/main/resources/schemas/core.xsd (original)
+++ incubator/cxf/branches/2.0.x-fixes/rt/core/src/main/resources/schemas/core.xsd Wed Oct 10 12:34:37 2007
@@ -45,7 +45,7 @@
     </xsd:annotation>
     <xsd:complexType>
       <xsd:sequence />
-      <xs:attribute name="limit" type="xsd:int" use="optional" default="102400"/>
+      <xsd:attribute name="limit" type="xsd:int" use="optional" default="102400"/>
     </xsd:complexType>
   </xsd:element>