Package org.eclipse.ecf.core.security
Class ConnectContextFactory
java.lang.Object
org.eclipse.ecf.core.security.ConnectContextFactory
Helper class for creating instances of IConnectContext
-
Method Summary
Modifier and TypeMethodDescriptionstatic IConnectContext
createPasswordConnectContext
(String password) Create password connect context, where password is represented as a Stringstatic IConnectContext
createUsernamePasswordConnectContext
(String username, Object password) Create username and password connect context, where username is represented as a String and password as an Object.
-
Method Details
-
createUsernamePasswordConnectContext
public static IConnectContext createUsernamePasswordConnectContext(String username, Object password) Create username and password connect context, where username is represented as a String and password as an Object.- Parameters:
username
- the usernamepassword
- the password- Returns:
- IConnectContext for accessing the username and password
-
createPasswordConnectContext
Create password connect context, where password is represented as a String- Parameters:
password
- the password to use- Returns:
- IConnectContext for accessing the given password
-