java.security.acl

Interface Group

  • All Superinterfaces:
    Principal

    public interface Group
    extends Principal
    This interface is used to represent a group of principals. (A principal represents an entity such as an individual user or a company).

    Note that Group extends Principal. Thus, either a Principal or a Group can be passed as an argument to methods containing a Principal parameter. For example, you can add either a Principal or a Group to a Group object by calling the object's addMember method, passing it the Principal or Group.

    • Method Detail

      • addMember

        boolean addMember(Principal user)
        Adds the specified member to the group.
        Parameters:
        user - the principal to add to this group.
        Returns:
        true if the member was successfully added, false if the principal was already a member.
      • removeMember

        boolean removeMember(Principal user)
        Removes the specified member from the group.
        Parameters:
        user - the principal to remove from this group.
        Returns:
        true if the principal was removed, or false if the principal was not a member.
      • isMember

        boolean isMember(Principal member)
        Returns true if the passed principal is a member of the group. This method does a recursive search, so if a principal belongs to a group which is a member of this group, true is returned.
        Parameters:
        member - the principal whose membership is to be checked.
        Returns:
        true if the principal is a member of this group, false otherwise.
      • members

        Enumeration<? extends Principal> members()
        Returns an enumeration of the members in the group. The returned objects can be instances of either Principal or Group (which is a subclass of Principal).
        Returns:
        an enumeration of the group members.

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.

Document créé le 30/08/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-java/security/acl/Group.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

  1. Consulter le document html Langue du document :fr Manuel PHP : https://docs.oracle.com, Group

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.

Table des matières Haut