Home | History | Annotate | Download | only in kerberos

Lines Matching refs:another

40 		KerberosName another = new KerberosName("service@localhost", GSSName.NT_HOSTBASED_SERVICE);
41 assertEquals(one, another);
44 another = new KerberosName("service/localhost", GSSName.NT_HOSTBASED_SERVICE);
45 assertEquals(one, another);
48 another = new KerberosName("service@localhost", GSSName.NT_USER_NAME);
49 assertEquals(one, another);
52 another = new KerberosName("service/localhost", GSSName.NT_USER_NAME);
53 assertFalse(one.equals(another));
57 another = new KerberosName("service@localhost", KRB5_PRINCIPAL_NAMETYPE);
58 assertEquals(one, another);
61 another = new KerberosName("service/localhost",KRB5_PRINCIPAL_NAMETYPE);
62 assertFalse(one.equals(another));
65 another = new KerberosName("service@localhost", GSSName.NT_USER_NAME);
66 assertEquals(one,another);
69 another = new KerberosName("service@localhost", GSSName.NT_HOSTBASED_SERVICE);
70 assertFalse(one.equals(another));
73 another = new KerberosName("service@localhost", GSSName.NT_HOSTBASED_SERVICE);
74 assertEquals(one,another);
77 another = new KerberosName("service@localhost", GSSName.NT_HOSTBASED_SERVICE);
78 assertFalse(one.equals(another));
81 another = new KerberosName("service@localhost", GSSName.NT_HOSTBASED_SERVICE);
82 assertFalse(one.equals(another));