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

org.apache.camel.model.language.XMLTokenizerExpression Maven / Gradle / Ivy

There is a newer version: 4.6.0
Show newest version
/**
 * 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.camel.model.language;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;

import org.apache.camel.CamelContext;
import org.apache.camel.Expression;
import org.apache.camel.Predicate;
import org.apache.camel.language.tokenizer.XMLTokenizeLanguage;
import org.apache.camel.spi.Metadata;

/**
 * To use Camel message body or header with a XML tokenizer in Camel expressions or predicates.
 *
 * @see XMLTokenizeLanguage
 */
@Metadata(firstVersion = "2.14.0", label = "language,core,xml", title = "XML Tokenize")
@XmlRootElement(name = "xtokenize")
@XmlAccessorType(XmlAccessType.FIELD)
public class XMLTokenizerExpression extends NamespaceAwareExpression {
    @XmlAttribute
    private String headerName;
    @XmlAttribute
    private String mode;
    @XmlAttribute
    private Integer group;

    public XMLTokenizerExpression() {
    }

    public XMLTokenizerExpression(String expression) {
        super(expression);
    }

    @Override
    public String getLanguage() {
        return "xtokenize";
    }

    public String getHeaderName() {
        return headerName;
    }

    /**
     * Name of header to tokenize instead of using the message body.
     */
    public void setHeaderName(String headerName) {
        this.headerName = headerName;
    }

    public String getMode() {
        return mode;
    }

    /**
     * The extraction mode. The available extraction modes are:
     * 
    *
  • i - injecting the contextual namespace bindings into the extracted token (default)
  • *
  • w - wrapping the extracted token in its ancestor context
  • *
  • u - unwrapping the extracted token to its child content
  • *
  • t - extracting the text content of the specified element
  • *
*/ public void setMode(String mode) { this.mode = mode; } public Integer getGroup() { return group; } /** * To group N parts together */ public void setGroup(Integer group) { this.group = group; } @Override protected void configureExpression(CamelContext camelContext, Expression expression) { if (headerName != null) { setProperty(expression, "headerName", headerName); } if (mode != null) { setProperty(expression, "mode", mode); } if (group != null) { setProperty(expression, "group", group); } super.configureExpression(camelContext, expression); } @Override protected void configurePredicate(CamelContext camelContext, Predicate predicate) { if (headerName != null) { setProperty(predicate, "headerName", headerName); } if (mode != null) { setProperty(predicate, "mode", mode); } if (group != null) { setProperty(predicate, "group", group); } super.configurePredicate(camelContext, predicate); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy