// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1-b02-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2010.10.22 at 02:21:41 PM MESZ // package org.deegree.igeo.modules.bookmarks; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for BookmarkType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="BookmarkType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="allMapModels" type="{http://www.w3.org/2001/XMLSchema}boolean"/> * <element name="envelope" type="{http://www.deegree.org/bookmarks}EnvelopeType"/> * <element name="mapModelId" type="{http://www.deegree.org/bookmarks}IdentifierType" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BookmarkType", propOrder = { "name", "description", "allMapModels", "envelope", "mapModelId" }) public class BookmarkType { @XmlElement(required = true) protected String name; protected String description; protected boolean allMapModels; @XmlElement(required = true) protected EnvelopeType envelope; protected IdentifierType mapModelId; /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the allMapModels property. * */ public boolean isAllMapModels() { return allMapModels; } /** * Sets the value of the allMapModels property. * */ public void setAllMapModels(boolean value) { this.allMapModels = value; } /** * Gets the value of the envelope property. * * @return * possible object is * {@link EnvelopeType } * */ public EnvelopeType getEnvelope() { return envelope; } /** * Sets the value of the envelope property. * * @param value * allowed object is * {@link EnvelopeType } * */ public void setEnvelope(EnvelopeType value) { this.envelope = value; } /** * Gets the value of the mapModelId property. * * @return * possible object is * {@link IdentifierType } * */ public IdentifierType getMapModelId() { return mapModelId; } /** * Sets the value of the mapModelId property. * * @param value * allowed object is * {@link IdentifierType } * */ public void setMapModelId(IdentifierType value) { this.mapModelId = value; } }