001    //
002    // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1-b02-fcs 
003    // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
004    // Any modifications to this file will be lost upon recompilation of the source schema. 
005    // Generated on: 2010.09.16 at 02:31:28 PM GMT 
006    //
007    
008    
009    package org.deegree.portal.cataloguemanager.model;
010    
011    import javax.xml.bind.annotation.XmlAccessType;
012    import javax.xml.bind.annotation.XmlAccessorType;
013    import javax.xml.bind.annotation.XmlAttribute;
014    import javax.xml.bind.annotation.XmlRootElement;
015    import javax.xml.bind.annotation.XmlType;
016    
017    
018    /**
019     * <p>Java class for anonymous complex type.
020     * 
021     * <p>The following schema fragment specifies the expected content contained within this class.
022     * 
023     * <pre>
024     * &lt;complexType>
025     *   &lt;complexContent>
026     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
027     *       &lt;attribute name="codeListValue" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
028     *       &lt;attribute name="codeList" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
029     *     &lt;/restriction>
030     *   &lt;/complexContent>
031     * &lt;/complexType>
032     * </pre>
033     * 
034     * 
035     */
036    @XmlAccessorType(XmlAccessType.FIELD)
037    @XmlType(name = "")
038    @XmlRootElement(name = "MD_ScopeCode")
039    public class MDScopeCode {
040    
041        @XmlAttribute(required = true)
042        protected String codeListValue;
043        @XmlAttribute(required = true)
044        protected String codeList;
045    
046        /**
047         * Gets the value of the codeListValue property.
048         * 
049         * @return
050         *     possible object is
051         *     {@link String }
052         *     
053         */
054        public String getCodeListValue() {
055            return codeListValue;
056        }
057    
058        /**
059         * Sets the value of the codeListValue property.
060         * 
061         * @param value
062         *     allowed object is
063         *     {@link String }
064         *     
065         */
066        public void setCodeListValue(String value) {
067            this.codeListValue = value;
068        }
069    
070        /**
071         * Gets the value of the codeList property.
072         * 
073         * @return
074         *     possible object is
075         *     {@link String }
076         *     
077         */
078        public String getCodeList() {
079            return codeList;
080        }
081    
082        /**
083         * Sets the value of the codeList property.
084         * 
085         * @param value
086         *     allowed object is
087         *     {@link String }
088         *     
089         */
090        public void setCodeList(String value) {
091            this.codeList = value;
092        }
093    
094    }