Searched refs:thisC (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/security/auth/
H A DPrivateCredentialPermission.java433 private boolean impliesCredentialClass(String thisC, String thatC) { argument
436 if (thisC == null || thatC == null)
441 thisC + "/" + thatC);
443 if (thisC.equals("*"))
451 if (thisC.endsWith("*")) {
452 String cClass = thisC.substring(0, thisC.length() - 2);
457 return thisC.equals(thatC);

Completed in 3154 milliseconds