muleuniversaldestination.java

来自「提供ESB 应用mule源代码 提供ESB 应用mule源代码」· Java 代码 · 共 111 行

JAVA
111
字号
/* * $Id: MuleUniversalDestination.java 11967 2008-06-05 20:32:19Z dfeist $ * -------------------------------------------------------------------------------------- * Copyright (c) MuleSource, Inc.  All rights reserved.  http://www.mulesource.com * * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */package org.mule.transport.cxf.transport;import org.mule.transport.cxf.support.DelegatingOutputStream;import java.io.ByteArrayOutputStream;import java.io.IOException;import java.io.OutputStream;import java.net.HttpURLConnection;import java.util.logging.Logger;import org.apache.cxf.message.Message;import org.apache.cxf.service.model.EndpointInfo;import org.apache.cxf.transport.AbstractConduit;import org.apache.cxf.transport.AbstractDestination;import org.apache.cxf.transport.Conduit;import org.apache.cxf.transport.ConduitInitiator;import org.apache.cxf.ws.addressing.EndpointReferenceType;public class MuleUniversalDestination extends AbstractDestination{    public static final String RESPONSE_OBSERVER = "mule.destination.response.observer";    private static final Logger LOGGER = Logger.getLogger(MuleUniversalDestination.class.getName());    private MuleUniversalTransport transport;    public MuleUniversalDestination(MuleUniversalTransport transport,                                    EndpointReferenceType ref,                                    EndpointInfo ei)    {        super(ref, ei);         this.transport = transport;    }    @Override    protected Conduit getInbuiltBackChannel(Message inMessage)    {        return new ResponseConduit(null);    }    @Override    protected Logger getLogger()    {        return LOGGER;    }    @Override    public void shutdown()    {        transport.remove(this);        super.shutdown();    }    @Override    protected boolean markPartialResponse(Message partialResponse, EndpointReferenceType decoupledTarget)    {        // setup the outbound message to for 202 Accepted        partialResponse.put(Message.RESPONSE_CODE, HttpURLConnection.HTTP_ACCEPTED);        partialResponse.getExchange().put(EndpointReferenceType.class, decoupledTarget);        return true;    }    /**     * @return the associated conduit initiator, or null if decoupled mode not     *         supported.     */    @Override    protected ConduitInitiator getConduitInitiator()    {        return transport;    }    public class ResponseConduit extends AbstractConduit    {        public ResponseConduit(EndpointReferenceType arg0)        {            super(arg0);        }        public void prepare(Message message) throws IOException {            // set an outputstream which will be used for things like attachment headers.            // we'll stream the body later on down the line via the OutputHandler in CxfServiceComponent            message.setContent(OutputStream.class, new DelegatingOutputStream(new ByteArrayOutputStream()));        }        @Override        public void close(Message message) throws IOException        {            message.getContent(OutputStream.class).close();        }        @Override        protected Logger getLogger()        {            return LOGGER;        }    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?