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 protectedIdentityScope()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 voidaddIdentity(Identity var0)abstract IdentitygetIdentity(String var0)IdentitygetIdentity(Principal var0)abstract IdentitygetIdentity(PublicKey var0)static IdentityScopegetSystemScope()abstract Enumerationidentities()abstract voidremoveIdentity(Identity var0)protected static voidsetSystemScope(IdentityScope var0)abstract intsize()StringtoString()-
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()
-
-