1 /**************************************************************************** 2 * Copyright (c) 2005, 2006, 2007, 2008, 2009 Imola Informatica. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the LGPL License v2.1 5 * which accompanies this distribution, and is available at 6 * http://www.gnu.org/licenses/lgpl.html 7 ****************************************************************************/ 8 package it.imolinfo.jbi4corba.jbi.cxf; 9 10 import org.apache.cxf.interceptor.WrappedOutInterceptor; 11 12 /** 13 * This class is a CXF class extended just to correcly add the Wrapper 14 * management in the interceptor chain BEFORE the Jbi4CorbaBareOutInterceptor. 15 * @author mpiraccini@imolinfo.it 16 */ 17 public class Jbi4CorbaWrappedOutInterceptor extends WrappedOutInterceptor { 18 19 public Jbi4CorbaWrappedOutInterceptor() { 20 super(); 21 addBefore(Jbi4CorbaBareOutInterceptor.class.getName()); 22 } 23 public Jbi4CorbaWrappedOutInterceptor(String phase) { 24 super(phase); 25 addBefore(Jbi4CorbaBareOutInterceptor.class.getName()); 26 } 27 }