All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.cxf.ext.logging.LoggingFeature Maven / Gradle / Ivy

There is a newer version: 4.0.5
Show newest version
/**
 * 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.ext.logging;

import org.apache.cxf.Bus;
import org.apache.cxf.annotations.Provider;
import org.apache.cxf.annotations.Provider.Type;
import org.apache.cxf.common.injection.NoJSR250Annotations;
import org.apache.cxf.ext.logging.event.LogEventSender;
import org.apache.cxf.ext.logging.event.PrettyLoggingFilter;
import org.apache.cxf.ext.logging.slf4j.Slf4jEventSender;
import org.apache.cxf.ext.logging.slf4j.Slf4jVerboseEventSender;
import org.apache.cxf.feature.AbstractFeature;
import org.apache.cxf.interceptor.InterceptorProvider;

/**
 * This class is used to control message-on-the-wire logging. 
 * By attaching this feature to an endpoint, you
 * can specify logging. If this feature is present, an endpoint will log input
 * and output of ordinary and log messages.
 * 
 * 
      
       
      
    
  ]]>
  
*/ @NoJSR250Annotations @Provider(value = Type.Feature) public class LoggingFeature extends AbstractFeature { private LogEventSender sender; private LoggingInInterceptor in; private LoggingOutInterceptor out; private PrettyLoggingFilter prettyFilter; public LoggingFeature() { this.sender = new Slf4jVerboseEventSender(); prettyFilter = new PrettyLoggingFilter(sender); in = new LoggingInInterceptor(prettyFilter); out = new LoggingOutInterceptor(prettyFilter); } @Override protected void initializeProvider(InterceptorProvider provider, Bus bus) { provider.getInInterceptors().add(in); provider.getInFaultInterceptors().add(in); provider.getOutInterceptors().add(out); provider.getOutFaultInterceptors().add(out); } public void setLimit(int limit) { in.setLimit(limit); out.setLimit(limit); } public void setInMemThreshold(long inMemThreshold) { in.setInMemThreshold(inMemThreshold); out.setInMemThreshold(inMemThreshold); } public void setSender(LogEventSender sender) { this.prettyFilter.setNext(sender); } public void setPrettyLogging(boolean prettyLogging) { this.prettyFilter.setPrettyLogging(prettyLogging); } /** * Log binary content? * @param logBinary defaults to false */ public void setLogBinary(boolean logBinary) { in.setLogBinary(logBinary); out.setLogBinary(logBinary); } /** * Log multipart content? * @param logMultipart defaults to true */ public void setLogMultipart(boolean logMultipart) { in.setLogMultipart(logMultipart); out.setLogMultipart(logMultipart); } public void setVerbose(boolean verbose) { this.sender = verbose ? new Slf4jVerboseEventSender() : new Slf4jEventSender(); this.prettyFilter.setNext(sender); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy