Class PortalItemGroups


  • public final class PortalItemGroups
    extends java.lang.Object
    Represents the groups a portal item belongs to.
    Since:
    100.0.0
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.List<PortalGroup> getAdmins()
      Gets a list of the groups the item belongs to for which the current user is an administrator.
      java.util.List<PortalGroup> getMembers()
      Gets a list of the groups the item belongs to for which the current user is a member.
      java.util.List<PortalGroup> getOthers()
      Gets a list of the groups the item belongs to that are public or shared to the current user's organization but that the user is not a member of.
      • Methods inherited from class java.lang.Object

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

      • PortalItemGroups

        public PortalItemGroups()
    • Method Detail

      • getAdmins

        public java.util.List<PortalGroup> getAdmins()
        Gets a list of the groups the item belongs to for which the current user is an administrator.
        Returns:
        an unmodifiable list of the groups; this will throw an UnsupportedOperationException if an attempt is made to modify it
        Since:
        100.0.0
      • getMembers

        public java.util.List<PortalGroup> getMembers()
        Gets a list of the groups the item belongs to for which the current user is a member.
        Returns:
        an unmodifiable list of the groups; this will throw an UnsupportedOperationException if an attempt is made to modify it
        Since:
        100.0.0
      • getOthers

        public java.util.List<PortalGroup> getOthers()
        Gets a list of the groups the item belongs to that are public or shared to the current user's organization but that the user is not a member of.
        Returns:
        an unmodifiable list of the groups; this will throw an UnsupportedOperationException if an attempt is made to modify it
        Since:
        100.0.0