1 17 package org.apache.servicemix.components.mps; 18 19 import javax.jbi.JBIException; 20 import javax.jbi.messaging.NormalizedMessage; 21 22 23 public class StaticStringPropertyValue implements PropertyValue { 24 25 28 public final static String XML_ELEMENT_NAME = "static-value"; 29 30 33 private String staticValue; 34 35 39 public StaticStringPropertyValue(String staticValue) { 40 this.staticValue = staticValue; 41 } 42 43 46 public String getPropertyValue(NormalizedMessage msg) throws JBIException { 47 return staticValue; 48 } 49 50 } 51 | Popular Tags |