Class PortalGroupUsers


  • public final class PortalGroupUsers
    extends java.lang.Object
    Holds the administrators and users for a portal group.
    Since:
    100.0.0
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.List<java.lang.String> getAdmins()
      Returns the administrators of the group.
      java.util.List<java.lang.String> getUsers()
      Returns the users that belong to the group.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getAdmins

        public java.util.List<java.lang.String> getAdmins()
        Returns the administrators of the group.
        Returns:
        an unmodifiable list of usernames of administrators of the group. This will throw an UnsupportedOperationException if an attempt is made to modify it.
        Since:
        100.0.0
      • getUsers

        public java.util.List<java.lang.String> getUsers()
        Returns the users that belong to the group.
        Returns:
        an unmodifiable list of usernames of users that belong to the group. This will throw an UnsupportedOperationException if an attempt is made to modify it.
        Since:
        100.0.0