Class ServerConnectionFactory
- java.lang.Object
-
- com.ibm.security.access.server_connections.ServerConnectionFactory
-
public class ServerConnectionFactory extends java.lang.Object
Used to look up configured server connections on the appliance. Can produce LDAP, Webserver, SMTP, IBM Security Verify. Does not support DB2/Oracle/Postgres/SolidDb server connections.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
ServerConnectionFactory_java_copyright
static java.lang.String
ServerConnectionFactory_java_sourceCodeID
-
Constructor Summary
Constructors Constructor Description ServerConnectionFactory()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CiServerConnection
getCiConnectionById(java.lang.String id)
Get a web server connectionstatic CiServerConnection
getCiConnectionByName(java.lang.String name)
Get a web server connectionstatic LdapServerConnection
getLdapConnectionById(java.lang.String id)
Get a ldap server connectionstatic LdapServerConnection
getLdapConnectionByName(java.lang.String name)
Get a ldap server connectionstatic SmtpServerConnection
getSmtpConnectionById(java.lang.String id)
Get a smtp server connectionstatic SmtpServerConnection
getSmtpConnectionByName(java.lang.String name)
Get a smtp server connectionstatic WebServerConnection
getWebConnectionById(java.lang.String id)
Get a web server connectionstatic WebServerConnection
getWebConnectionByName(java.lang.String name)
Get a web server connectionvoid
postConstruct()
-
-
-
Field Detail
-
ServerConnectionFactory_java_sourceCodeID
public static final java.lang.String ServerConnectionFactory_java_sourceCodeID
- See Also:
- Constant Field Values
-
ServerConnectionFactory_java_copyright
public static final java.lang.String ServerConnectionFactory_java_copyright
-
-
Method Detail
-
postConstruct
public void postConstruct()
-
getLdapConnectionById
public static LdapServerConnection getLdapConnectionById(java.lang.String id)
Get a ldap server connection- Parameters:
uuid
- which identifies this server connection
-
getLdapConnectionByName
public static LdapServerConnection getLdapConnectionByName(java.lang.String name)
Get a ldap server connection- Parameters:
name
- which identifies this server connection
-
getSmtpConnectionById
public static SmtpServerConnection getSmtpConnectionById(java.lang.String id)
Get a smtp server connection- Parameters:
uuid
- which identifies this server connection
-
getSmtpConnectionByName
public static SmtpServerConnection getSmtpConnectionByName(java.lang.String name)
Get a smtp server connection- Parameters:
name
- which identifies this server connection
-
getWebConnectionById
public static WebServerConnection getWebConnectionById(java.lang.String id)
Get a web server connection- Parameters:
uuid
- which identifies this server connection
-
getWebConnectionByName
public static WebServerConnection getWebConnectionByName(java.lang.String name)
Get a web server connection- Parameters:
name
- which identifies this server connection
-
getCiConnectionById
public static CiServerConnection getCiConnectionById(java.lang.String id)
Get a web server connection- Parameters:
uuid
- which identifies this server connection
-
getCiConnectionByName
public static CiServerConnection getCiConnectionByName(java.lang.String name)
Get a web server connection- Parameters:
name
- which identifies this server connection
-
-