/* * Copyright 2003 Federal Chancellery Austria * * Licensed 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 at.gv.egovernment.moa.spss.api.impl; import java.util.HashMap; import java.util.Map; import at.gv.egovernment.moa.spss.api.common.XPathFilter; /** * Default implementation of XPathFilter. * * @author Fatemeh Philippi * @version $Id$ */ public class XPathFilterImpl implements XPathFilter { /** The type of filter. */ private String filterType; /** The XPath expression of the filter. */ private String xPathExpression; /** The namespace prefix to URI mapping to while evaluating the XPath * expression. */ private Map namespaceDeclarations = new HashMap(); /** * Sets the type of filter. * * @param filterType The type of filter. */ public void setFilterType(String filterType) { this.filterType = filterType; } public String getFilterType() { return filterType; } /** * Sets the XPath expression of the filter. * * @param xPathExpression The XPath expression of the filter. */ public void setXPathExpression(String xPathExpression) { this.xPathExpression = xPathExpression; } public String getXPathExpression() { return xPathExpression; } /** * Sets the namespace prefix to URI mapping to while evaluating the XPath * expression. * * @param namespaceDeclarations The namespace prefix to URI mapping to while * evaluating the XPath expression. */ public void setNamespaceDelcarations(Map namespaceDeclarations) { this.namespaceDeclarations = namespaceDeclarations; } public Map getNamespaceDeclarations() { return namespaceDeclarations; } }