com.ibm.broker.config.proxy

Enum SecurityIdentity.Type

  • java.lang.Object
    • Enum Constant Summary

      Enum Constants 
      Enum Constant and Description
      ANY
      Any - special value meaning match any security identity type.
      CD
      IBM Connect:Direct servers.
      CICS
      IBM CICS servers.
      EIS
      WebSphere Adapter servers, for example SAP, Peoplesoft, JDEdwards, etc.
      EMAIL
      Email servers.
      FTP
      FTP servers.
      IMS
      IBM IMS databases.
      JDBC
      JDBC databases.
      JMS
      JMS servers.
      JNDI
      JNDI servers.
      MQ
      IBM MQ queue managers.
      MQTT
      MQTT brokers.
      ODBC
      ODBC databases.
      SFTP
      SFTP servers.
      UNKNOWN
      Unknown - not supported, or not known by this level of the IntegrationAPI.
      WXS
      IBM WebSphere eXtreme Scale servers.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      static SecurityIdentity.Type fromString(java.lang.String str)
      Get the type of a security identity from the string.
      java.lang.String toString()
      Get the string representation of this security identity type.
      static SecurityIdentity.Type valueOf(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static SecurityIdentity.Type[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Method Detail

      • values

        public static SecurityIdentity.Type[] 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 (SecurityIdentity.Type c : SecurityIdentity.Type.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static SecurityIdentity.Type valueOf(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • fromString

        public static SecurityIdentity.Type fromString(java.lang.String str)
        Get the type of a security identity from the string. This is the same string that is passed to mqsisetdbparms. For example, for -n ims::MYIMSSERVER, this returns IMS.
        Parameters:
        str - the security identity type as a string.
        Returns:
        the security identity type.
      • toString

        public java.lang.String toString()
        Get the string representation of this security identity type. This is the same string that can be passed to mqsisetdbparms. For example, for IMS, this returns ims (-n ims::MYIMSSERVER).
        Overrides:
        toString in class java.lang.Enum<SecurityIdentity.Type>
        Returns:
        the security identity type as a string.