/*
* $Id: ByteArrayToMuleMessage.java 10802 2008-02-14 11:39:16Z holger $
* --------------------------------------------------------------------------------------
* 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.transformer.simple;
import org.mule.api.MuleMessage;
/** TODO */
public class ByteArrayToMuleMessage extends ByteArrayToSerializable
{
public ByteArrayToMuleMessage()
{
super();
setReturnClass(MuleMessage.class);
}
}
|