/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2011, Geomatys * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * 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. */ package org.geotoolkit.ols.xml.v121; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for NACEType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="NACEType"> * <complexContent> * <extension base="{http://www.opengis.net/xls}AbstractNamedReferenceSystem"> * <attribute name="division" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="group" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="class" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NACEType") public class NACEType extends AbstractNamedReferenceSystem { @XmlAttribute private String division; @XmlAttribute private String group; @XmlAttribute(name = "class") private String clazz; @XmlAttribute private String description; /** * Gets the value of the division property. * * @return * possible object is * {@link String } * */ public String getDivision() { return division; } /** * Sets the value of the division property. * * @param value * allowed object is * {@link String } * */ public void setDivision(String value) { this.division = value; } /** * Gets the value of the group property. * * @return * possible object is * {@link String } * */ public String getGroup() { return group; } /** * Sets the value of the group property. * * @param value * allowed object is * {@link String } * */ public void setGroup(String value) { this.group = value; } /** * Gets the value of the clazz property. * * @return * possible object is * {@link String } * */ public String getClazz() { return clazz; } /** * Sets the value of the clazz property. * * @param value * allowed object is * {@link String } * */ public void setClazz(String value) { this.clazz = 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; } }