Class EditManagersOnGroupJson
- java.lang.Object
-
- com.blackberry.workspaces.api.sdk.json.BaseJson
-
- com.blackberry.workspaces.api.sdk.json.EditManagersOnGroupJson
-
- All Implemented Interfaces:
Serializable
public class EditManagersOnGroupJson extends BaseJson
Add multiple users to a group and add group information.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EditManagersOnGroupJson()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getGroupName()
Current group nameBoolean
getManager()
if to set or unset the manager property.String
getRoomGuid()
The guid of the workspace containing the group.Integer
getRoomId()
The id of the workspace containing the group.List<String>
getUsers()
List of user to set operation.void
setGroupName(String groupName)
Current group namevoid
setManager(Boolean manager)
if to set or unset the manager property.void
setRoomGuid(String roomGuid)
The guid of the workspace containing the group.void
setRoomId(Integer roomId)
The id of the workspace containing the group.void
setUsers(List<String> users)
List of user to set operation.-
Methods inherited from class com.blackberry.workspaces.api.sdk.json.BaseJson
getObjType, setObjType, toString
-
-
-
-
Method Detail
-
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
-
getManager
public Boolean getManager()
if to set or unset the manager property.- Returns:
- if to set or unset the manager property.
-
setManager
public void setManager(Boolean manager)
if to set or unset the manager property.- Parameters:
manager
- if to set or unset the manager property.
-
getUsers
public List<String> getUsers()
List of user to set operation.- Returns:
- List of user to set operation.
-
setUsers
public void setUsers(List<String> users)
List of user to set operation.- Parameters:
users
- List of user to set operation.
-
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.
-
-