001    /*
002     * XML Type:  resource-env-refType
003     * Namespace: http://geronimo.apache.org/xml/ns/naming-1.2
004     * Java type: org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType
005     *
006     * Automatically generated - do not modify.
007     */
008    package org.apache.geronimo.xbeans.geronimo.naming;
009    
010    
011    /**
012     * An XML resource-env-refType(@http://geronimo.apache.org/xml/ns/naming-1.2).
013     *
014     * This is a complex type.
015     */
016    public interface GerResourceEnvRefType extends org.apache.xmlbeans.XmlObject
017    {
018        public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
019            org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(GerResourceEnvRefType.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s5BE83D0C34A23529A2EB03BDF6E4EE25").resolveHandle("resourceenvreftyped284type");
020        
021        /**
022         * Gets the "ref-name" element
023         */
024        java.lang.String getRefName();
025        
026        /**
027         * Gets (as xml) the "ref-name" element
028         */
029        org.apache.xmlbeans.XmlString xgetRefName();
030        
031        /**
032         * Sets the "ref-name" element
033         */
034        void setRefName(java.lang.String refName);
035        
036        /**
037         * Sets (as xml) the "ref-name" element
038         */
039        void xsetRefName(org.apache.xmlbeans.XmlString refName);
040        
041        /**
042         * Gets the "pattern" element
043         */
044        org.apache.geronimo.xbeans.geronimo.naming.GerPatternType getPattern();
045        
046        /**
047         * True if has "pattern" element
048         */
049        boolean isSetPattern();
050        
051        /**
052         * Sets the "pattern" element
053         */
054        void setPattern(org.apache.geronimo.xbeans.geronimo.naming.GerPatternType pattern);
055        
056        /**
057         * Appends and returns a new empty "pattern" element
058         */
059        org.apache.geronimo.xbeans.geronimo.naming.GerPatternType addNewPattern();
060        
061        /**
062         * Unsets the "pattern" element
063         */
064        void unsetPattern();
065        
066        /**
067         * Gets the "message-destination-link" element
068         */
069        java.lang.String getMessageDestinationLink();
070        
071        /**
072         * Gets (as xml) the "message-destination-link" element
073         */
074        org.apache.xmlbeans.XmlString xgetMessageDestinationLink();
075        
076        /**
077         * True if has "message-destination-link" element
078         */
079        boolean isSetMessageDestinationLink();
080        
081        /**
082         * Sets the "message-destination-link" element
083         */
084        void setMessageDestinationLink(java.lang.String messageDestinationLink);
085        
086        /**
087         * Sets (as xml) the "message-destination-link" element
088         */
089        void xsetMessageDestinationLink(org.apache.xmlbeans.XmlString messageDestinationLink);
090        
091        /**
092         * Unsets the "message-destination-link" element
093         */
094        void unsetMessageDestinationLink();
095        
096        /**
097         * Gets the "admin-object-module" element
098         */
099        java.lang.String getAdminObjectModule();
100        
101        /**
102         * Gets (as xml) the "admin-object-module" element
103         */
104        org.apache.xmlbeans.XmlString xgetAdminObjectModule();
105        
106        /**
107         * True if has "admin-object-module" element
108         */
109        boolean isSetAdminObjectModule();
110        
111        /**
112         * Sets the "admin-object-module" element
113         */
114        void setAdminObjectModule(java.lang.String adminObjectModule);
115        
116        /**
117         * Sets (as xml) the "admin-object-module" element
118         */
119        void xsetAdminObjectModule(org.apache.xmlbeans.XmlString adminObjectModule);
120        
121        /**
122         * Unsets the "admin-object-module" element
123         */
124        void unsetAdminObjectModule();
125        
126        /**
127         * Gets the "admin-object-link" element
128         */
129        java.lang.String getAdminObjectLink();
130        
131        /**
132         * Gets (as xml) the "admin-object-link" element
133         */
134        org.apache.xmlbeans.XmlString xgetAdminObjectLink();
135        
136        /**
137         * True if has "admin-object-link" element
138         */
139        boolean isSetAdminObjectLink();
140        
141        /**
142         * Sets the "admin-object-link" element
143         */
144        void setAdminObjectLink(java.lang.String adminObjectLink);
145        
146        /**
147         * Sets (as xml) the "admin-object-link" element
148         */
149        void xsetAdminObjectLink(org.apache.xmlbeans.XmlString adminObjectLink);
150        
151        /**
152         * Unsets the "admin-object-link" element
153         */
154        void unsetAdminObjectLink();
155        
156        /**
157         * A factory class with static methods for creating instances
158         * of this type.
159         */
160        
161        public static final class Factory
162        {
163            public static org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType newInstance() {
164              return (org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
165            
166            public static org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType newInstance(org.apache.xmlbeans.XmlOptions options) {
167              return (org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
168            
169            /** @param xmlAsString the string value to parse */
170            public static org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
171              return (org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
172            
173            public static org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
174              return (org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
175            
176            /** @param file the file from which to load an xml document */
177            public static org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
178              return (org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
179            
180            public static org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
181              return (org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
182            
183            public static org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
184              return (org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
185            
186            public static org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
187              return (org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
188            
189            public static org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
190              return (org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
191            
192            public static org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
193              return (org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
194            
195            public static org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
196              return (org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
197            
198            public static org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
199              return (org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
200            
201            public static org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
202              return (org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
203            
204            public static org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
205              return (org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
206            
207            public static org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
208              return (org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
209            
210            public static org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
211              return (org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
212            
213            /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
214            public static org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
215              return (org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
216            
217            /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
218            public static org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
219              return (org.apache.geronimo.xbeans.geronimo.naming.GerResourceEnvRefType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
220            
221            /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
222            public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
223              return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
224            
225            /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
226            public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
227              return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
228            
229            private Factory() { } // No instance of this class allowed
230        }
231    }