Uses of Class
com.bytedesk.call.conference.CallConferenceEntity
Packages that use CallConferenceEntity
-
Uses of CallConferenceEntity in com.bytedesk.call.conference
Methods in com.bytedesk.call.conference that return CallConferenceEntityModifier and TypeMethodDescriptionCallConferenceRestService.convertToEntity
(CallConferenceRequest request) CallConferenceService.createConference
(String conferenceName, String description, String password, Integer maxMembers) 创建新会议室CallConferenceRestService.doSave
(CallConferenceEntity entity) CallConferenceRestService.handleOptimisticLockingFailureException
(org.springframework.orm.ObjectOptimisticLockingFailureException e, CallConferenceEntity entity) CallConferenceRestService.save
(CallConferenceEntity entity) CallConferenceService.updateConference
(Long id, String conferenceName, String description, String password, Integer maxMembers, Boolean recordEnabled) 更新会议室信息Methods in com.bytedesk.call.conference that return types with arguments of type CallConferenceEntityModifier and TypeMethodDescriptionstatic org.springframework.data.jpa.domain.Specification<CallConferenceEntity>
CallConferenceSpecification.build
(CallConferenceRequest request) 构建查询条件static org.springframework.data.jpa.domain.Specification<CallConferenceEntity>
CallConferenceSpecification.conferenceName
(String conferenceName) 按会议室名称搜索protected org.springframework.data.jpa.domain.Specification<CallConferenceEntity>
CallConferenceRestService.createSpecification
(CallConferenceRequest request) static org.springframework.data.jpa.domain.Specification<CallConferenceEntity>
按创建者过滤static org.springframework.data.jpa.domain.Specification<CallConferenceEntity>
按启用状态过滤protected org.springframework.data.domain.Page<CallConferenceEntity>
CallConferenceRestService.executePageQuery
(org.springframework.data.jpa.domain.Specification<CallConferenceEntity> specification, org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page<CallConferenceEntity>
CallConferenceService.findAll
(org.springframework.data.domain.Pageable pageable) 分页查询所有会议室CallConferenceRepository.findByConferenceName
(String conferenceName) 根据会议室名称查找会议室CallConferenceService.findByConferenceName
(String conferenceName) 根据会议室名称查找会议室org.springframework.data.domain.Page<CallConferenceEntity>
CallConferenceService.findByConferenceNameContaining
(String keyword, org.springframework.data.domain.Pageable pageable) 根据会议室名称模糊查询org.springframework.data.domain.Page<CallConferenceEntity>
CallConferenceRepository.findByConferenceNameContainingIgnoreCase
(String conferenceName, org.springframework.data.domain.Pageable pageable) 根据会议室名称模糊搜索CallConferenceRepository.findByCreator
(String creator) 根据创建者查找会议室CallConferenceRepository.findByCreatorAndEnabledTrue
(String creator) 查找指定创建者的启用会议室org.springframework.data.domain.Page<CallConferenceEntity>
CallConferenceRepository.findByDescriptionContainingIgnoreCase
(String description, org.springframework.data.domain.Pageable pageable) 根据描述模糊搜索CallConferenceService.findByEnabled
(Boolean enabled) 根据启用状态查找会议室CallConferenceRepository.findByEnabledFalse()
查找禁用的会议室CallConferenceRepository.findByEnabledTrue()
查找启用的会议室根据ID查找会议室CallConferenceRepository.findByMaxMembersBetween
(Integer minMembers, Integer maxMembers) 根据最大成员数量范围查找会议室CallConferenceService.findByMaxMembersGreaterThanEqual
(Integer minCapacity) 查找最大成员数量大于等于指定值的会议室CallConferenceRepository.findByRecordEnabledTrue()
查找启用录音的会议室根据UID查找会议室CallConferenceRepository.findConferencesWithMemberLimit()
查找有最大成员限制的会议室CallConferenceRepository.findConferencesWithoutMemberLimit()
查找无成员限制的会议室CallConferenceRepository.findPasswordProtectedConferences()
查找有密码保护的会议室CallConferenceRepository.findPublicConferences()
查找无密码保护的会议室org.springframework.data.domain.Page<CallConferenceEntity>
CallConferenceService.getAllConferences
(org.springframework.data.domain.Pageable pageable) 获取所有会议室(分页)CallConferenceService.getEnabledConferences()
获取启用的会议室列表CallConferenceService.getPasswordProtectedConferences()
获取密码保护的会议室CallConferenceService.getPublicConferences()
获取公开会议室(无密码保护)static org.springframework.data.jpa.domain.Specification<CallConferenceEntity>
CallConferenceSpecification.maxMembersBetween
(Integer minMembers, Integer maxMembers) 按最大成员数范围过滤static org.springframework.data.jpa.domain.Specification<CallConferenceEntity>
CallConferenceSpecification.passwordProtected
(Boolean passwordProtected) 按密码保护状态过滤org.springframework.data.domain.Page<CallConferenceEntity>
CallConferenceRestService.queryByUserEntity
(CallConferenceRequest request) static org.springframework.data.jpa.domain.Specification<CallConferenceEntity>
CallConferenceSpecification.recordEnabled
(Boolean recordEnabled) 按录音状态过滤org.springframework.data.domain.Page<CallConferenceEntity>
CallConferenceService.searchConferences
(String keyword, org.springframework.data.domain.Pageable pageable) 搜索会议室Methods in com.bytedesk.call.conference with parameters of type CallConferenceEntityModifier and TypeMethodDescriptionCallConferenceRestService.convertToExcel
(CallConferenceEntity entity) CallConferenceRestService.convertToResponse
(CallConferenceEntity entity) CallConferenceRestService.doSave
(CallConferenceEntity entity) static CallConferenceResponse
CallConferenceResponse.fromEntity
(CallConferenceEntity entity) 从实体对象创建响应对象CallConferenceRestService.handleOptimisticLockingFailureException
(org.springframework.orm.ObjectOptimisticLockingFailureException e, CallConferenceEntity entity) void
CallConferenceEntityListener.postPersist
(CallConferenceEntity entity) void
CallConferenceEntityListener.postUpdate
(CallConferenceEntity entity) CallConferenceRestService.save
(CallConferenceEntity entity) Method parameters in com.bytedesk.call.conference with type arguments of type CallConferenceEntityModifier and TypeMethodDescriptionprotected org.springframework.data.domain.Page<CallConferenceEntity>
CallConferenceRestService.executePageQuery
(org.springframework.data.jpa.domain.Specification<CallConferenceEntity> specification, org.springframework.data.domain.Pageable pageable) -
Uses of CallConferenceEntity in com.bytedesk.call.conference.event
Fields in com.bytedesk.call.conference.event declared as CallConferenceEntityModifier and TypeFieldDescriptionprivate final CallConferenceEntity
CallConferenceCreateEvent.conference
private final CallConferenceEntity
CallConferenceUpdateEvent.conference
Constructors in com.bytedesk.call.conference.event with parameters of type CallConferenceEntityModifierConstructorDescriptionCallConferenceCreateEvent
(CallConferenceEntity conference) CallConferenceUpdateEvent
(CallConferenceEntity conference)