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

buri.ddmsence.ddms.summary.tspi.Envelope Maven / Gradle / Ivy

Go to download

DDMSence (pronounced "dee-dee-em-Essence") is the only open-source Java library that fully supports the DoD Discovery Metadata Specification (DDMS).

The newest version!
/* Copyright 2010 - 2013 by Brian Uri!
   
   This file is part of DDMSence.
   
   This library is free software; you can redistribute it and/or modify
   it under the terms of version 3.0 of the GNU Lesser General Public 
   License as published by the Free Software Foundation.
   
   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
   GNU Lesser General Public License for more details.
   
   You should have received a copy of the GNU Lesser General Public 
   License along with DDMSence. If not, see .

   You can contact the author at [email protected]. The DDMSence
   home page is located at http://ddmsence.urizone.net/
 */
package buri.ddmsence.ddms.summary.tspi;

import nu.xom.Element;
import buri.ddmsence.AbstractBaseComponent;
import buri.ddmsence.AbstractTspiShape;
import buri.ddmsence.ddms.IBuilder;
import buri.ddmsence.ddms.InvalidDDMSException;
import buri.ddmsence.util.DDMSVersion;
import buri.ddmsence.util.Util;

/**
 * An immutable implementation of tspi:Envelope.
 * 

* {@ddms.versions 00001} * *

For the initial support of DDMS 5.0 TSPI shapes, the DDMSence component will only return the raw XML of * a shape. The TSPI specification is incredibly complex and multi-layered, and it is unclear how much * value full-fledged classes would have. As use cases refine and more organizations adopt DDMS 5.0, the components * can be revisited to provide more value-add.

* * {@table.header History} * None. * {@table.footer} * {@table.header Nested Elements} * None. * {@table.footer} * {@table.header Attributes} * {@child.info gml:id|1|00001} * {@child.info <srsAttributes>|0..*|00001} * {@table.footer} * {@table.header Validation Rules} * {@ddms.rule Component must not be used before the DDMS version in which it was introduced.|Error|11111} * {@ddms.rule The qualified name of this element must be correct.|Error|11111} * {@ddms.rule The srsName must exist.|Error|11111} * {@ddms.rule The gml:id must exist, and must be a valid NCName.|Error|11111} * {@ddms.rule If the gml:pos has an srsName, it must match the srsName of this Point.|Error|11111} * {@ddms.rule Warnings from any SRS attributes are claimed by this component.|Warning|11111} *

No additional validation is done on the TSPI shape at this time.

* {@table.footer} * * @author Brian Uri! * @since 2.2.0 */ public final class Envelope extends AbstractTspiShape { /** * Constructor for creating a component from a XOM Element * * @param element the XOM element representing this * @throws InvalidDDMSException if any required information is missing or malformed */ public Envelope(Element element) throws InvalidDDMSException { super(element); } /** * @see AbstractBaseComponent#validate() */ protected void validate() throws InvalidDDMSException { Util.requireQName(getXOMElement(), getNamespace(), Envelope.getName(getDDMSVersion())); super.validate(); } /** * @see AbstractBaseComponent#getOutput(boolean, String, String) */ public String getOutput(boolean isHTML, String prefix, String suffix) { String localPrefix = buildPrefix(prefix, "", suffix); StringBuffer text = new StringBuffer(); text.append(buildOutput(isHTML, localPrefix + "shapeType", getName())); return (text.toString()); } /** * Builder for the element name of this component, based on the version of DDMS used * * @param version the DDMSVersion * @return an element name */ public static String getName(DDMSVersion version) { Util.requireValue("version", version); return ("Envelope"); } /** * @see Object#equals(Object) */ public boolean equals(Object obj) { if (!super.equals(obj) || !(obj instanceof Envelope)) return (false); return (true); } /** * Builder for this DDMS component. * * @see IBuilder * @author Brian Uri! * @since 2.2.0 */ public static class Builder extends AbstractTspiShape.Builder { private static final long serialVersionUID = 7750664735441105296L; /** * Empty constructor */ public Builder() { super(); } /** * Constructor which starts from an existing component. */ public Builder(Envelope address) { super(address); } /** * @see IBuilder#commit() */ public Envelope commit() throws InvalidDDMSException { if (isEmpty()) return (null); return (new Envelope(commitXml())); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy