001    /*
002     * XML Type:  compoundSecMechType
003     * Namespace: http://openejb.apache.org/xml/ns/corba-tss-config-2.1
004     * Java type: org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType
005     *
006     * Automatically generated - do not modify.
007     */
008    package org.apache.geronimo.corba.xbeans.csiv2.tss;
009    
010    
011    /**
012     * An XML compoundSecMechType(@http://openejb.apache.org/xml/ns/corba-tss-config-2.1).
013     *
014     * This is a complex type.
015     */
016    public interface TSSCompoundSecMechType 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(TSSCompoundSecMechType.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s09ACC41411FB14C20ABEF817C47DD1DF").resolveHandle("compoundsecmechtype3bb3type");
020        
021        /**
022         * Gets array of all "description" elements
023         */
024        org.apache.geronimo.corba.xbeans.csiv2.tss.TSSDescriptionType[] getDescriptionArray();
025        
026        /**
027         * Gets ith "description" element
028         */
029        org.apache.geronimo.corba.xbeans.csiv2.tss.TSSDescriptionType getDescriptionArray(int i);
030        
031        /**
032         * Returns number of "description" element
033         */
034        int sizeOfDescriptionArray();
035        
036        /**
037         * Sets array of all "description" element
038         */
039        void setDescriptionArray(org.apache.geronimo.corba.xbeans.csiv2.tss.TSSDescriptionType[] descriptionArray);
040        
041        /**
042         * Sets ith "description" element
043         */
044        void setDescriptionArray(int i, org.apache.geronimo.corba.xbeans.csiv2.tss.TSSDescriptionType description);
045        
046        /**
047         * Inserts and returns a new empty value (as xml) as the ith "description" element
048         */
049        org.apache.geronimo.corba.xbeans.csiv2.tss.TSSDescriptionType insertNewDescription(int i);
050        
051        /**
052         * Appends and returns a new empty value (as xml) as the last "description" element
053         */
054        org.apache.geronimo.corba.xbeans.csiv2.tss.TSSDescriptionType addNewDescription();
055        
056        /**
057         * Removes the ith "description" element
058         */
059        void removeDescription(int i);
060        
061        /**
062         * Gets the "GSSUP" element
063         */
064        org.apache.geronimo.corba.xbeans.csiv2.tss.TSSGSSUPType getGSSUP();
065        
066        /**
067         * True if has "GSSUP" element
068         */
069        boolean isSetGSSUP();
070        
071        /**
072         * Sets the "GSSUP" element
073         */
074        void setGSSUP(org.apache.geronimo.corba.xbeans.csiv2.tss.TSSGSSUPType gssup);
075        
076        /**
077         * Appends and returns a new empty "GSSUP" element
078         */
079        org.apache.geronimo.corba.xbeans.csiv2.tss.TSSGSSUPType addNewGSSUP();
080        
081        /**
082         * Unsets the "GSSUP" element
083         */
084        void unsetGSSUP();
085        
086        /**
087         * Gets the "sasMech" element
088         */
089        org.apache.geronimo.corba.xbeans.csiv2.tss.TSSSasMechType getSasMech();
090        
091        /**
092         * True if has "sasMech" element
093         */
094        boolean isSetSasMech();
095        
096        /**
097         * Sets the "sasMech" element
098         */
099        void setSasMech(org.apache.geronimo.corba.xbeans.csiv2.tss.TSSSasMechType sasMech);
100        
101        /**
102         * Appends and returns a new empty "sasMech" element
103         */
104        org.apache.geronimo.corba.xbeans.csiv2.tss.TSSSasMechType addNewSasMech();
105        
106        /**
107         * Unsets the "sasMech" element
108         */
109        void unsetSasMech();
110        
111        /**
112         * A factory class with static methods for creating instances
113         * of this type.
114         */
115        
116        public static final class Factory
117        {
118            public static org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType newInstance() {
119              return (org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
120            
121            public static org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType newInstance(org.apache.xmlbeans.XmlOptions options) {
122              return (org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
123            
124            /** @param xmlAsString the string value to parse */
125            public static org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
126              return (org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
127            
128            public static org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
129              return (org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
130            
131            /** @param file the file from which to load an xml document */
132            public static org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
133              return (org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
134            
135            public static org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
136              return (org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
137            
138            public static org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
139              return (org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
140            
141            public static org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
142              return (org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
143            
144            public static org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
145              return (org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
146            
147            public static org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
148              return (org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
149            
150            public static org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
151              return (org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
152            
153            public static org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
154              return (org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
155            
156            public static org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
157              return (org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
158            
159            public static org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
160              return (org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
161            
162            public static org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
163              return (org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
164            
165            public static org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
166              return (org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
167            
168            /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
169            public static org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
170              return (org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
171            
172            /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
173            public static org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
174              return (org.apache.geronimo.corba.xbeans.csiv2.tss.TSSCompoundSecMechType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
175            
176            /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
177            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 {
178              return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
179            
180            /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
181            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 {
182              return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
183            
184            private Factory() { } // No instance of this class allowed
185        }
186    }