Class AddMembersToGroupWithGroupJson
- java.lang.Object
-
- com.blackberry.workspaces.sdk.api.json.BaseJson
-
- com.blackberry.workspaces.sdk.api.json.AddMembersToGroupWithGroupJson
-
- All Implemented Interfaces:
Serializable
public class AddMembersToGroupWithGroupJson extends BaseJson
Add multiple users to a group and add group information.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AddMembersToGroupWithGroupJson()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description String
getEmailMessage()
String
getEmailSubject()
String
getGroupName()
Current group nameboolean
getIsSendMail()
Deprecated.List<AddMemberToGroupJson>
getManagersList()
List of managers to add to group.List<AddMemberToGroupJson>
getMembersList()
List of members to add to group.String
getRoomGuid()
The guid of the workspace containing the group.Integer
getRoomId()
The id of the workspace containing the group.boolean
isIsSendMail()
void
setEmailMessage(String emailMessage)
void
setEmailSubject(String emailSubject)
void
setGroupName(String groupName)
Current group namevoid
setIsSendMail(boolean isSendMail)
void
setManagersList(List<AddMemberToGroupJson> managersList)
List of managers to add to group.void
setMembersList(List<AddMemberToGroupJson> membersList)
List of members to add to group.void
setRoomGuid(String roomGuid)
The guid of the workspace containing the group.void
setRoomId(Integer roomId)
The id of the workspace containing the group.-
Methods inherited from class com.blackberry.workspaces.sdk.api.json.BaseJson
getObjType, setObjType, toString
-
-
-
-
Method Detail
-
getMembersList
public List<AddMemberToGroupJson> getMembersList()
List of members to add to group.- Returns:
- List of members to add to group.
-
setMembersList
public void setMembersList(List<AddMemberToGroupJson> membersList)
List of members to add to group.- Parameters:
membersList
- List of members to add to group.
-
getRoomGuid
public String getRoomGuid()
The guid of the workspace containing the group. Provide either it or roomId, but not both.- Returns:
- The guid of the workspace containing the group. Provide either it or roomId, but not both.
-
setRoomGuid
public void setRoomGuid(String roomGuid)
The guid of the workspace containing the group. Provide either it or roomId, but not both.- Parameters:
roomGuid
- The guid of the workspace containing the group. Provide either it or roomId, but not both.
-
getGroupName
public String getGroupName()
Current group name- Returns:
- Current group name
-
setGroupName
public void setGroupName(String groupName)
Current group name- Parameters:
groupName
- Current group name
-
getManagersList
public List<AddMemberToGroupJson> getManagersList()
List of managers to add to group.- Returns:
- List of managers to add to group.
-
setManagersList
public void setManagersList(List<AddMemberToGroupJson> managersList)
List of managers to add to group.- Parameters:
managersList
- List of managers to add to group.
-
getEmailMessage
public String getEmailMessage()
-
setEmailMessage
public void setEmailMessage(String emailMessage)
-
isIsSendMail
public boolean isIsSendMail()
-
getIsSendMail
@Deprecated public boolean getIsSendMail()
Deprecated.
-
setIsSendMail
public void setIsSendMail(boolean isSendMail)
-
getEmailSubject
public String getEmailSubject()
-
setEmailSubject
public void setEmailSubject(String emailSubject)
-
getRoomId
public Integer getRoomId()
The id of the workspace containing the group. Provide either it or roomGuid, but not both.- Returns:
- The id of the workspace containing the group. Provide either it or roomGuid, but not both.
-
setRoomId
public void setRoomId(Integer roomId)
The id of the workspace containing the group. Provide either it or roomGuid, but not both.- Parameters:
roomId
- The id of the workspace containing the group. Provide either it or roomGuid, but not both.
-
-