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

org.opengis.cite.wfs20.nsg.utils.RequestUtils Maven / Gradle / Ivy

package org.opengis.cite.wfs20.nsg.utils;

import org.w3c.dom.Document;
import org.w3c.dom.Element;

/**
 * @author Lyn Goltz 
 */
public class RequestUtils {

    /**
     * Appends the attribute outputFormat with the specified value to the document element.
     * 
     * @param document
     *            to add the attribute, never null
     * @param outputFormat
     *            the value of the attribute, should not be null
     */
    public static void setOutputFormatAttribute( Document document, String outputFormat ) {
        Element docElem = document.getDocumentElement();
        docElem.setAttribute( "outputFormat", outputFormat );
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy