use of org.mule.runtime.core.api.util.WildcardAttributeEvaluator in project mule by mulesoft.
the class AbstractRemoveVariablePropertyProcessor method setIdentifier.
public void setIdentifier(String identifier) {
if (StringUtils.isBlank(identifier)) {
throw new IllegalArgumentException("Remove with null identifier is not supported");
}
this.identifierEvaluator = new AttributeEvaluator(identifier, STRING);
this.wildcardAttributeEvaluator = new WildcardAttributeEvaluator(identifier);
}
Aggregations