- java.lang.Object
-
- java.nio.file.attribute.UserPrincipalLookupService
-
public abstract class UserPrincipalLookupService extends Object
An object to lookup user and group principals by name. AUserPrincipal
represents an identity that may be used to determine access rights to objects in a file system. AGroupPrincipal
represents a group identity. AUserPrincipalLookupService
defines methods to lookup identities by name or group name (which are typically user or account names). Whether names and group names are case sensitive or not depends on the implementation. The exact definition of a group is implementation specific but typically a group represents an identity created for administrative purposes so as to determine the access rights for the members of the group. In particular it is implementation specific if the namespace for names and groups is the same or is distinct. To ensure consistent and correct behavior across platforms it is recommended that this API be used as if the namespaces are distinct. In other words, thelookupPrincipalByName
should be used to lookup users, andlookupPrincipalByGroupName
should be used to lookup groups.- Since:
- 1.7
- See Also:
FileSystem.getUserPrincipalLookupService()
-
-
Constructor Summary
Constructors Modifier Constructor and Description protected
UserPrincipalLookupService()
Initializes a new instance of this class.
-
Method Summary
Methods Modifier and Type Method and Description abstract GroupPrincipal
lookupPrincipalByGroupName(String group)
Lookup a group principal by group name.abstract UserPrincipal
lookupPrincipalByName(String name)
Lookup a user principal by name.
-
-
-
Constructor Detail
-
UserPrincipalLookupService
protected UserPrincipalLookupService()
Initializes a new instance of this class.
-
-
Method Detail
-
lookupPrincipalByName
public abstract UserPrincipal lookupPrincipalByName(String name) throws IOException
Lookup a user principal by name.- Parameters:
name
- the string representation of the user principal to lookup- Returns:
- a user principal
- Throws:
UserPrincipalNotFoundException
- the principal does not existIOException
- if an I/O error occursSecurityException
- In the case of the default provider, and a security manager is installed, it checksRuntimePermission
("lookupUserInformation")
-
lookupPrincipalByGroupName
public abstract GroupPrincipal lookupPrincipalByGroupName(String group) throws IOException
Lookup a group principal by group name.Where an implementation does not support any notion of group then this method always throws
UserPrincipalNotFoundException
. Where the namespace for user accounts and groups is the same, then this method is identical to invokinglookupPrincipalByName
.- Parameters:
group
- the string representation of the group to lookup- Returns:
- a group principal
- Throws:
UserPrincipalNotFoundException
- the principal does not exist or is not a groupIOException
- if an I/O error occursSecurityException
- In the case of the default provider, and a security manager is installed, it checksRuntimePermission
("lookupUserInformation")
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
05/11/2024 17:39:38 Cette version de la page est en cache (à la date du 05/11/2024 17:39:38) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 11/06/2005, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-java/nio/file/attribute/UserPrincipalLookupService.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.