Searched defs:GSSLibStub (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/jgss/wrapper/
H A DGSSLibStub.java43 class GSSLibStub { class
96 private static Hashtable<Oid, GSSLibStub>
97 table = new Hashtable<Oid, GSSLibStub>(5);
99 static GSSLibStub getInstance(Oid mech) throws GSSException {
100 GSSLibStub s = table.get(mech);
102 s = new GSSLibStub(mech);
107 private GSSLibStub(Oid mech) throws GSSException { method in class:GSSLibStub
108 SunNativeProvider.debug("Created GSSLibStub for mech " + mech);
114 if (!(obj instanceof GSSLibStub)) {
117 return (mech.equals(((GSSLibStub) ob
[all...]

Completed in 29 milliseconds