Package org.apache.synapse.mediators.builtin

Source Code of org.apache.synapse.mediators.builtin.PropertyMediator

/*
*  Licensed to the Apache Software Foundation (ASF) under one
*  or more contributor license agreements.  See the NOTICE file
*  distributed with this work for additional information
*  regarding copyright ownership.  The ASF licenses this file
*  to you under the Apache License, Version 2.0 (the
*  "License"); you may not use this file except in compliance
*  with the License.  You may obtain a copy of the License at
*
*   http://www.apache.org/licenses/LICENSE-2.0
*
*  Unless required by applicable law or agreed to in writing,
*  software distributed under the License is distributed on an
*   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
*  KIND, either express or implied.  See the License for the
*  specific language governing permissions and limitations
*  under the License.
*/

package org.apache.synapse.mediators.builtin;

import org.apache.axiom.om.xpath.AXIOMXPath;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.synapse.MessageContext;
import org.apache.synapse.Constants;
import org.apache.synapse.SynapseException;
import org.apache.synapse.core.axis2.Axis2MessageContext;
import org.apache.synapse.mediators.AbstractMediator;

/**
* The property mediator would save a named property as a local property
* of the Synapse Message Context. Properties set this way could be
* extracted through the XPath extension function "synapse:get-property(prop-name)"
*/
public class PropertyMediator extends AbstractMediator {

    private String name = null;
    private String value = null;
    private AXIOMXPath expression = null;
    private String scope = null;

    private static final Log log = LogFactory.getLog(PropertyMediator.class);
    private static final Log trace = LogFactory.getLog(Constants.TRACE_LOGGER);

    /**
     * Sets a property into the current (local) Synapse Context
     * @param smc the message context
     * @return true always
     */
    public boolean mediate(MessageContext smc) {
        log.debug("Set-Property mediator :: mediate()");
        boolean shouldTrace = shouldTrace(smc.getTracingState());
        if (shouldTrace) {
            trace.trace("Start : Property mediator");
        }

        String value = (getValue() != null ? getValue() : Axis2MessageContext.getStringValue(getExpression(), smc));
        log.debug("Setting property : " + getName() +
            " (scope:" + (scope == null ? "default" : scope) + ") = " + value);
        if (shouldTrace) {
            trace.trace("Property Name : " + getName() +
                " (scope:" + (scope == null ? "default" : scope) + ") set to " +
                (getValue() != null ? " value = " + getValue() :
                    " result of expression " + getExpression() + " = " + value));
        }

        if (scope == null) {
            smc.setProperty(getName(), value);

        } else if(Constants.SCOPE_CORRELATE.equals(getScope())) {
            smc.setCorrelationProperty(getName(), value);

        } else if (Constants.SCOPE_AXIS2.equals(getScope()) && smc instanceof Axis2MessageContext) {
            Axis2MessageContext axis2smc = (Axis2MessageContext) smc;
            org.apache.axis2.context.MessageContext axis2MessageCtx =
                axis2smc.getAxis2MessageContext();
            axis2MessageCtx.getConfigurationContext().setProperty(getName(), value);

        } else {
            String msg = "Unsupported scope : " + scope + " for set-property mediator";
            log.error(msg);
            throw new SynapseException(msg);
        }

        if (shouldTrace) {
            trace.trace("End : Property mediator");
        }
        return true;
    }

    public String getName() {
        return name;
    }

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

    public String getValue() {
        return value;
    }

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

    public AXIOMXPath getExpression() {
        return expression;
    }

    public void setExpression(AXIOMXPath expression) {
        this.expression = expression;
    }
   
    public String getScope() {
      return scope;
    }
   
    public void setScope(String scope) {
      this.scope = scope;
    }
}
TOP

Related Classes of org.apache.synapse.mediators.builtin.PropertyMediator

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.