Methods Summary |
---|
public void | addIdentity(java.security.Identity identity)
throw new KeyManagementException(
"This scope does not support adding identities");
|
public java.security.Identity | getIdentity(java.lang.String name)
Identity id;
id = privateScope.getIdentity(name);
if (id == null)
id = publicScope.getIdentity(name);
return id;
|
public java.security.Identity | getIdentity(java.security.PublicKey key)
Identity id;
id = privateScope.getIdentity(key);
if (id == null)
id = publicScope.getIdentity(key);
return id;
|
public java.util.Enumeration | identities()
return new XYZIdentityScopeEnumerator();
|
public void | removeIdentity(java.security.Identity identity)
throw new KeyManagementException(
"This scope does not support removing identities");
|
public int | size()
return publicScope.size() + privateScope.size();
|