API java : Identity


java.security
Class Identity

java.lang.Object
  extended by java.security.Identity
All Implemented Interfaces:
Serializable, Principal
Direct Known Subclasses:
IdentityScope, Signer

Deprecated. This class is no longer used. Its functionality has been replaced by java.security.KeyStore, the java.security.cert package, and java.security.Principal.

@Deprecated
public abstract class Identity
extends Object
implements Principal, Serializable

This class represents identities: real-world objects such as people, companies or organizations whose identities can be authenticated using their public keys. Identities may also be more abstract (or concrete) constructs, such as daemon threads or smart cards.

All Identity objects have a name and a public key. Names are immutable. Identities may also be scoped. That is, if an Identity is specified to have a particular scope, then the name and public key of the Identity are unique within that scope.

An Identity also has a set of certificates (all certifying its own public key). The Principal names specified in these certificates need not be the same, only the key.

An Identity can be subclassed, to include postal and email addresses, telephone numbers, images of faces and logos, and so on.

See Also:
IdentityScope, Signer, Principal, Serialized Form

Constructor Summary
protected Identity()
          Deprecated. Constructor for serialization only.
  Identity(String name)
          Deprecated. Constructs an identity with the specified name and no scope.
  Identity(String name, IdentityScope scope)
          Deprecated. Constructs an identity with the specified name and scope.
 
Method Summary
 void addCertificate(Certificate certificate)
          Deprecated. Adds a certificate for this identity.
 Certificate[] certificates()
          Deprecated. Returns a copy of all the certificates for this identity.
 boolean equals(Object identity)
          Deprecated. Tests for equality between the specified object and this identity.
 String getInfo()
          Deprecated. Returns general information previously specified for this identity.
 String getName()
          Deprecated. Returns this identity's name.
 PublicKey getPublicKey()
          Deprecated. Returns this identity's public key.
 IdentityScope getScope()
          Deprecated. Returns this identity's scope.
 int hashCode()
          Deprecated. Returns a hashcode for this identity.
protected  boolean identityEquals(Identity identity)
          Deprecated. Tests for equality between the specified identity and this identity.
 void removeCertificate(Certificate certificate)
          Deprecated. Removes a certificate from this identity.
 void setInfo(String info)
          Deprecated. Specifies a general information string for this identity.
 void setPublicKey(PublicKey key)
          Deprecated. Sets this identity's public key.
 String toString()
          Deprecated. Returns a short string describing this identity, telling its name and its scope (if any).
 String toString(boolean detailed)
          Deprecated. Returns a string representation of this identity, with optionally more details than that provided by the toString method without any arguments.
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Identity

protected Identity()
Deprecated. 
Constructor for serialization only.


Identity

public Identity(String name,
                IdentityScope scope)
         throws KeyManagementException
Deprecated. 
Constructs an identity with the specified name and scope.

Parameters:
name - the identity name.
scope - the scope of the identity.
Throws:
KeyManagementException - if there is already an identity with the same name in the scope.

Identity

public Identity(String name)
Deprecated. 
Constructs an identity with the specified name and no scope.

Parameters:
name - the identity name.
Method Detail

getName

public final String getName()
Deprecated. 
Returns this identity's name.

Specified by:
getName in interface Principal
Returns:
the name of this identity.

getScope

public final IdentityScope getScope()
Deprecated. 
Returns this identity's scope.

Returns:
the scope of this identity.

getPublicKey

public PublicKey getPublicKey()
Deprecated. 
Returns this identity's public key.

Returns:
the public key for this identity.
See Also:
setPublicKey(java.security.PublicKey)

setPublicKey

public void setPublicKey(PublicKey key)
                  throws KeyManagementException
Deprecated. 
Sets this identity's public key. The old key and all of this identity's certificates are removed by this operation.

First, if there is a security manager, its checkSecurityAccess method is called with "setIdentityPublicKey" as its argument to see if it's ok to set the public key.

Parameters:
key - the public key for this identity.
Throws:
KeyManagementException - if another identity in the identity's scope has the same public key, or if another exception occurs.
SecurityException - if a security manager exists and its checkSecurityAccess method doesn't allow setting the public key.
See Also:
getPublicKey(), SecurityManager.checkSecurityAccess(java.lang.String)

setInfo

public void setInfo(String info)
Deprecated. 
Specifies a general information string for this identity.

First, if there is a security manager, its checkSecurityAccess method is called with "setIdentityInfo" as its argument to see if it's ok to specify the information string.

Parameters:
info - the information string.
Throws:
SecurityException - if a security manager exists and its checkSecurityAccess method doesn't allow setting the information string.
See Also:
getInfo(), SecurityManager.checkSecurityAccess(java.lang.String)

getInfo

public String getInfo()
Deprecated. 
Returns general information previously specified for this identity.

Returns:
general information about this identity.
See Also:
setInfo(java.lang.String)

addCertificate

public void addCertificate(Certificate certificate)
                    throws KeyManagementException
Deprecated. 
Adds a certificate for this identity. If the identity has a public key, the public key in the certificate must be the same, and if the identity does not have a public key, the identity's public key is set to be that specified in the certificate.

First, if there is a security manager, its checkSecurityAccess method is called with "addIdentityCertificate" as its argument to see if it's ok to add a certificate.

Parameters:
certificate - the certificate to be added.
Throws:
KeyManagementException - if the certificate is not valid, if the public key in the certificate being added conflicts with this identity's public key, or if another exception occurs.
SecurityException - if a security manager exists and its checkSecurityAccess method doesn't allow adding a certificate.
See Also:
SecurityManager.checkSecurityAccess(java.lang.String)

removeCertificate

public void removeCertificate(Certificate certificate)
                       throws KeyManagementException
Deprecated. 
Removes a certificate from this identity.

First, if there is a security manager, its checkSecurityAccess method is called with "removeIdentityCertificate" as its argument to see if it's ok to remove a certificate.

Parameters:
certificate - the certificate to be removed.
Throws:
KeyManagementException - if the certificate is missing, or if another exception occurs.
SecurityException - if a security manager exists and its checkSecurityAccess method doesn't allow removing a certificate.
See Also:
SecurityManager.checkSecurityAccess(java.lang.String)

certificates

public Certificate[] certificates()
Deprecated. 
Returns a copy of all the certificates for this identity.

Returns:
a copy of all the certificates for this identity.

equals

public final boolean equals(Object identity)
Deprecated. 
Tests for equality between the specified object and this identity. This first tests to see if the entities actually refer to the same object, in which case it returns true. Next, it checks to see if the entities have the same name and the same scope. If they do, the method returns true. Otherwise, it calls identityEquals, which subclasses should override.

Specified by:
equals in interface Principal
Overrides:
equals in class Object
Parameters:
identity - the object to test for equality with this identity.
Returns:
true if the objects are considered equal, false otherwise.
See Also:
identityEquals(java.security.Identity)

identityEquals

protected boolean identityEquals(Identity identity)
Deprecated. 
Tests for equality between the specified identity and this identity. This method should be overriden by subclasses to test for equality. The default behavior is to return true if the names and public keys are equal.

Parameters:
identity - the identity to test for equality with this identity.
Returns:
true if the identities are considered equal, false otherwise.
See Also:
equals(java.lang.Object)

toString

public String toString()
Deprecated. 
Returns a short string describing this identity, telling its name and its scope (if any).

First, if there is a security manager, its checkSecurityAccess method is called with "printIdentity" as its argument to see if it's ok to return the string.

Specified by:
toString in interface Principal
Overrides:
toString in class Object
Returns:
information about this identity, such as its name and the name of its scope (if any).
Throws:
SecurityException - if a security manager exists and its checkSecurityAccess method doesn't allow returning a string describing this identity.
See Also:
SecurityManager.checkSecurityAccess(java.lang.String)

toString

public String toString(boolean detailed)
Deprecated. 
Returns a string representation of this identity, with optionally more details than that provided by the toString method without any arguments.

First, if there is a security manager, its checkSecurityAccess method is called with "printIdentity" as its argument to see if it's ok to return the string.

Parameters:
detailed - whether or not to provide detailed information.
Returns:
information about this identity. If detailed is true, then this method returns more information than that provided by the toString method without any arguments.
Throws:
SecurityException - if a security manager exists and its checkSecurityAccess method doesn't allow returning a string describing this identity.
See Also:
toString(), SecurityManager.checkSecurityAccess(java.lang.String)

hashCode

public int hashCode()
Deprecated. 
Returns a hashcode for this identity.

Specified by:
hashCode in interface Principal
Overrides:
hashCode in class Object
Returns:
a hashcode for this identity.
See Also:
Object.equals(java.lang.Object), Hashtable

Ces informations proviennent du site de http://java.sun.com

Remarques

Contenu

Le contenu de cette page provient du site de Sun, et est généré depuis un cache sur l'infobrol après certains traitements automatisés. La présentation peut donc différer du document original, mais le contenu aussi. Vous pouvez utiliser ce bouton pour afficher la page originale du site de Sun :

Quels sont les motivations de cette démarche?

Maintenir les pages en cache sur différents sites peut offrir plus de disponibilité.

Chaque page est indexée dans la base de donnée, ce qui permet de retrouver facilement les informations, au moyen des sommaires, du moteur de recherche interne, etc.

Des facilités sont mises en place pour que les membres de l'infobrol puissent effectuer des traductions en français des différents documents. Ceci devrait permettre aux débutants en programmation Java de consulter les API en français s'ils maîtrisent moins bien la langue de Shakespeare. Dans le cas où une traduction a été soumise, elle est disponible au moyen d'un lien en bas de page. Si la traduction a été validée, la page s'affiche par défaut en français, et un lien en bas de page permet d'atteindre la version en anglais.

Le code sur l'infobrol est automatiquement coloré selon la syntaxe, et les différents mots clés sont transformés en liens pour accéder rapidement aux informations.

Vous avez la possibilité de partager vos expériences en proposant vos propres extraits de code en utilisant le bouton "ajouter un commentaire" en bas de page. Si vous visitez simplement l'infobrol, vous avez déjà accès à cette fonction, mais si vous étes membre du brol, vous pouvez en plus utiliser des boutons supplémentaires de mise en forme, dont la coloration automatique de vos extraits de codes.

Réseaux sociaux

Vous pouvez modifier vos préférences dans votre profil pour ne plus afficher les interactions avec les réseaux sociaux sur ces pages.

 

Nuage de mots clés

6 mots clés dont 0 définis manuellement (plus d'information...).

Avertissement

Cette page ne possède pas encore de mots clés manuels, ceci est donc un exemple automatique (les niveaux de pertinence sont fictifs, mais les liens sont valables). Pour tester le nuage avec une page qui contient des mots définis manuellement, vous pouvez cliquer ici.

Vous pouvez modifier vos préférences dans votre profil pour ne plus afficher le nuage de mots clés.

 

Astuce pour imprimer les couleurs des cellules de tableaux : http://www.gaudry.be/ast-rf-450.html
Aucun commentaire pour cette page

© Ce document issu de l′infobrol est enregistré sous le certificat Cyber PrInterDeposit Digital Numbertection. Enregistrement IDDN n° 5329-1339
Document créé le 30/08/06 03:19, dernière modification le Vendredi 17 Juin 2011, 12:12
Source du document imprimé : http://www.gaudry.be/java-api-rf-java/security/Identity.html Document affiché 1 fois ce mois de Juin.
St.Gaudry©07.01.02
Outils (masquer)
||
Recherche (afficher)
Recherche :

Utilisateur (masquer)
Navigation (masquer)
Apparence (afficher)
Stats (afficher)
15832 documents
452 astuces.
549 niouzes.
3099 definitions.
447 membres.
8115 messages.

Document genere en :
0,54 seconde

Mises à jour :
Mises à jour du site
Citation (masquer)
Quand on tape Chuck Norris sur Google, le bouton "j'ai de la chance" disparaît...

Anonyme [Chuck Norris fact]
 
l'infobrol
Nous sommes le Vendredi 01 Juin 2012, 21:54, toutes les heures sont au format GMT+1.00 Heure, heure d'été (+1)