public static enum SecurityIdentity.Type extends java.lang.Enum<SecurityIdentity.Type>
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.
|
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.
|
public static final SecurityIdentity.Type ODBC
public static final SecurityIdentity.Type FTP
public static final SecurityIdentity.Type JMS
public static final SecurityIdentity.Type JNDI
public static final SecurityIdentity.Type JDBC
public static final SecurityIdentity.Type MQ
public static final SecurityIdentity.Type MQTT
public static final SecurityIdentity.Type EIS
public static final SecurityIdentity.Type EMAIL
public static final SecurityIdentity.Type IMS
public static final SecurityIdentity.Type CICS
public static final SecurityIdentity.Type SFTP
public static final SecurityIdentity.Type CD
public static final SecurityIdentity.Type WXS
public static final SecurityIdentity.Type UNKNOWN
public static final SecurityIdentity.Type ANY
public static SecurityIdentity.Type[] values()
for (SecurityIdentity.Type c : SecurityIdentity.Type.values()) System.out.println(c);
public static SecurityIdentity.Type valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static SecurityIdentity.Type fromString(java.lang.String str)
str
- the security identity type as a string.public java.lang.String toString()
toString
in class java.lang.Enum<SecurityIdentity.Type>