All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mule.expression.AttachmentExpressionEnricher Maven / Gradle / Ivy

There is a newer version: 3.9.0
Show newest version
/*
 * $Id: AttachmentExpressionEnricher.java 23930 2012-03-01 15:30:56Z pablo.lagreca $
 * --------------------------------------------------------------------------------------
 * 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.expression;

import javax.activation.DataHandler;

import java.text.MessageFormat;

import org.mule.api.MuleException;
import org.mule.api.MuleMessage;
import org.mule.api.MuleRuntimeException;
import org.mule.api.expression.ExpressionEnricher;
import org.mule.api.transport.PropertyScope;
import org.mule.config.i18n.CoreMessages;

public class AttachmentExpressionEnricher implements ExpressionEnricher
{

    public static final String NAME = "attachment";

    public void enrich(String expression, MuleMessage message, Object object)
    {
        if (object instanceof DataHandler)
        {
            try
            {
                message.addOutboundAttachment(expression, (DataHandler) object);
            } catch (Exception e)
            {
                throw new MuleRuntimeException(e);
            }
        }
        else
        {
            String[] split = expression.split(ExpressionConstants.DELIM);
            if (split.length < 2)
            {
                throw new MuleRuntimeException(CoreMessages.createStaticMessage(MessageFormat.format("attachment enrichment expression {0} does not declare a content type",expression)));
            }
            String attachmentName = split[0];
            String contentType = split[1];
            try
            {
                message.addOutboundAttachment(attachmentName,object,contentType);
            }
            catch (Exception e)
            {
                throw new MuleRuntimeException(CoreMessages.createStaticMessage("failed to set attachment"));
            }
        }
    }

    public String getName()
    {
        return NAME;
    }

    public void setName(String name)
    {
        throw new UnsupportedOperationException();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy