Uses of Class
org.exoplatform.webconferencing.dao.StorageException
Packages that use StorageException
-
Uses of StorageException in org.exoplatform.webconferencing
Methods in org.exoplatform.webconferencing that throw StorageExceptionModifier and TypeMethodDescriptionWebConferencingService.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.Adds the guest to call.voidWebConferencingService.addParticipant(String callId, String partId) Adds the participant to existing call.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 voidWebConferencingService.createCall(CallInfo call) Create the call in storage with all its participants.protected intWebConferencingService.deleteAllUserCalls()Delete all user calls.protected voidWebConferencingService.deleteCall(String id) Delete call.protected CallInfoWebConferencingService.findCallById(String id, boolean withParticipants) Find call in storage by its ID.protected StringWebConferencingService.findChatRoomCallId(String roomId) Find a call, owned by a space with given ID, in calls storage.protected StringWebConferencingService.findGroupCallId(String ownerId) Find a call, owned by group with given ID, in calls storage.protected StringWebConferencingService.findLastSpaceEventCallId(String ownerId) Find last space event call id.protected StringWebConferencingService.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 StringWebConferencingService.getInviteId(String callId) Gets the invite id.WebConferencingService.getRoomInfo(String id, String title, String[] members) Gets the room info.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.getSpaceInfo(String spacePrettyName) Gets the space info, it will return actual space members at the moment of invocation.WebConferencingService.getUserCalls(String userId) Gets the user calls.protected voidWebConferencingService.invalidateCall(String id, boolean isGroup) Invalidate a call by an ID.protected voidWebConferencingService.removeParticipant(String callId, UserInfo participant) Remove call participant (for leaved state) in a single transaction.protected voidWebConferencingService.startCall(CallInfo call, String partId, String clientId, boolean notifyStarted) Start existing call.protected voidStop call.protected voidWebConferencingService.syncMembersAndParticipants(CallInfo call) Sync group members and participants.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 voidWebConferencingService.updateCall(CallInfo call) Update existing call (mark it started, stopped etc).protected voidWebConferencingService.updateCallAndOrigins(CallInfo call) Update call and its origins.protected voidWebConferencingService.updateCallAndParticipants(CallInfo call) Update call and all its participants.WebConferencingService.updateInvites(String callId, List<InvitedIdentity> identities) Update invites.protected voidWebConferencingService.updateParticipant(String callId, UserInfo participant) Update call participant (for joined or leaved state) in a single transaction.WebConferencingService.updateParticipants(String callId, List<String> partIds) Update participants of the call.