Package org.fao.geonet.csw.common

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


  public Element execute(Element request, ServiceContext context) throws CatalogException {
    checkService(request);
    checkVersion(request);
    //-- Added for CSW 2.0.2 compliance by warnock@awcubed.com
    checkOutputFormat(request);
    OutputSchema outSchema = OutputSchema.parse(request.getAttributeValue("outputSchema"));
    //--------------------------------------------------------

    ElementSetName setName = getElementSetName(request, ElementSetName.SUMMARY);

    Element response = new Element(getName() +"Response", Csw.NAMESPACE_CSW);
View Full Code Here


        // one of "hits", "results", "validate" or the GN-specific (invalid) "results_with_summary".
        ResultType resultType = ResultType.parse(request.getAttributeValue("resultType"));

        // either Record or IsoRecord
        OutputSchema outSchema = OutputSchema.parse(request.getAttributeValue("outputSchema"));

        // GeoNetwork-specific parameter defining how to deal with ElementNames. See documentation in
        // SearchController.applyElementNames() about these strategies.
        String elementnameStrategy = getElementNameStrategy(query);
View Full Code Here

TOP

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

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.