Searched defs:password (Results 1 - 25 of 109) sorted by relevance

12345

/glassfish-3.1.2/common/internal-api/src/main/java/org/glassfish/internal/api/
H A DLocalPassword.java46 * Manage a local password, which is a cryptographically secure random number
48 * A new local password is generated each time the server starts. The
50 * such as stop-domain, without the user needing to supply a password.
58 * Is the given password the local password?
60 * @param password the password to test
61 * @return true if it is a local password, false otherwise
63 public boolean isLocalPassword(String password); argument
66 * Get the local password
[all...]
H A DAdminAccessController.java85 * @param password String representing clear-text password of the user doing an admin operation
91 AdminAccessController.Access loginAsAdmin(String user, String password, argument
107 * @param password String representing clear-text password of the user doing an admin operation
115 AdminAccessController.Access loginAsAdmin(String user, String password, String realm, argument
/glassfish-3.1.2/tests/osgi-javaee/osgi-web/hybridapp1/src/main/java/sahoo/hybridapp/example1/
H A DUserAuthService.java48 boolean login(String name, String password); argument
49 boolean register(String name, String password); argument
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/realm/
H A DJAASCallbackHandler.java87 * @param password Password to be authenticated with
90 char[] password) {
95 this.password = ((password != null) ? ((char[])password.clone()) : null);
104 * The password to be authenticated with.
106 protected char[] password = null; field in class:JAASCallbackHandler
146 if (password != null) {
147 passwordcontents = (char[])password.clone();
89 JAASCallbackHandler(JAASRealm realm, String username, char[] password) argument
/glassfish-3.1.2/admin/util/src/main/java/com/sun/enterprise/admin/util/
H A DAuthenticationInfo.java44 * A class that holds the user and password for the connection to the server.
50 private final String password; field in class:AuthenticationInfo
55 * @param password the clear text password for the connection
57 public AuthenticationInfo(String user, String password) { argument
59 this.password = password;
71 * Returns the password in clear text.
75 return password;
H A DJMXConnectorConfig.java48 private String password=null; field in class:JMXConnectorConfig
57 String user, String password, String protocol)
62 this.password=password;
80 return password;
56 JMXConnectorConfig(String host, String port, String user, String password, String protocol) argument
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/jauth/callback/
H A DPasswordValidationCallback.java59 * @param password the user's password, which may be null.
61 public PasswordValidationCallback(String username, char[] password) { argument
62 super(null, username, password);
/glassfish-3.1.2/connectors/javax.resource/src/main/java/javax/resource/spi/security/
H A DPasswordCredential.java47 * password.
59 private char[] password; field in class:PasswordCredential
64 * user name and password.
66 * <p> Note that the given user password is cloned before it is stored in
70 * @param password the user's password
73 PasswordCredential(String userName, char[] password) { argument
75 this.password = (char[])password.clone();
89 * Returns the user password
[all...]
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/
H A DResourcePrincipal.java52 private String password; field in class:ResourcePrincipal
56 public ResourcePrincipal(String name, String password) { argument
58 this.password = password;
62 return password;
71 (isEqual(this.password, other.password)));
82 if (password != null) {
83 result += password.hashCode();
/glassfish-3.1.2/deployment/javax.enterprise.deploy/src/main/java/javax/enterprise/deploy/spi/factories/
H A DDeploymentFactory.java88 * @param password An optional password (may be <tt>null</yy> if
96 String username, String password)
95 getDeploymentManager(String uri, String username, String password) argument
/glassfish-3.1.2/security/webintegration/src/main/java/com/sun/web/security/
H A DWebProgrammaticLoginImpl.java100 * @param password User password.
113 public Boolean login(String user, char[] password, String realm, argument
125 LoginContextDriver.login(user, password, realm);
134 WebPrincipal principal = new WebPrincipal(user, password, secCtx);
/glassfish-3.1.2/tests/amx/src/org/glassfish/admin/amxtest/
H A DTestClientTrustStoreTrustManager.java61 final char[] password) {
62 super(trustStore, password);
59 TestClientTrustStoreTrustManager( final File trustStore, final char[] password) argument
/glassfish-3.1.2/tests/osgi-javaee/osgi-web/hybridapp1/src/main/java/sahoo/hybridapp/example1/impl/
H A DUserAuthServiceEJB.java65 public boolean login(String name, String password) argument
76 "' and password= '" + password + "'";
103 public boolean register(String name, String password) argument
113 " values('" + name + "', '" + password + "')";
/glassfish-3.1.2/admin/jmx-remote/client/src/main/java/com/sun/enterprise/admin/jmx/remote/
H A DSunOneHttpJmxConnectorFactory.java83 public static JMXConnector connect(JMXServiceURL url, String user, String password) argument
85 return connect(url, user, password, null);
88 public static JMXConnector connect(JMXServiceURL url, String user, String password, Map extraEnv) argument
93 if (password != null)
94 env.put(DefaultConfiguration.ADMIN_PASSWORD_ENV_PROPERTY_NAME, password);
/glassfish-3.1.2/admin/jmx-remote/common/src/main/java/com/sun/enterprise/admin/jmx/remote/comm/
H A DAuthenticationInfo.java49 /** An class that holds the user and password for the connection to the server.
58 private final String password; field in class:AuthenticationInfo
62 * @param password the clear text password for the connection
64 public AuthenticationInfo(String user, String password) { argument
66 this.password = password;
76 /** Returns the password in clear text.
80 return password;
/glassfish-3.1.2/cluster/common/src/main/java/com/sun/enterprise/util/cluster/windows/process/
H A DWindowsCredentials.java53 private final String password; field in class:WindowsCredentials
60 * @param password - password
62 public WindowsCredentials(String host, String domain, String user, String password) { argument
66 this.password = password;
68 if(!ok(host) || !ok(domain) || !ok(user) || !ok(password))
85 return password;
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc-core/src/main/java/com/sun/gjc/spi/
H A DConnectionRequestInfo.java52 private String password; field in class:ConnectionRequestInfo
58 * @param password Password
60 public ConnectionRequestInfo(String user, String password) { argument
62 this.password = password;
75 * Retrieves the password of the ConnectionRequestInfo.
80 return password;
93 isEqual(this.password, other.password));
105 String result = "" + user + password;
[all...]
/glassfish-3.1.2/security/core/src/main/java/com/iplanet/ias/security/auth/login/
H A DPasswordLoginModule.java73 String password,
77 return commitAuthentication(username, password.toCharArray(), theRealm, groups);
83 char[] password,
72 commitAuthentication(String username, String password, Realm theRealm, String[] groups) argument
82 commitAuthentication(String username, char[] password, Realm theRealm, String[] groups) argument
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/
H A DTextLoginDialog.java72 private char[] password = null; field in class:TextLoginDialog
125 /* Get the keystore password to see if the user is
135 // Let the user try putting password thrice
181 *@return The password of the user in plain text...
184 return (password == null) ? null : Arrays.copyOf(password, password.length);
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/auth/login/
H A DPamLoginModule.java54 * classes to authenticate the given username and password
97 * @param password Given password.
102 private UnixUser authenticate(String username, String password) throws LoginException { argument
114 user = new PAM(pamService).authenticate(username, password);
H A DPasswordLoginModule.java48 * Abstract base class for password-based login modules.
75 * @param password Password of this user.
84 String password,
97 * @param password Password of this user in char[].
105 char[] password,
83 commitAuthentication(String username, String password, Realm theRealm, String[] groups) argument
104 commitAuthentication(String username, char[] password, Realm theRealm, String[] groups) argument
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/common/
H A DProgrammaticLoginInterface.java72 * @param password Password for user.
80 Boolean login(final String user, final String password, final String realm, boolean errors) throws Exception; argument
99 * @param password Password for user.
103 Boolean login(final String user, final String password); argument
118 * @param password Password for user.
126 Boolean login(final String user, final String password, final String realm, final HttpServletRequest request, final HttpServletResponse response, boolean errors) throws Exception; argument
137 * @param password Password for user.
146 Boolean login(final String user, final String password, final HttpServletRequest request, final HttpServletResponse response); argument
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/web/integration/
H A DWebProgrammaticLogin.java77 * @param password User password.
90 public Boolean login(String user, char[] password, String realm, argument
/glassfish-3.1.2/security/javax.security.auth.message/src/main/java/javax/security/auth/message/callback/
H A DPasswordValidationCallback.java50 * to employ the password validation facilities of its containing runtime.
60 private char[] password; field in class:PasswordValidationCallback
70 * @param password tTe user's password, which may be null.
73 Subject subject, String username, char[] password) {
76 if (password != null) {
77 this.password = (char[])password.clone();
100 * Get the password.
102 * <p> Note that this method returns a reference to the password
72 PasswordValidationCallback( Subject subject, String username, char[] password) argument
[all...]
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/connectors/authentication/
H A DEisBackendPrincipal.java47 * The backend principal consist of the userName and password
56 private String password; field in class:EisBackendPrincipal
68 * @param password Password
70 public EisBackendPrincipal(String userName, String password) { argument
72 this.password = password;
84 * Setter method for password property
85 * @param password Password
87 public void setPassword(String password) { argument
88 this.password
[all...]

Completed in 68 milliseconds

12345