Package java.security
Class IdentityScope
- java.lang.Object
-
- java.security.Identity
-
- java.security.IdentityScope
-
- All Implemented Interfaces:
Serializable
,Principal
public abstract class IdentityScope extends Identity
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
IdentityScope()
IdentityScope(String var0)
IdentityScope(String var0, IdentityScope var1)
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract void
addIdentity(Identity var0)
abstract Identity
getIdentity(String var0)
Identity
getIdentity(Principal var0)
abstract Identity
getIdentity(PublicKey var0)
static IdentityScope
getSystemScope()
abstract Enumeration
identities()
abstract void
removeIdentity(Identity var0)
protected static void
setSystemScope(IdentityScope var0)
abstract int
size()
String
toString()
-
Methods inherited from class java.security.Identity
addCertificate, certificates, equals, getInfo, getName, getPublicKey, getScope, hashCode, identityEquals, removeCertificate, setInfo, setPublicKey, toString
-
-
-
-
Constructor Detail
-
IdentityScope
protected IdentityScope()
-
IdentityScope
public IdentityScope(String var0)
-
IdentityScope
public IdentityScope(String var0, IdentityScope var1) throws KeyManagementException
- Throws:
KeyManagementException
-
-
Method Detail
-
addIdentity
public abstract void addIdentity(Identity var0) throws KeyManagementException
- Throws:
KeyManagementException
-
removeIdentity
public abstract void removeIdentity(Identity var0) throws KeyManagementException
- Throws:
KeyManagementException
-
identities
public abstract Enumeration identities()
-
setSystemScope
protected static void setSystemScope(IdentityScope var0)
-
size
public abstract int size()
-
toString
public String toString()
-
getSystemScope
public static IdentityScope getSystemScope()
-
-