Package org.apache.camel.model
Class PropertyExpressionDefinition
- java.lang.Object
-
- org.apache.camel.model.PropertyExpressionDefinition
-
@Metadata(label="configuration") public class PropertyExpressionDefinition extends Object
A key value pair where the value is an expression.- See Also:
PropertyDefinition
-
-
Constructor Summary
Constructors Constructor Description PropertyExpressionDefinition()PropertyExpressionDefinition(String key, org.apache.camel.Expression expression)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ExpressionDefinitiongetExpression()StringgetKey()voidsetExpression(ExpressionDefinition expression)Property values as an expressionvoidsetKey(String key)Property key
-
-
-
Constructor Detail
-
PropertyExpressionDefinition
public PropertyExpressionDefinition()
-
PropertyExpressionDefinition
public PropertyExpressionDefinition(String key, org.apache.camel.Expression expression)
-
-
Method Detail
-
setKey
public void setKey(String key)
Property key
-
getKey
public String getKey()
-
getExpression
public ExpressionDefinition getExpression()
-
setExpression
public void setExpression(ExpressionDefinition expression)
Property values as an expression
-
-