Class GroupMemberXml

  • All Implemented Interfaces:
    java.lang.Comparable<GroupMemberXml>

    public class GroupMemberXml
    extends java.lang.Object
    implements java.lang.Comparable<GroupMemberXml>
    XML model for a group member. This is not used in persistence.
    Since:
    6.2.0
    Version:
    $Revision: 25303 $ $Date: 2022-10-22 22:48:02 -0300 (Sat, 22 Oct 2022) $
    • Constructor Summary

      Constructors 
      Constructor Description
      GroupMemberXml​(java.lang.String memberId, java.lang.Boolean isLocal)
      Creates a new instance with the given parameters.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int compareTo​(GroupMemberXml o)  
      java.lang.String getMemberId()
      Returns the member identifier.
      java.lang.Boolean isLocal()
      Returns whether the member is local.
      • Methods inherited from class java.lang.Object

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

      • GroupMemberXml

        public GroupMemberXml​(java.lang.String memberId,
                              java.lang.Boolean isLocal)
        Creates a new instance with the given parameters.
        Parameters:
        memberId - the group member identifier.
        isLocal - indicates whether the member is local or not.
        Since:
        6.2.0
    • Method Detail

      • getMemberId

        public java.lang.String getMemberId()
        Returns the member identifier.
        Returns:
        the member identifier.
        Since:
        6.2.0
      • isLocal

        public java.lang.Boolean isLocal()
        Returns whether the member is local.
        Returns:
        whether the member is local.
        Since:
        6.2.0