Class GroupMemberXml
- java.lang.Object
-
- lumis.portal.structure.sync.model.channel.GroupMemberXml
-
- All Implemented Interfaces:
Comparable<GroupMemberXml>
public class GroupMemberXml extends Object implements Comparable<GroupMemberXml>
XML model for a group member. This is not used in persistence.- Since:
- 6.2.0
- Version:
- $Revision: 14187 $ $Date: 2012-04-02 11:44:41 -0300 (Mon, 02 Apr 2012) $
-
-
Constructor Summary
Constructors Constructor Description GroupMemberXml(String memberId, 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)
String
getMemberId()
Returns the member identifier.Boolean
isLocal()
Returns whether the member is local.
-
-
-
Method Detail
-
getMemberId
public String getMemberId()
Returns the member identifier.- Returns:
- the member identifier.
- Since:
- 6.2.0
-
isLocal
public Boolean isLocal()
Returns whether the member is local.- Returns:
- whether the member is local.
- Since:
- 6.2.0
-
compareTo
public int compareTo(GroupMemberXml o)
- Specified by:
compareTo
in interfaceComparable<GroupMemberXml>
-
-