Author: dkulp
Date: Fri Apr 6 16:14:24 2012
New Revision: 1310438
URL: http://svn.apache.org/viewvc?rev=1310438&view=rev
Log:
Convert to native style line feeds in git
Modified:
cxf/trunk/rt/core/src/main/java/org/apache/cxf/transport/common/gzip/GZIPFeature.java
Modified:
cxf/trunk/rt/core/src/main/java/org/apache/cxf/transport/common/gzip/GZIPFeature.java
URL:
http://svn.apache.org/viewvc/cxf/trunk/rt/core/src/main/java/org/apache/cxf/transport/common/gzip/GZIPFeature.java?rev=1310438&r1=1310437&r2=1310438&view=diff
==============================================================================
---
cxf/trunk/rt/core/src/main/java/org/apache/cxf/transport/common/gzip/GZIPFeature.java
(original)
+++
cxf/trunk/rt/core/src/main/java/org/apache/cxf/transport/common/gzip/GZIPFeature.java
Fri Apr 6 16:14:24 2012
@@ -1,93 +1,93 @@
-/**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.apache.cxf.transport.common.gzip;
-
-import java.util.List;
-
-import org.apache.cxf.Bus;
-import org.apache.cxf.common.injection.NoJSR250Annotations;
-import org.apache.cxf.feature.AbstractFeature;
-import org.apache.cxf.interceptor.Interceptor;
-import org.apache.cxf.interceptor.InterceptorProvider;
-import org.apache.cxf.message.Message;
-
-/**
- * This class is used to control GZIP compression of messages.
- * Attaching this feature to an endpoint will allow the endpoint to handle
- * compressed requests, and will cause outgoing responses to be compressed if
- * the client indicates (via the Accept-Encoding header) that it can handle
- * them.
- * <pre>
- * <![CDATA[
- * <jaxws:endpoint ...>
- * <jaxws:features>
- * <bean class="org.apache.cxf.transport.common.gzip.GZIPFeature"/>
- * </jaxws:features>
- * </jaxws:endpoint>
- * ]]>
- * </pre>
- * Attaching this feature to a client will cause outgoing request messages
- * to be compressed and incoming compressed responses to be uncompressed.
- * Accept-Encoding header is sent to let the service know
- * that your client can accept compressed responses.
- */
-@NoJSR250Annotations
-public class GZIPFeature extends AbstractFeature {
- private static final GZIPInInterceptor IN = new GZIPInInterceptor();
- private static final GZIPOutInterceptor OUT = new GZIPOutInterceptor();
-
- /**
- * The compression threshold to pass to the outgoing interceptor.
- */
- int threshold = -1;
-
- @Override
- protected void initializeProvider(InterceptorProvider provider, Bus bus) {
- provider.getInInterceptors().add(IN);
- if (threshold == -1) {
- provider.getOutInterceptors().add(OUT);
- provider.getOutFaultInterceptors().add(OUT);
- } else {
- GZIPOutInterceptor out = new GZIPOutInterceptor();
- out.setThreshold(threshold);
- remove(provider.getOutInterceptors());
- remove(provider.getOutFaultInterceptors());
- provider.getOutInterceptors().add(out);
- provider.getOutFaultInterceptors().add(out);
- }
- }
-
- private void remove(List<Interceptor<? extends Message>> outInterceptors) {
- int x = outInterceptors.size();
- while (x > 0) {
- --x;
- if (outInterceptors.get(x) instanceof GZIPOutInterceptor) {
- outInterceptors.remove(x);
- }
- }
- }
-
- public void setThreshold(int threshold) {
- this.threshold = threshold;
- }
-
- public int getThreshold() {
- return threshold;
- }
-}
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.cxf.transport.common.gzip;
+
+import java.util.List;
+
+import org.apache.cxf.Bus;
+import org.apache.cxf.common.injection.NoJSR250Annotations;
+import org.apache.cxf.feature.AbstractFeature;
+import org.apache.cxf.interceptor.Interceptor;
+import org.apache.cxf.interceptor.InterceptorProvider;
+import org.apache.cxf.message.Message;
+
+/**
+ * This class is used to control GZIP compression of messages.
+ * Attaching this feature to an endpoint will allow the endpoint to handle
+ * compressed requests, and will cause outgoing responses to be compressed if
+ * the client indicates (via the Accept-Encoding header) that it can handle
+ * them.
+ * <pre>
+ * <![CDATA[
+ * <jaxws:endpoint ...>
+ * <jaxws:features>
+ * <bean class="org.apache.cxf.transport.common.gzip.GZIPFeature"/>
+ * </jaxws:features>
+ * </jaxws:endpoint>
+ * ]]>
+ * </pre>
+ * Attaching this feature to a client will cause outgoing request messages
+ * to be compressed and incoming compressed responses to be uncompressed.
+ * Accept-Encoding header is sent to let the service know
+ * that your client can accept compressed responses.
+ */
+@NoJSR250Annotations
+public class GZIPFeature extends AbstractFeature {
+ private static final GZIPInInterceptor IN = new GZIPInInterceptor();
+ private static final GZIPOutInterceptor OUT = new GZIPOutInterceptor();
+
+ /**
+ * The compression threshold to pass to the outgoing interceptor.
+ */
+ int threshold = -1;
+
+ @Override
+ protected void initializeProvider(InterceptorProvider provider, Bus bus) {
+ provider.getInInterceptors().add(IN);
+ if (threshold == -1) {
+ provider.getOutInterceptors().add(OUT);
+ provider.getOutFaultInterceptors().add(OUT);
+ } else {
+ GZIPOutInterceptor out = new GZIPOutInterceptor();
+ out.setThreshold(threshold);
+ remove(provider.getOutInterceptors());
+ remove(provider.getOutFaultInterceptors());
+ provider.getOutInterceptors().add(out);
+ provider.getOutFaultInterceptors().add(out);
+ }
+ }
+
+ private void remove(List<Interceptor<? extends Message>> outInterceptors) {
+ int x = outInterceptors.size();
+ while (x > 0) {
+ --x;
+ if (outInterceptors.get(x) instanceof GZIPOutInterceptor) {
+ outInterceptors.remove(x);
+ }
+ }
+ }
+
+ public void setThreshold(int threshold) {
+ this.threshold = threshold;
+ }
+
+ public int getThreshold() {
+ return threshold;
+ }
+}