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

org.mule.module.http.internal.HttpSingleParam Maven / Gradle / Ivy

/*
 * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.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.module.http.internal;

import org.mule.api.MuleContext;
import org.mule.api.MuleEvent;
import org.mule.api.context.MuleContextAware;
import org.mule.api.lifecycle.Initialisable;
import org.mule.api.lifecycle.InitialisationException;
import org.mule.module.http.internal.HttpParam;
import org.mule.module.http.internal.HttpParamType;
import org.mule.module.http.internal.ParameterMap;
import org.mule.util.AttributeEvaluator;

public class HttpSingleParam extends HttpParam implements Initialisable, MuleContextAware
{

    private AttributeEvaluator name;
    private AttributeEvaluator value;

    private MuleContext muleContext;

    public HttpSingleParam(HttpParamType type)
    {
        super(type);
    }

    @Override
    public void setMuleContext(MuleContext muleContext)
    {
        this.muleContext = muleContext;
    }

    @Override
    public void initialise() throws InitialisationException
    {
        name.initialize(muleContext.getExpressionManager());
        value.initialize(muleContext.getExpressionManager());
    }

    @Override
    public void resolve(ParameterMap parameterMap, MuleEvent muleEvent)
    {
        parameterMap.put(name.resolveStringValue(muleEvent), value.resolveStringValue(muleEvent));
    }

    public void setName(String name)
    {
        this.name = new AttributeEvaluator(name);
    }

    public void setValue(String value)
    {
        this.value = new AttributeEvaluator(value);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy