📄 xmppmessageadapter.java
字号:
/* * $Id: XmppMessageAdapter.java 10489 2008-01-23 17:53:38Z 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.xmpp;import org.mule.api.MessagingException;import org.mule.api.ThreadSafeAccess;import org.mule.api.transport.MessageTypeNotSupportedException;import org.mule.transport.AbstractMessageAdapter;import org.mule.util.StringUtils;import java.util.Iterator;import org.jivesoftware.smack.packet.Message;import org.jivesoftware.smack.packet.Packet;/** * <code>XmppMessageAdapter</code> wraps a Smack XMPP packet */public class XmppMessageAdapter extends AbstractMessageAdapter{ public static final String DEFAULT_SUBJECT = "(no subject)"; public static final String DEFAULT_THREAD = "(no thread)"; /** * Serial version */ private static final long serialVersionUID = -4003299444661664762L; private final Packet message; public XmppMessageAdapter(Object message) throws MessagingException { if (message instanceof Packet) { this.message = (Packet)message; for (Iterator iter = this.message.getPropertyNames(); iter.hasNext();) { String name = (String)iter.next(); this.setProperty(name, this.message.getProperty(name)); } if (this.message instanceof Message) { this.setProperty("subject", StringUtils.defaultIfEmpty(((Message)this.message).getSubject(), DEFAULT_SUBJECT)); this.setProperty("thread", StringUtils.defaultIfEmpty(((Message)this.message).getThread(), DEFAULT_THREAD)); } } else { throw new MessageTypeNotSupportedException(message, getClass()); } } protected XmppMessageAdapter(XmppMessageAdapter template) { super(template); message = template.message; } /** * Converts the message implementation into a String representation * * @param encoding The encoding to use when transforming the message (if * necessary). The parameter is used when converting from a byte array * @return String representation of the message payload * @throws Exception Implementation may throw an endpoint specific exception */ public String getPayloadAsString(String encoding) throws Exception { if (message instanceof Message) { return ((Message)message).getBody(); } else { return message.toString(); } } public byte[] getPayloadAsBytes() throws Exception { if (message instanceof Message) { return ((Message)message).getBody().getBytes(); } else { return message.toString().getBytes(); } } public Object getPayload() { return message; } // @Override public String getUniqueId() { return message.getPacketID(); } public ThreadSafeAccess newThreadCopy() { return new XmppMessageAdapter(this); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -