001//
002// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
003// See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a> 
004// Any modifications to this file will be lost upon recompilation of the source schema. 
005// Generated on: 2018.12.10 at 03:02:30 PM PST 
006//
007
008
009package org.microbean.jpa.jaxb;
010
011import javax.xml.bind.annotation.XmlAccessType;
012import javax.xml.bind.annotation.XmlAccessorType;
013import javax.xml.bind.annotation.XmlAttribute;
014import javax.xml.bind.annotation.XmlType;
015
016
017/**
018 * 
019 * 
020 *         @Target({METHOD, FIELD}) @Retention(RUNTIME)
021 *         public @interface Transient {}
022 * 
023 *       
024 * 
025 * <p>Java class for transient complex type.
026 * 
027 * <p>The following schema fragment specifies the expected content contained within this class.
028 * 
029 * <pre>
030 * &lt;complexType name="transient"&gt;
031 *   &lt;complexContent&gt;
032 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
033 *       &lt;attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
034 *     &lt;/restriction&gt;
035 *   &lt;/complexContent&gt;
036 * &lt;/complexType&gt;
037 * </pre>
038 * 
039 * 
040 */
041@XmlAccessorType(XmlAccessType.FIELD)
042@XmlType(name = "transient")
043public class Transient {
044
045    @XmlAttribute(name = "name", required = true)
046    protected String name;
047
048    /**
049     * Gets the value of the name property.
050     * 
051     * @return
052     *     possible object is
053     *     {@link String }
054     *     
055     */
056    public String getName() {
057        return name;
058    }
059
060    /**
061     * Sets the value of the name property.
062     * 
063     * @param value
064     *     allowed object is
065     *     {@link String }
066     *     
067     */
068    public void setName(String value) {
069        this.name = value;
070    }
071
072}