blob: 845c0bc7a2c7e2c6a55c4a1bd53319b3b991b433 [file] [log] [blame]
/*
* Portions Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Sun designates this
* particular file as subject to the "Classpath" exception as provided
* by Sun in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*/
package com.sun.xml.internal.ws.server;
import com.sun.xml.internal.ws.pept.encoding.Decoder;
import com.sun.xml.internal.ws.pept.encoding.Encoder;
import com.sun.xml.internal.ws.pept.ept.EPTFactory;
import com.sun.xml.internal.ws.pept.ept.MessageInfo;
import com.sun.xml.internal.ws.pept.presentation.TargetFinder;
import com.sun.xml.internal.ws.pept.protocol.Interceptors;
import com.sun.xml.internal.ws.pept.protocol.MessageDispatcher;
import com.sun.xml.internal.ws.encoding.internal.InternalEncoder;
import com.sun.xml.internal.ws.encoding.soap.SOAPDecoder;
import com.sun.xml.internal.ws.encoding.soap.SOAPEPTFactory;
import com.sun.xml.internal.ws.encoding.soap.SOAPEncoder;
/**
* @author WS Development Team
*/
public class EPTFactoryBase implements EPTFactory, SOAPEPTFactory {
private Encoder encoder;
private Decoder decoder;
private SOAPEncoder soapEncoder;
private SOAPDecoder soapDecoder;
private InternalEncoder internalEncoder;
private TargetFinder targetFinder;
private MessageDispatcher messageDispatcher;
public EPTFactoryBase(Encoder encoder, Decoder decoder,
TargetFinder targetFinder, MessageDispatcher messageDispatcher) {
this.encoder = encoder;
this.decoder = decoder;
this.targetFinder = targetFinder;
this.messageDispatcher = messageDispatcher;
}
public EPTFactoryBase(SOAPEncoder soapEncoder, SOAPDecoder soapDecoder,
InternalEncoder internalEncoder,
TargetFinder targetFinder, MessageDispatcher messageDispatcher) {
this.encoder = null;
this.decoder = null;
this.soapEncoder = soapEncoder;
this.soapDecoder = soapDecoder;
this.internalEncoder = internalEncoder;
this.targetFinder = targetFinder;
this.messageDispatcher = messageDispatcher;
}
public Encoder getEncoder(MessageInfo messageInfo) {
messageInfo.setEncoder(encoder);
return messageInfo.getEncoder();
}
public Decoder getDecoder(MessageInfo messageInfo) {
messageInfo.setDecoder(decoder);
return messageInfo.getDecoder();
}
public TargetFinder getTargetFinder(MessageInfo messageInfo) {
return targetFinder;
}
public MessageDispatcher getMessageDispatcher(MessageInfo messageInfo) {
messageInfo.setMessageDispatcher(messageDispatcher);
return messageDispatcher;
}
/*
* @see EPTFactory#getInterceptors(com.sun.istack.internal.pept.ept.MessageInfo)
*/
public Interceptors getInterceptors(MessageInfo x) {
return null;
}
/*
* @see LogicalEPTFactory#getSoapEncoder()
*/
public SOAPEncoder getSOAPEncoder() {
return soapEncoder;
}
/*
* @see LogicalEPTFactory#getSoapDecoder()
*/
public SOAPDecoder getSOAPDecoder() {
return soapDecoder;
}
public InternalEncoder getInternalEncoder() {
return internalEncoder;
}
}