View | Details | Raw Unified | Return to bug 60395
Collapse All | Expand All

(-)java/org/apache/catalina/realm/LocalStrings.properties (+1 lines)
Lines 73-78 Link Here
73
realmBase.createUsernameRetriever.IllegalAccessException=Cannot create object of type {0}.
73
realmBase.createUsernameRetriever.IllegalAccessException=Cannot create object of type {0}.
74
realmBase.credentialHandler.customCredentialHandler=Unable to set the property [{0}] to value [{1}] as a custom CredentialHandler has been configured
74
realmBase.credentialHandler.customCredentialHandler=Unable to set the property [{0}] to value [{1}] as a custom CredentialHandler has been configured
75
realmBase.cannotGetRoles=Cannot get roles from principal [{0}]
75
realmBase.cannotGetRoles=Cannot get roles from principal [{0}]
76
realmBase.gssContextNotEstablished=Authenticator implementation error: the passed security context is not fully established
76
userDatabaseRealm.lookup=Exception looking up UserDatabase under key {0}
77
userDatabaseRealm.lookup=Exception looking up UserDatabase under key {0}
77
userDatabaseRealm.noDatabase=No UserDatabase component found under key {0}
78
userDatabaseRealm.noDatabase=No UserDatabase component found under key {0}
78
dataSourceRealm.authenticateFailure=Username {0} NOT successfully authenticated
79
dataSourceRealm.authenticateFailure=Username {0} NOT successfully authenticated
(-)java/org/apache/catalina/realm/RealmBase.java (+2 lines)
Lines 508-513 Link Here
508
                }
508
                }
509
                return getPrincipal(name, gssCredential);
509
                return getPrincipal(name, gssCredential);
510
            }
510
            }
511
        } else {
512
            log.error(sm.getString("realmBase.gssContextNotEstablished"));
511
        }
513
        }
512
514
513
        // Fail in all other cases
515
        // Fail in all other cases

Return to bug 60395