Package org.fao.geonet.csw.common

Examples of org.fao.geonet.csw.common.ConstraintLanguage


        fill(query, "ElementName", elemName);

        //--- handle constraint

        if (constraint != null) {
            ConstraintLanguage language = ConstraintLanguage.parse(constrLang);
            Element constr = new Element("Constraint", Csw.NAMESPACE_CSW);
            query.addContent(constr);

            if (language == ConstraintLanguage.CQL) {
                addElement(constr, "CqlText", constraint);
View Full Code Here

TOP

Related Classes of org.fao.geonet.csw.common.ConstraintLanguage

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.