Lines Matching refs:realm

51     private String realm;
58 realm = parseRealm(name);
63 if (realm != null) {
64 new_realm.realm = new String(realm);
79 if (this.realm != null && that.realm != null ) {
80 return this.realm.equals(that.realm);
82 return (this.realm == null && that.realm == null);
89 if( realm != null ) {
90 result = 37 * result + realm.hashCode();
108 realm = new KerberosString(encoding).toString();
109 if (realm == null || realm.length() == 0)
111 if (!isValidRealmString(realm))
116 return realm;
179 // This is protected because the definition of a realm
205 out.putDerValue(new KerberosString(this.realm).toDerValue());
211 * Parse (unmarshal) a realm from a DER input stream. This form
263 * a TGT from the initiating realm cRealm to the target realm
276 * in the configuration file as an intermediary realm.
278 * @param cRealm the initiating realm
279 * @param sRealm the target realm
306 * to obtain credentials from the initiating realm cRealm to
307 * the target realm sRealm.
308 * @param cRealm the initiating realm
309 * @param sRealm the target realm
316 * for a given client realm C there is a tag C that
412 ": pushed realm on to stack: " +
418 ": ignoring realm: [" +
432 * Get next intermediary realm from the stack
487 * Build a list of realm that can be traversed
488 * to obtain credentials from the initiating realm cRealm
489 * for a service in the target realm sRealm.
490 * @param cRealm the initiating realm
491 * @param sRealm the target realm
618 // For an initiator realm A.B.C.D.COM,
620 // ie the issuer realm is the immediate descendant
621 // of the target realm.
650 private static String substring(String realm, int componentIndex)
652 int i = 0 , j = 0, len = realm.length();
655 if (realm.charAt(i++) != PrincipalName.REALM_COMPONENT_SEPARATOR)
660 return realm.substring(i);