All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.x52North.wns.v2.WNSConfigDocument Maven / Gradle / Ivy

There is a newer version: 2.7.0
Show newest version
/*
 * An XML document type.
 * Localname: WNSConfig
 * Namespace: http://www.52north.org/wns/v2
 * Java type: org.x52North.wns.v2.WNSConfigDocument
 *
 * Automatically generated - do not modify.
 */
package org.x52North.wns.v2;


/**
 * A document containing one WNSConfig(@http://www.52north.org/wns/v2) element.
 *
 * This is a complex type.
 */
public interface WNSConfigDocument extends org.apache.xmlbeans.XmlObject
{
    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
        org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(WNSConfigDocument.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE8B7EC2C55D66E03E687E924ECFA3D66").resolveHandle("wnsconfigc14edoctype");
    
    /**
     * Gets the "WNSConfig" element
     */
    org.x52North.wns.v2.WNSConfigDocument.WNSConfig getWNSConfig();
    
    /**
     * Sets the "WNSConfig" element
     */
    void setWNSConfig(org.x52North.wns.v2.WNSConfigDocument.WNSConfig wnsConfig);
    
    /**
     * Appends and returns a new empty "WNSConfig" element
     */
    org.x52North.wns.v2.WNSConfigDocument.WNSConfig addNewWNSConfig();
    
    /**
     * An XML WNSConfig(@http://www.52north.org/wns/v2).
     *
     * This is a complex type.
     */
    public interface WNSConfig extends org.apache.xmlbeans.XmlObject
    {
        public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
            org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(WNSConfig.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE8B7EC2C55D66E03E687E924ECFA3D66").resolveHandle("wnsconfigd9f8elemtype");
        
        /**
         * Gets the "ServiceProperties" element
         */
        org.x52North.wns.v2.WNSConfigDocument.WNSConfig.ServiceProperties getServiceProperties();
        
        /**
         * Sets the "ServiceProperties" element
         */
        void setServiceProperties(org.x52North.wns.v2.WNSConfigDocument.WNSConfig.ServiceProperties serviceProperties);
        
        /**
         * Appends and returns a new empty "ServiceProperties" element
         */
        org.x52North.wns.v2.WNSConfigDocument.WNSConfig.ServiceProperties addNewServiceProperties();
        
        /**
         * Gets the "RegisteredHandlers" element
         */
        org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers getRegisteredHandlers();
        
        /**
         * Sets the "RegisteredHandlers" element
         */
        void setRegisteredHandlers(org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers registeredHandlers);
        
        /**
         * Appends and returns a new empty "RegisteredHandlers" element
         */
        org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers addNewRegisteredHandlers();
        
        /**
         * An XML ServiceProperties(@http://www.52north.org/wns/v2).
         *
         * This is a complex type.
         */
        public interface ServiceProperties extends org.apache.xmlbeans.XmlObject
        {
            public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
                org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(ServiceProperties.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE8B7EC2C55D66E03E687E924ECFA3D66").resolveHandle("serviceproperties0f0celemtype");
            
            /**
             * Gets the "MaxTTLOfMessages" element
             */
            org.apache.xmlbeans.GDuration getMaxTTLOfMessages();
            
            /**
             * Gets (as xml) the "MaxTTLOfMessages" element
             */
            org.apache.xmlbeans.XmlDuration xgetMaxTTLOfMessages();
            
            /**
             * Sets the "MaxTTLOfMessages" element
             */
            void setMaxTTLOfMessages(org.apache.xmlbeans.GDuration maxTTLOfMessages);
            
            /**
             * Sets (as xml) the "MaxTTLOfMessages" element
             */
            void xsetMaxTTLOfMessages(org.apache.xmlbeans.XmlDuration maxTTLOfMessages);
            
            /**
             * Gets the "ExceptionLevel" element
             */
            org.x52North.wns.v2.WNSConfigDocument.WNSConfig.ServiceProperties.ExceptionLevel.Enum getExceptionLevel();
            
            /**
             * Gets (as xml) the "ExceptionLevel" element
             */
            org.x52North.wns.v2.WNSConfigDocument.WNSConfig.ServiceProperties.ExceptionLevel xgetExceptionLevel();
            
            /**
             * Sets the "ExceptionLevel" element
             */
            void setExceptionLevel(org.x52North.wns.v2.WNSConfigDocument.WNSConfig.ServiceProperties.ExceptionLevel.Enum exceptionLevel);
            
            /**
             * Sets (as xml) the "ExceptionLevel" element
             */
            void xsetExceptionLevel(org.x52North.wns.v2.WNSConfigDocument.WNSConfig.ServiceProperties.ExceptionLevel exceptionLevel);
            
            /**
             * Gets the "WNSURL" element
             */
            java.lang.String getWNSURL();
            
            /**
             * Gets (as xml) the "WNSURL" element
             */
            org.apache.xmlbeans.XmlAnyURI xgetWNSURL();
            
            /**
             * Sets the "WNSURL" element
             */
            void setWNSURL(java.lang.String wnsurl);
            
            /**
             * Sets (as xml) the "WNSURL" element
             */
            void xsetWNSURL(org.apache.xmlbeans.XmlAnyURI wnsurl);
            
            /**
             * Gets the "WNSSchemaLocation" element
             */
            java.lang.String getWNSSchemaLocation();
            
            /**
             * Gets (as xml) the "WNSSchemaLocation" element
             */
            org.apache.xmlbeans.XmlToken xgetWNSSchemaLocation();
            
            /**
             * Sets the "WNSSchemaLocation" element
             */
            void setWNSSchemaLocation(java.lang.String wnsSchemaLocation);
            
            /**
             * Sets (as xml) the "WNSSchemaLocation" element
             */
            void xsetWNSSchemaLocation(org.apache.xmlbeans.XmlToken wnsSchemaLocation);
            
            /**
             * Gets the "OWSSchemaLocation" element
             */
            java.lang.String getOWSSchemaLocation();
            
            /**
             * Gets (as xml) the "OWSSchemaLocation" element
             */
            org.apache.xmlbeans.XmlToken xgetOWSSchemaLocation();
            
            /**
             * Sets the "OWSSchemaLocation" element
             */
            void setOWSSchemaLocation(java.lang.String owsSchemaLocation);
            
            /**
             * Sets (as xml) the "OWSSchemaLocation" element
             */
            void xsetOWSSchemaLocation(org.apache.xmlbeans.XmlToken owsSchemaLocation);
            
            /**
             * Gets the "DAOFactoryDriver" element
             */
            java.lang.String getDAOFactoryDriver();
            
            /**
             * Gets (as xml) the "DAOFactoryDriver" element
             */
            org.apache.xmlbeans.XmlToken xgetDAOFactoryDriver();
            
            /**
             * Sets the "DAOFactoryDriver" element
             */
            void setDAOFactoryDriver(java.lang.String daoFactoryDriver);
            
            /**
             * Sets (as xml) the "DAOFactoryDriver" element
             */
            void xsetDAOFactoryDriver(org.apache.xmlbeans.XmlToken daoFactoryDriver);
            
            /**
             * Gets the "DAOFactoryPropertiesLocation" element
             */
            java.lang.String getDAOFactoryPropertiesLocation();
            
            /**
             * Gets (as xml) the "DAOFactoryPropertiesLocation" element
             */
            org.apache.xmlbeans.XmlToken xgetDAOFactoryPropertiesLocation();
            
            /**
             * True if has "DAOFactoryPropertiesLocation" element
             */
            boolean isSetDAOFactoryPropertiesLocation();
            
            /**
             * Sets the "DAOFactoryPropertiesLocation" element
             */
            void setDAOFactoryPropertiesLocation(java.lang.String daoFactoryPropertiesLocation);
            
            /**
             * Sets (as xml) the "DAOFactoryPropertiesLocation" element
             */
            void xsetDAOFactoryPropertiesLocation(org.apache.xmlbeans.XmlToken daoFactoryPropertiesLocation);
            
            /**
             * Unsets the "DAOFactoryPropertiesLocation" element
             */
            void unsetDAOFactoryPropertiesLocation();
            
            /**
             * Gets the "CapabilitiesBaseInformation" element
             */
            org.apache.xmlbeans.XmlObject getCapabilitiesBaseInformation();
            
            /**
             * Sets the "CapabilitiesBaseInformation" element
             */
            void setCapabilitiesBaseInformation(org.apache.xmlbeans.XmlObject capabilitiesBaseInformation);
            
            /**
             * Appends and returns a new empty "CapabilitiesBaseInformation" element
             */
            org.apache.xmlbeans.XmlObject addNewCapabilitiesBaseInformation();
            
            /**
             * Gets the "DataBaseProperties" element
             */
            org.x52North.wns.v2.WNSConfigDocument.WNSConfig.ServiceProperties.DataBaseProperties getDataBaseProperties();
            
            /**
             * Sets the "DataBaseProperties" element
             */
            void setDataBaseProperties(org.x52North.wns.v2.WNSConfigDocument.WNSConfig.ServiceProperties.DataBaseProperties dataBaseProperties);
            
            /**
             * Appends and returns a new empty "DataBaseProperties" element
             */
            org.x52North.wns.v2.WNSConfigDocument.WNSConfig.ServiceProperties.DataBaseProperties addNewDataBaseProperties();
            
            /**
             * Gets the "DebugMode" element
             */
            boolean getDebugMode();
            
            /**
             * Gets (as xml) the "DebugMode" element
             */
            org.apache.xmlbeans.XmlBoolean xgetDebugMode();
            
            /**
             * Sets the "DebugMode" element
             */
            void setDebugMode(boolean debugMode);
            
            /**
             * Sets (as xml) the "DebugMode" element
             */
            void xsetDebugMode(org.apache.xmlbeans.XmlBoolean debugMode);
            
            /**
             * An XML ExceptionLevel(@http://www.52north.org/wns/v2).
             *
             * This is an atomic type that is a restriction of org.x52North.wns.v2.WNSConfigDocument$WNSConfig$ServiceProperties$ExceptionLevel.
             */
            public interface ExceptionLevel extends org.apache.xmlbeans.XmlToken
            {
                public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
                    org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(ExceptionLevel.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE8B7EC2C55D66E03E687E924ECFA3D66").resolveHandle("exceptionlevel1cfdelemtype");
                
                org.apache.xmlbeans.StringEnumAbstractBase enumValue();
                void set(org.apache.xmlbeans.StringEnumAbstractBase e);
                
                static final Enum PLAIN_EXCEPTIONS = Enum.forString("PlainExceptions");
                static final Enum DETAILED_EXCEPTIONS = Enum.forString("DetailedExceptions");
                
                static final int INT_PLAIN_EXCEPTIONS = Enum.INT_PLAIN_EXCEPTIONS;
                static final int INT_DETAILED_EXCEPTIONS = Enum.INT_DETAILED_EXCEPTIONS;
                
                /**
                 * Enumeration value class for org.x52North.wns.v2.WNSConfigDocument$WNSConfig$ServiceProperties$ExceptionLevel.
                 * These enum values can be used as follows:
                 * 
                 * enum.toString(); // returns the string value of the enum
                 * enum.intValue(); // returns an int value, useful for switches
                 * // e.g., case Enum.INT_PLAIN_EXCEPTIONS
                 * Enum.forString(s); // returns the enum value for a string
                 * Enum.forInt(i); // returns the enum value for an int
                 * 
* Enumeration objects are immutable singleton objects that * can be compared using == object equality. They have no * public constructor. See the constants defined within this * class for all the valid values. */ static final class Enum extends org.apache.xmlbeans.StringEnumAbstractBase { /** * Returns the enum value for a string, or null if none. */ public static Enum forString(java.lang.String s) { return (Enum)table.forString(s); } /** * Returns the enum value corresponding to an int, or null if none. */ public static Enum forInt(int i) { return (Enum)table.forInt(i); } private Enum(java.lang.String s, int i) { super(s, i); } static final int INT_PLAIN_EXCEPTIONS = 1; static final int INT_DETAILED_EXCEPTIONS = 2; public static final org.apache.xmlbeans.StringEnumAbstractBase.Table table = new org.apache.xmlbeans.StringEnumAbstractBase.Table ( new Enum[] { new Enum("PlainExceptions", INT_PLAIN_EXCEPTIONS), new Enum("DetailedExceptions", INT_DETAILED_EXCEPTIONS), } ); private static final long serialVersionUID = 1L; private java.lang.Object readResolve() { return forInt(intValue()); } } /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static org.x52North.wns.v2.WNSConfigDocument.WNSConfig.ServiceProperties.ExceptionLevel newValue(java.lang.Object obj) { return (org.x52North.wns.v2.WNSConfigDocument.WNSConfig.ServiceProperties.ExceptionLevel) type.newValue( obj ); } public static org.x52North.wns.v2.WNSConfigDocument.WNSConfig.ServiceProperties.ExceptionLevel newInstance() { return (org.x52North.wns.v2.WNSConfigDocument.WNSConfig.ServiceProperties.ExceptionLevel) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.x52North.wns.v2.WNSConfigDocument.WNSConfig.ServiceProperties.ExceptionLevel newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.x52North.wns.v2.WNSConfigDocument.WNSConfig.ServiceProperties.ExceptionLevel) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } private Factory() { } // No instance of this class allowed } } /** * An XML DataBaseProperties(@http://www.52north.org/wns/v2). * * This is a complex type. */ public interface DataBaseProperties extends org.apache.xmlbeans.XmlObject { public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(DataBaseProperties.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE8B7EC2C55D66E03E687E924ECFA3D66").resolveHandle("databaseproperties1a76elemtype"); /** * Gets the "DBName" element */ java.lang.String getDBName(); /** * Gets (as xml) the "DBName" element */ org.apache.xmlbeans.XmlToken xgetDBName(); /** * Sets the "DBName" element */ void setDBName(java.lang.String dbName); /** * Sets (as xml) the "DBName" element */ void xsetDBName(org.apache.xmlbeans.XmlToken dbName); /** * Gets the "user" element */ java.lang.String getUser(); /** * Gets (as xml) the "user" element */ org.apache.xmlbeans.XmlToken xgetUser(); /** * Sets the "user" element */ void setUser(java.lang.String user); /** * Sets (as xml) the "user" element */ void xsetUser(org.apache.xmlbeans.XmlToken user); /** * Gets the "password" element */ java.lang.String getPassword(); /** * Gets (as xml) the "password" element */ org.apache.xmlbeans.XmlToken xgetPassword(); /** * Sets the "password" element */ void setPassword(java.lang.String password); /** * Sets (as xml) the "password" element */ void xsetPassword(org.apache.xmlbeans.XmlToken password); /** * Gets the "URL" element */ java.lang.String getURL(); /** * Gets (as xml) the "URL" element */ org.apache.xmlbeans.XmlToken xgetURL(); /** * Sets the "URL" element */ void setURL(java.lang.String url); /** * Sets (as xml) the "URL" element */ void xsetURL(org.apache.xmlbeans.XmlToken url); /** * Gets the "checkDBDuration" element */ int getCheckDBDuration(); /** * Gets (as xml) the "checkDBDuration" element */ org.apache.xmlbeans.XmlInt xgetCheckDBDuration(); /** * Sets the "checkDBDuration" element */ void setCheckDBDuration(int checkDBDuration); /** * Sets (as xml) the "checkDBDuration" element */ void xsetCheckDBDuration(org.apache.xmlbeans.XmlInt checkDBDuration); /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static org.x52North.wns.v2.WNSConfigDocument.WNSConfig.ServiceProperties.DataBaseProperties newInstance() { return (org.x52North.wns.v2.WNSConfigDocument.WNSConfig.ServiceProperties.DataBaseProperties) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.x52North.wns.v2.WNSConfigDocument.WNSConfig.ServiceProperties.DataBaseProperties newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.x52North.wns.v2.WNSConfigDocument.WNSConfig.ServiceProperties.DataBaseProperties) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } private Factory() { } // No instance of this class allowed } } /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static org.x52North.wns.v2.WNSConfigDocument.WNSConfig.ServiceProperties newInstance() { return (org.x52North.wns.v2.WNSConfigDocument.WNSConfig.ServiceProperties) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.x52North.wns.v2.WNSConfigDocument.WNSConfig.ServiceProperties newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.x52North.wns.v2.WNSConfigDocument.WNSConfig.ServiceProperties) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } private Factory() { } // No instance of this class allowed } } /** * An XML RegisteredHandlers(@http://www.52north.org/wns/v2). * * This is a complex type. */ public interface RegisteredHandlers extends org.apache.xmlbeans.XmlObject { public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(RegisteredHandlers.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE8B7EC2C55D66E03E687E924ECFA3D66").resolveHandle("registeredhandlersa07felemtype"); /** * Gets the "EMailHandler" element */ org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.EMailHandler getEMailHandler(); /** * True if has "EMailHandler" element */ boolean isSetEMailHandler(); /** * Sets the "EMailHandler" element */ void setEMailHandler(org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.EMailHandler eMailHandler); /** * Appends and returns a new empty "EMailHandler" element */ org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.EMailHandler addNewEMailHandler(); /** * Unsets the "EMailHandler" element */ void unsetEMailHandler(); /** * Gets the "XMPPHandler" element */ org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.XMPPHandler getXMPPHandler(); /** * True if has "XMPPHandler" element */ boolean isSetXMPPHandler(); /** * Sets the "XMPPHandler" element */ void setXMPPHandler(org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.XMPPHandler xmppHandler); /** * Appends and returns a new empty "XMPPHandler" element */ org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.XMPPHandler addNewXMPPHandler(); /** * Unsets the "XMPPHandler" element */ void unsetXMPPHandler(); /** * Gets the "SMSHandler" element */ org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.SMSHandler getSMSHandler(); /** * True if has "SMSHandler" element */ boolean isSetSMSHandler(); /** * Sets the "SMSHandler" element */ void setSMSHandler(org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.SMSHandler smsHandler); /** * Appends and returns a new empty "SMSHandler" element */ org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.SMSHandler addNewSMSHandler(); /** * Unsets the "SMSHandler" element */ void unsetSMSHandler(); /** * Gets the "PhoneHandler" element */ org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.PhoneHandler getPhoneHandler(); /** * True if has "PhoneHandler" element */ boolean isSetPhoneHandler(); /** * Sets the "PhoneHandler" element */ void setPhoneHandler(org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.PhoneHandler phoneHandler); /** * Appends and returns a new empty "PhoneHandler" element */ org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.PhoneHandler addNewPhoneHandler(); /** * Unsets the "PhoneHandler" element */ void unsetPhoneHandler(); /** * Gets the "FaxHandler" element */ org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.FaxHandler getFaxHandler(); /** * True if has "FaxHandler" element */ boolean isSetFaxHandler(); /** * Sets the "FaxHandler" element */ void setFaxHandler(org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.FaxHandler faxHandler); /** * Appends and returns a new empty "FaxHandler" element */ org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.FaxHandler addNewFaxHandler(); /** * Unsets the "FaxHandler" element */ void unsetFaxHandler(); /** * An XML EMailHandler(@http://www.52north.org/wns/v2). * * This is a complex type. */ public interface EMailHandler extends org.apache.xmlbeans.XmlObject { public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(EMailHandler.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE8B7EC2C55D66E03E687E924ECFA3D66").resolveHandle("emailhandlerc595elemtype"); /** * Gets the "Provider" element */ java.lang.String getProvider(); /** * Gets (as xml) the "Provider" element */ org.apache.xmlbeans.XmlToken xgetProvider(); /** * Sets the "Provider" element */ void setProvider(java.lang.String provider); /** * Sets (as xml) the "Provider" element */ void xsetProvider(org.apache.xmlbeans.XmlToken provider); /** * Gets the "SMTP" element */ org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.EMailHandler.SMTP getSMTP(); /** * Sets the "SMTP" element */ void setSMTP(org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.EMailHandler.SMTP smtp); /** * Appends and returns a new empty "SMTP" element */ org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.EMailHandler.SMTP addNewSMTP(); /** * An XML SMTP(@http://www.52north.org/wns/v2). * * This is a complex type. */ public interface SMTP extends org.apache.xmlbeans.XmlObject { public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(SMTP.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE8B7EC2C55D66E03E687E924ECFA3D66").resolveHandle("smtp6e07elemtype"); /** * Gets the "Host" element */ java.lang.String getHost(); /** * Gets (as xml) the "Host" element */ org.apache.xmlbeans.XmlToken xgetHost(); /** * Sets the "Host" element */ void setHost(java.lang.String host); /** * Sets (as xml) the "Host" element */ void xsetHost(org.apache.xmlbeans.XmlToken host); /** * Gets the "User" element */ java.lang.String getUser(); /** * Gets (as xml) the "User" element */ org.apache.xmlbeans.XmlToken xgetUser(); /** * Sets the "User" element */ void setUser(java.lang.String user); /** * Sets (as xml) the "User" element */ void xsetUser(org.apache.xmlbeans.XmlToken user); /** * Gets the "Passwd" element */ java.lang.String getPasswd(); /** * Gets (as xml) the "Passwd" element */ org.apache.xmlbeans.XmlToken xgetPasswd(); /** * Sets the "Passwd" element */ void setPasswd(java.lang.String passwd); /** * Sets (as xml) the "Passwd" element */ void xsetPasswd(org.apache.xmlbeans.XmlToken passwd); /** * Gets the "Sender" element */ java.lang.String getSender(); /** * Gets (as xml) the "Sender" element */ org.apache.xmlbeans.XmlString xgetSender(); /** * Sets the "Sender" element */ void setSender(java.lang.String sender); /** * Sets (as xml) the "Sender" element */ void xsetSender(org.apache.xmlbeans.XmlString sender); /** * Gets the "Authenticate" element */ boolean getAuthenticate(); /** * Gets (as xml) the "Authenticate" element */ org.apache.xmlbeans.XmlBoolean xgetAuthenticate(); /** * Sets the "Authenticate" element */ void setAuthenticate(boolean authenticate); /** * Sets (as xml) the "Authenticate" element */ void xsetAuthenticate(org.apache.xmlbeans.XmlBoolean authenticate); /** * Gets the "Port" element */ int getPort(); /** * Gets (as xml) the "Port" element */ org.apache.xmlbeans.XmlInt xgetPort(); /** * Sets the "Port" element */ void setPort(int port); /** * Sets (as xml) the "Port" element */ void xsetPort(org.apache.xmlbeans.XmlInt port); /** * Gets the "EmailSubject" element */ java.lang.String getEmailSubject(); /** * Gets (as xml) the "EmailSubject" element */ org.apache.xmlbeans.XmlString xgetEmailSubject(); /** * Sets the "EmailSubject" element */ void setEmailSubject(java.lang.String emailSubject); /** * Sets (as xml) the "EmailSubject" element */ void xsetEmailSubject(org.apache.xmlbeans.XmlString emailSubject); /** * Gets the "SSL" element */ boolean getSSL(); /** * Gets (as xml) the "SSL" element */ org.apache.xmlbeans.XmlBoolean xgetSSL(); /** * Sets the "SSL" element */ void setSSL(boolean ssl); /** * Sets (as xml) the "SSL" element */ void xsetSSL(org.apache.xmlbeans.XmlBoolean ssl); /** * Gets the "TLS" element */ boolean getTLS(); /** * Gets (as xml) the "TLS" element */ org.apache.xmlbeans.XmlBoolean xgetTLS(); /** * Sets the "TLS" element */ void setTLS(boolean tls); /** * Sets (as xml) the "TLS" element */ void xsetTLS(org.apache.xmlbeans.XmlBoolean tls); /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.EMailHandler.SMTP newInstance() { return (org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.EMailHandler.SMTP) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.EMailHandler.SMTP newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.EMailHandler.SMTP) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } private Factory() { } // No instance of this class allowed } } /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.EMailHandler newInstance() { return (org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.EMailHandler) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.EMailHandler newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.EMailHandler) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } private Factory() { } // No instance of this class allowed } } /** * An XML XMPPHandler(@http://www.52north.org/wns/v2). * * This is a complex type. */ public interface XMPPHandler extends org.x52North.wns.v2.HandlerBaseType { public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(XMPPHandler.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE8B7EC2C55D66E03E687E924ECFA3D66").resolveHandle("xmpphandler1f9eelemtype"); /** * Gets the "Port" element */ int getPort(); /** * Gets (as xml) the "Port" element */ org.apache.xmlbeans.XmlInt xgetPort(); /** * Sets the "Port" element */ void setPort(int port); /** * Sets (as xml) the "Port" element */ void xsetPort(org.apache.xmlbeans.XmlInt port); /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.XMPPHandler newInstance() { return (org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.XMPPHandler) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.XMPPHandler newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.XMPPHandler) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } private Factory() { } // No instance of this class allowed } } /** * An XML SMSHandler(@http://www.52north.org/wns/v2). * * This is a complex type. */ public interface SMSHandler extends org.x52North.wns.v2.HandlerBaseType { public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(SMSHandler.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE8B7EC2C55D66E03E687E924ECFA3D66").resolveHandle("smshandler7bf2elemtype"); /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.SMSHandler newInstance() { return (org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.SMSHandler) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.SMSHandler newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.SMSHandler) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } private Factory() { } // No instance of this class allowed } } /** * An XML PhoneHandler(@http://www.52north.org/wns/v2). * * This is a complex type. */ public interface PhoneHandler extends org.x52North.wns.v2.HandlerBaseType { public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(PhoneHandler.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE8B7EC2C55D66E03E687E924ECFA3D66").resolveHandle("phonehandler6ac7elemtype"); /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.PhoneHandler newInstance() { return (org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.PhoneHandler) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.PhoneHandler newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.PhoneHandler) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } private Factory() { } // No instance of this class allowed } } /** * An XML FaxHandler(@http://www.52north.org/wns/v2). * * This is a complex type. */ public interface FaxHandler extends org.x52North.wns.v2.HandlerBaseType { public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(FaxHandler.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE8B7EC2C55D66E03E687E924ECFA3D66").resolveHandle("faxhandlerc4b6elemtype"); /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.FaxHandler newInstance() { return (org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.FaxHandler) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.FaxHandler newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers.FaxHandler) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } private Factory() { } // No instance of this class allowed } } /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers newInstance() { return (org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.x52North.wns.v2.WNSConfigDocument.WNSConfig.RegisteredHandlers) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } private Factory() { } // No instance of this class allowed } } /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static org.x52North.wns.v2.WNSConfigDocument.WNSConfig newInstance() { return (org.x52North.wns.v2.WNSConfigDocument.WNSConfig) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.x52North.wns.v2.WNSConfigDocument.WNSConfig newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.x52North.wns.v2.WNSConfigDocument.WNSConfig) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } private Factory() { } // No instance of this class allowed } } /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static org.x52North.wns.v2.WNSConfigDocument newInstance() { return (org.x52North.wns.v2.WNSConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.x52North.wns.v2.WNSConfigDocument newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.x52North.wns.v2.WNSConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } /** @param xmlAsString the string value to parse */ public static org.x52North.wns.v2.WNSConfigDocument parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException { return (org.x52North.wns.v2.WNSConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); } public static org.x52North.wns.v2.WNSConfigDocument parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.x52North.wns.v2.WNSConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); } /** @param file the file from which to load an xml document */ public static org.x52North.wns.v2.WNSConfigDocument parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.x52North.wns.v2.WNSConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); } public static org.x52North.wns.v2.WNSConfigDocument parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.x52North.wns.v2.WNSConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); } public static org.x52North.wns.v2.WNSConfigDocument parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.x52North.wns.v2.WNSConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); } public static org.x52North.wns.v2.WNSConfigDocument parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.x52North.wns.v2.WNSConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); } public static org.x52North.wns.v2.WNSConfigDocument parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.x52North.wns.v2.WNSConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); } public static org.x52North.wns.v2.WNSConfigDocument parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.x52North.wns.v2.WNSConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); } public static org.x52North.wns.v2.WNSConfigDocument parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.x52North.wns.v2.WNSConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); } public static org.x52North.wns.v2.WNSConfigDocument parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.x52North.wns.v2.WNSConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); } public static org.x52North.wns.v2.WNSConfigDocument parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException { return (org.x52North.wns.v2.WNSConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); } public static org.x52North.wns.v2.WNSConfigDocument parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.x52North.wns.v2.WNSConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); } public static org.x52North.wns.v2.WNSConfigDocument parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException { return (org.x52North.wns.v2.WNSConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); } public static org.x52North.wns.v2.WNSConfigDocument parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.x52North.wns.v2.WNSConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.x52North.wns.v2.WNSConfigDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.x52North.wns.v2.WNSConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.x52North.wns.v2.WNSConfigDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.x52North.wns.v2.WNSConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ 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 { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ 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 { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); } private Factory() { } // No instance of this class allowed } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy