⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 messageadapter.vm

📁 提供ESB 应用mule源代码 提供ESB 应用mule源代码
💻 VM
字号:
/* * $Id$ * -------------------------------------------------------------------------------------- * 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.${TransportNameLower};import org.mule.api.MessagingException;import org.mule.transport.AbstractMessageAdapter;/** * <code>${TransportName}MessageAdapter</code> TODO document */public class ${TransportName}MessageAdapter extends AbstractMessageAdapter{     /* For general guidelines on writing transports see       http://mule.mulesource.org/display/MULE/Writing+Transports */    /* IMPLEMENTATION NOTE: The MessageAdapter is used to wrap an underlying       message. It should store a copy of the underlying message as an       instance variable. */    /* IMPLEMENTATION NOTE: If the underlying transport data is available as a stream        it is recommended that you pass the stream object into the MessageAdapter as the payload.        This will ensure that Mule will use streaming where possible. */        public ${TransportName}MessageAdapter(Object message) throws MessagingException    {        /* IMPLEMENTATION NOTE: The constructor should determine that the           message is of the correct type or throw an exception i.e.                if (message instanceof byte[]) {            this.message = (byte[]) message;        } else {            throw new MessageTypeNotSupportedException(message, getClass());        }        */    }    public String getPayloadAsString(String encoding) throws Exception    {        // TODO return the string representation of the wrapped message        throw new UnsupportedOperationException("getPayloadAsString");    }    public byte[] getPayloadAsBytes() throws Exception    {        // TODO return the byte[] representation of the wrapped message        throw new UnsupportedOperationException("getPayloadAsBytes");    }    public Object getPayload()    {        // TODO return the actual wrapped message        throw new UnsupportedOperationException("getPayload");    }}

⌨️ 快捷键说明

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