001    //
002    // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.5-b01-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: 2008.12.02 at 08:59:01 AM HST 
006    //
007    
008    
009    package org.hackystat.tickertape.tickerlingua.jaxb;
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 ref="{}id use="required""/>
028     *       &lt;attribute ref="{}user use="required""/>
029     *       &lt;attribute ref="{}password use="required""/>
030     *     &lt;/restriction>
031     *   &lt;/complexContent>
032     * &lt;/complexType>
033     * </pre>
034     * 
035     * 
036     */
037    @XmlAccessorType(XmlAccessType.FIELD)
038    @XmlType(name = "")
039    @XmlRootElement(name = "FacebookAccount")
040    public class FacebookAccount {
041    
042        @XmlAttribute(required = true)
043        protected String id;
044        @XmlAttribute(required = true)
045        protected String user;
046        @XmlAttribute(required = true)
047        protected String password;
048    
049        /**
050         * Gets the value of the id property.
051         * 
052         * @return
053         *     possible object is
054         *     {@link String }
055         *     
056         */
057        public String getId() {
058            return id;
059        }
060    
061        /**
062         * Sets the value of the id property.
063         * 
064         * @param value
065         *     allowed object is
066         *     {@link String }
067         *     
068         */
069        public void setId(String value) {
070            this.id = value;
071        }
072    
073        /**
074         * Gets the value of the user property.
075         * 
076         * @return
077         *     possible object is
078         *     {@link String }
079         *     
080         */
081        public String getUser() {
082            return user;
083        }
084    
085        /**
086         * Sets the value of the user property.
087         * 
088         * @param value
089         *     allowed object is
090         *     {@link String }
091         *     
092         */
093        public void setUser(String value) {
094            this.user = value;
095        }
096    
097        /**
098         * Gets the value of the password property.
099         * 
100         * @return
101         *     possible object is
102         *     {@link String }
103         *     
104         */
105        public String getPassword() {
106            return password;
107        }
108    
109        /**
110         * Sets the value of the password property.
111         * 
112         * @param value
113         *     allowed object is
114         *     {@link String }
115         *     
116         */
117        public void setPassword(String value) {
118            this.password = value;
119        }
120    
121    }