CallInfo |
WebConferencingService.addCall(String id,
String ownerId,
String ownerType,
String title,
String providerType,
Collection<String> partIds) |
Adds the call to list of active and fires STARTED event.
|
CallInfo |
WebConferencingService.addGuest(String callIId,
String guestId) |
Adds the guest to call.
|
void |
WebConferencingService.addParticipant(String callId,
String partId) |
Adds the participant to existing call.
|
CallInfo |
WebConferencingService.createCall(String id,
String ownerId,
String ownerType,
String title,
String providerType,
Collection<String> partIds,
Collection<String> spaces,
boolean start,
Date startDate,
Date endDate) |
Create the call and add it to list of the existing in storage, optionally start the call and notify its participants.
|
protected void |
WebConferencingService.createCall(CallInfo call) |
Create the call in storage with all its participants.
|
protected int |
WebConferencingService.deleteAllUserCalls() |
Delete all user calls.
|
protected void |
WebConferencingService.deleteCall(String id) |
Delete call.
|
protected CallInfo |
WebConferencingService.findCallById(String id,
boolean withParticipants) |
Find call in storage by its ID.
|
protected String |
WebConferencingService.findChatRoomCallId(String roomId) |
Find a call, owned by a space with given ID, in calls storage.
|
protected String |
WebConferencingService.findGroupCallId(String ownerId) |
Find a call, owned by group with given ID, in calls storage.
|
protected String |
WebConferencingService.findLastSpaceEventCallId(String ownerId) |
Find last space event call id.
|
protected String |
WebConferencingService.findSpaceCallId(String spaceId) |
Find a call, owned by a space with given ID, in calls storage.
|
protected Collection<CallInfo> |
WebConferencingService.findUserGroupCalls(String userId) |
Find user group calls in calls storage.
|
protected String |
WebConferencingService.getInviteId(String callId) |
Gets the invite id.
|
WebConferencingService.RoomInfo |
WebConferencingService.getRoomInfo(String id,
String title,
String[] members) |
Gets the room info.
|
WebConferencingService.SpaceEventInfo |
WebConferencingService.getSpaceEventInfo(String spaceIdentityId,
String[] partIds,
String[] spacesPrettyName) |
Gets the space event info, it will return actual event participants at the
moment of invocation.
|
WebConferencingService.SpaceInfo |
WebConferencingService.getSpaceInfo(String spacePrettyName) |
Gets the space info, it will return actual space members at the moment of invocation.
|
CallState[] |
WebConferencingService.getUserCalls(String userId) |
Gets the user calls.
|
protected void |
WebConferencingService.invalidateCall(String id,
boolean isGroup) |
Invalidate a call by an ID.
|
protected void |
WebConferencingService.removeParticipant(String callId,
UserInfo participant) |
Remove call participant (for leaved state) in a single transaction.
|
protected void |
WebConferencingService.startCall(CallInfo call,
String partId,
String clientId,
boolean notifyStarted) |
Start existing call.
|
protected void |
WebConferencingService.stopCall(CallInfo call,
String userId,
boolean remove) |
Stop call.
|
protected void |
WebConferencingService.syncMembersAndParticipants(CallInfo call) |
Sync group members and participants.
|
CallInfo |
WebConferencingService.updateCall(String callId,
String ownerId,
String newOwnerType,
String newTitle,
String newProviderType,
List<String> partIds,
List<String> spaces,
Date startDate,
Date endDate) |
Updates the existing call information and original settings (initial participants and spaces).
|
protected void |
WebConferencingService.updateCall(CallInfo call) |
Update existing call (mark it started, stopped etc).
|
protected void |
WebConferencingService.updateCallAndOrigins(CallInfo call) |
Update call and its origins.
|
protected void |
WebConferencingService.updateCallAndParticipants(CallInfo call) |
Update call and all its participants.
|
CallInfo |
WebConferencingService.updateInvites(String callId,
List<InvitedIdentity> identities) |
Update invites.
|
protected void |
WebConferencingService.updateParticipant(String callId,
UserInfo participant) |
Update call participant (for joined or leaved state) in a single transaction.
|
CallInfo |
WebConferencingService.updateParticipants(String callId,
List<String> partIds) |
Update participants of the call.
|