Enum XMLElement

    • Enum Constant Detail

      • AUTH_PROTOCOL

        public static final XMLElement AUTH_PROTOCOL
      • CIPHER_TOKEN

        public static final XMLElement CIPHER_TOKEN
      • CHANNELS

        public static final XMLElement CHANNELS
      • DEFAULT_THREAD_POOL

        public static final XMLElement DEFAULT_THREAD_POOL
      • DIGEST_TOKEN

        public static final XMLElement DIGEST_TOKEN
      • ENCRYPT_PROTOCOL

        public static final XMLElement ENCRYPT_PROTOCOL
      • INTERNAL_THREAD_POOL

        public static final XMLElement INTERNAL_THREAD_POOL
      • JDBC_PROTOCOL

        public static final XMLElement JDBC_PROTOCOL
      • KEY_CREDENTIAL_REFERENCE

        public static final XMLElement KEY_CREDENTIAL_REFERENCE
      • OOB_THREAD_POOL

        public static final XMLElement OOB_THREAD_POOL
      • PLAIN_TOKEN

        public static final XMLElement PLAIN_TOKEN
      • PROPERTY

        public static final XMLElement PROPERTY
      • PROTOCOL

        public static final XMLElement PROTOCOL
      • REMOTE_SITE

        public static final XMLElement REMOTE_SITE
      • SHARED_SECRET_CREDENTIAL_REFERENCE

        public static final XMLElement SHARED_SECRET_CREDENTIAL_REFERENCE
      • SOCKET_PROTOCOL

        public static final XMLElement SOCKET_PROTOCOL
      • SOCKET_DISCOVERY_PROTOCOL

        public static final XMLElement SOCKET_DISCOVERY_PROTOCOL
      • TIMER_THREAD_POOL

        public static final XMLElement TIMER_THREAD_POOL
      • TRANSPORT

        public static final XMLElement TRANSPORT
    • Method Detail

      • values

        public static XMLElement[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (XMLElement c : XMLElement.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static XMLElement valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getLocalName

        public String getLocalName()
        Get the local name of this element.
        Returns:
        the local name
      • forProtocolName

        public static XMLElement forProtocolName​(org.jboss.dmr.Property protocol)
      • forAuthTokenName

        public static XMLElement forAuthTokenName​(String token)