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

it.geosolutions.geoserver.rest.encoder.metadatalink.GSMetadataLinkInfoEncoder Maven / Gradle / Ivy

Go to download

GeoServer Manager is a library to interact with GeoServer The scope of this library is to have a simple API, and use as few external libs as possible.

The newest version!
/*
 *  GeoServer-Manager - Simple Manager Library for GeoServer
 *  
 *  Copyright (C) 2007,2011 GeoSolutions S.A.S.
 *  http://www.geo-solutions.it
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
package it.geosolutions.geoserver.rest.encoder.metadatalink;

import it.geosolutions.geoserver.rest.encoder.utils.ElementUtils;
import it.geosolutions.geoserver.rest.encoder.utils.XmlElement;

import org.jdom.Element;
import org.jdom.filter.Filter;

/**
 * GSMetadataLinkEncoder - encodes a metadataLink for a given GeoServer Resource
 * (feature type /coverage), as follows:
 * 
 * {@code
 * final GSMetadataLinkInfoEncoder mde = new GSMetadataLinkInfoEncoder();
 * mde.setType("text/xml");
 * mde.setMetadataType("ISO19115:2003");
 * mde.setContent("http://www.organization.org/metadata");
 * }
 * 
* For this example, the XML output is: *
 * {@code
 * 
 * 	text/xml
 * 	ISO19115:2003
 * 	http://www.organization.org/metadata
 * 
 * }
 * 
* * @author Emmanuel Blondel - [email protected] | * [email protected] * @version $Id: $ */ public class GSMetadataLinkInfoEncoder extends XmlElement { /** A class to filter the MetadataLinkInfo by content * * */ private static class filterByContent implements Filter { final private String key; public filterByContent(String content) { this.key = content; } private static final long serialVersionUID = 1L; public boolean matches(Object obj) { Element el = ((Element) obj) .getChild(ResourceMetadataLinkInfo.content.toString()); if (el != null && el.getTextTrim().equals(key)) { return true; } return false; } } /** * Get a Filter using the MetadataLinkInfo content (metadataURL) * * @param content a {@link java.lang.String} object. * @return the filter */ public static Filter getFilterByContent(String content) { return new filterByContent(content); } /** * Constructs a new GSMetadataLinkInfoEncoder */ public GSMetadataLinkInfoEncoder() { super("metadataLink"); } /** * Constructs quickly a MetadataLink info * * @param type (required) * @param metadataType (required) * @param content (required) */ public GSMetadataLinkInfoEncoder(String type, String metadataType, String content){ super("metadataLink"); this.setup(type, metadataType, content); } /** * Set-up quickly a metadataLinkInfo * * @param type a {@link java.lang.String} object. * @param metadataType a {@link java.lang.String} object. * @param content a {@link java.lang.String} object. */ protected void setup(String type, String metadataType, String content) { set(ResourceMetadataLinkInfo.type.name(), type); set(ResourceMetadataLinkInfo.metadataType.name(), metadataType); set(ResourceMetadataLinkInfo.content.name(), content); } /** * Set a MetadataLinkInfo member (type, metadataType or content) * * @param type a {@link it.geosolutions.geoserver.rest.encoder.metadatalink.ResourceMetadataLinkInfo} object. * @param value a {@link java.lang.String} object. */ protected void setMember(ResourceMetadataLinkInfo type, String value) { set(type.toString(), value); } /** * Set the mime type * * @param type a {@link java.lang.String} object. */ public void setType(String type){ this.setMember(ResourceMetadataLinkInfo.type, type); } /** * Set the metadata type * * @param metadataType a {@link java.lang.String} object. */ public void setMetadataType(String metadataType){ this.setMember(ResourceMetadataLinkInfo.metadataType, metadataType); } /** * Set the content * * @param content a {@link java.lang.String} object. */ public void setContent(String content){ this.setMember(ResourceMetadataLinkInfo.content, content); } /** * Deletes a MetadataLinkInfo member * * @param type a {@link it.geosolutions.geoserver.rest.encoder.metadatalink.ResourceMetadataLinkInfo} object. * @return true if the metadataLinkInfo member is removed */ protected boolean delMember(ResourceMetadataLinkInfo type) { return ElementUtils.remove(this.getRoot(), this.getRoot().getChild(type.toString())); } /** * Deletes the type * * @return true if removed */ public boolean delType(){ return this.delMember(ResourceMetadataLinkInfo.type); } /** * Deletes the metadata type * * @return true if removed */ public boolean delMetadataType(){ return this.delMember(ResourceMetadataLinkInfo.metadataType); } /** * Deletes the content * * @return true if removed */ public boolean delContent(){ return this.delMember(ResourceMetadataLinkInfo.content); } /** * Get the value of the MetadataLinkInfo member * * @param type a {@link it.geosolutions.geoserver.rest.encoder.metadatalink.ResourceMetadataLinkInfo} object. * @return the value of the MetadataLinkInfo member */ protected String getMember(ResourceMetadataLinkInfo type) { Element el = this.getRoot().getChild(type.toString()); if (el != null) return el.getTextTrim(); else return null; } /** * Get the mime type * * @return a {@link java.lang.String} object. */ public String getType(){ return this.getMember(ResourceMetadataLinkInfo.type); } /** * Get the metadata type * * @return a {@link java.lang.String} object. */ public String getMetadataType(){ return this.getMember(ResourceMetadataLinkInfo.metadataType); } /** * Get the content * * @return a {@link java.lang.String} object. */ public String getContent(){ return this.getMember(ResourceMetadataLinkInfo.content); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy