Interface WebUserList


  • public interface WebUserList
    The WebUserList interface represents an editable list of WebUserEntity objects. This interface can be obtained from the WebUserEntity.getParents() to represent the collection of parent groups for this account. It also can be obtained from WebUserGroup.getMembers() to represent the collection of child members in a group account. If this list is modified, then it will be necessary to save the owner user back to metadata before the changes take effect.
    Since:
    MicroStrategy Web 7.5.2
    • Method Detail

      • size

        int size()
        Returns the number of items in the collection.
        Returns:
        The number of WebUserEntity objects in the collection.
      • contains

        boolean contains​(WebUserEntity user)
        Returns true if the given user exists in the collection, false otherwise.
        Parameters:
        user - The WebUserEntity object to search for in the collection.
        Returns:
        True if the item is found, false otherwise.
      • elements

        java.util.Enumeration elements()
        Returns a java.util.Enumeration collection containing the items in the collection.
        Returns:
        A java.util.Enumeration collection containing the items in the collection.
      • next

        WebUserEntity next​(java.util.Enumeration en)
        A helper method that returns properly casted next element of enumeration
        Parameters:
        en - Enumeration
        Returns:
        WebUserEntity
        Since:
        MicroStrategy Web 8.0.0
      • isUpdatable

        boolean isUpdatable()
        Since:
        MicroStrategy Web 8.0.0
      • clear

        void clear()
        Since:
        MicroStrategy Web 8.0.0