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.06.27 at 11:37:09 AM GMT-10:00 
006    //
007    
008    
009    package org.hackystat.sensorbase.resource.users.jaxb;
010    
011    import javax.xml.bind.JAXBElement;
012    import javax.xml.bind.annotation.XmlElementDecl;
013    import javax.xml.bind.annotation.XmlRegistry;
014    import javax.xml.namespace.QName;
015    
016    
017    /**
018     * This object contains factory methods for each 
019     * Java content interface and Java element interface 
020     * generated in the org.hackystat.sensorbase.resource.users.jaxb package. 
021     * <p>An ObjectFactory allows you to programatically 
022     * construct new instances of the Java representation 
023     * for XML content. The Java representation of XML 
024     * content can consist of schema derived interfaces 
025     * and classes representing the binding of schema 
026     * type definitions, element declarations and model 
027     * groups.  Factory methods for each of these are 
028     * provided in this class.
029     * 
030     */
031    @XmlRegistry
032    public class ObjectFactory {
033    
034        private final static QName _Value_QNAME = new QName("", "Value");
035        private final static QName _Key_QNAME = new QName("", "Key");
036        private final static QName _Email_QNAME = new QName("", "Email");
037        private final static QName _Password_QNAME = new QName("", "Password");
038        private final static QName _Role_QNAME = new QName("", "Role");
039    
040        /**
041         * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.hackystat.sensorbase.resource.users.jaxb
042         * 
043         */
044        public ObjectFactory() {
045        }
046    
047        /**
048         * Create an instance of {@link Properties }
049         * 
050         */
051        public Properties createProperties() {
052            return new Properties();
053        }
054    
055        /**
056         * Create an instance of {@link Users }
057         * 
058         */
059        public Users createUsers() {
060            return new Users();
061        }
062    
063        /**
064         * Create an instance of {@link UserRef }
065         * 
066         */
067        public UserRef createUserRef() {
068            return new UserRef();
069        }
070    
071        /**
072         * Create an instance of {@link Property }
073         * 
074         */
075        public Property createProperty() {
076            return new Property();
077        }
078    
079        /**
080         * Create an instance of {@link UserIndex }
081         * 
082         */
083        public UserIndex createUserIndex() {
084            return new UserIndex();
085        }
086    
087        /**
088         * Create an instance of {@link User }
089         * 
090         */
091        public User createUser() {
092            return new User();
093        }
094    
095        /**
096         * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
097         * 
098         */
099        @XmlElementDecl(namespace = "", name = "Value")
100        public JAXBElement<String> createValue(String value) {
101            return new JAXBElement<String>(_Value_QNAME, String.class, null, value);
102        }
103    
104        /**
105         * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
106         * 
107         */
108        @XmlElementDecl(namespace = "", name = "Key")
109        public JAXBElement<String> createKey(String value) {
110            return new JAXBElement<String>(_Key_QNAME, String.class, null, value);
111        }
112    
113        /**
114         * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
115         * 
116         */
117        @XmlElementDecl(namespace = "", name = "Email")
118        public JAXBElement<String> createEmail(String value) {
119            return new JAXBElement<String>(_Email_QNAME, String.class, null, value);
120        }
121    
122        /**
123         * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
124         * 
125         */
126        @XmlElementDecl(namespace = "", name = "Password")
127        public JAXBElement<String> createPassword(String value) {
128            return new JAXBElement<String>(_Password_QNAME, String.class, null, value);
129        }
130    
131        /**
132         * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
133         * 
134         */
135        @XmlElementDecl(namespace = "", name = "Role")
136        public JAXBElement<String> createRole(String value) {
137            return new JAXBElement<String>(_Role_QNAME, String.class, null, value);
138        }
139    
140    }