Uses of Class
com.bytedesk.call.gateway.CallGatewayEntity
Packages that use CallGatewayEntity
Package
Description
Call Gateway Package
This package provides the gateway management functionality for Call integration.
-
Uses of CallGatewayEntity in com.bytedesk.call.gateway
Methods in com.bytedesk.call.gateway that return CallGatewayEntityModifier and TypeMethodDescriptionCallGatewayService.createGateway
(String gatewayName, String description, String proxy, String username, String password, String fromUser, String fromDomain, Boolean register, String registerTransport) 创建新网关CallGatewayRestService.doSave
(CallGatewayEntity entity) CallGatewayRestService.handleOptimisticLockingFailureException
(org.springframework.orm.ObjectOptimisticLockingFailureException e, CallGatewayEntity entity) CallGatewayService.updateGateway
(Long id, String description, String proxy, String username, String password, String fromUser, String fromDomain, Boolean register, String registerTransport) 更新网关信息Methods in com.bytedesk.call.gateway that return types with arguments of type CallGatewayEntityModifier and TypeMethodDescriptionprotected org.springframework.data.jpa.domain.Specification<CallGatewayEntity>
CallGatewayRestService.createSpecification
(CallGatewayRequest request) protected org.springframework.data.domain.Page<CallGatewayEntity>
CallGatewayRestService.executePageQuery
(org.springframework.data.jpa.domain.Specification<CallGatewayEntity> spec, org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page<CallGatewayEntity>
CallGatewayService.findAll
(org.springframework.data.domain.Pageable pageable) 获取所有网关(分页)org.springframework.data.domain.Page<CallGatewayEntity>
CallGatewayRepository.findByDescriptionContainingIgnoreCase
(String description, org.springframework.data.domain.Pageable pageable) 根据描述模糊搜索CallGatewayRepository.findByEnabledFalse()
查找禁用的网关CallGatewayRepository.findByEnabledTrue()
查找启用的网关CallGatewayRepository.findByEnabledTrueAndRegisterTrue()
查找启用且需要注册的网关CallGatewayRepository.findByGatewayName
(String gatewayName) 根据网关名称查找网关CallGatewayService.findByGatewayName
(String gatewayName) 根据名称查找网关org.springframework.data.domain.Page<CallGatewayEntity>
CallGatewayRepository.findByGatewayNameContainingIgnoreCase
(String gatewayName, org.springframework.data.domain.Pageable pageable) 根据网关名称模糊搜索根据ID查找网关CallGatewayRepository.findByProxy
(String proxy) 根据代理地址查找网关CallGatewayRepository.findByProxyContainingIgnoreCase
(String proxy) 根据代理地址模糊查找网关CallGatewayRepository.findByRegisterTransport
(String registerTransport) 查找指定传输协议的网关CallGatewayRepository.findByRegisterTrue()
根据注册标志查找网关CallGatewayRepository.findByStatus
(String status) 根据状态查找网关CallGatewayService.findByStatus
(String status) 根据状态查找网关CallGatewayRepository.findByStatusAndEnabledTrue
(String status) 查找在线网关CallGatewayRepository.findByUsername
(String username) 根据用户名查找网关CallGatewayService.findEnabledGateways()
获取所有启用的网关CallGatewayRepository.findOfflineGateways()
查找离线的启用网关CallGatewayRepository.findOnlineGateways()
查找在线的启用网关CallGatewayService.findOnlineGateways()
获取所有在线的网关org.springframework.data.domain.Page<CallGatewayEntity>
CallGatewayRestService.queryByOrgEntity
(CallGatewayRequest request) static org.springframework.data.jpa.domain.Specification<CallGatewayEntity>
CallGatewaySpecification.search
(CallGatewayRequest request, AuthService authService) 查询规格Methods in com.bytedesk.call.gateway with parameters of type CallGatewayEntityModifier and TypeMethodDescriptionCallGatewayRestService.convertToExcel
(CallGatewayEntity entity) CallGatewayRestService.convertToResponse
(CallGatewayEntity entity) CallGatewayRestService.doSave
(CallGatewayEntity entity) static CallGatewayExcel
CallGatewayExcel.fromEntity
(CallGatewayEntity entity) 从实体转换为Excel对象static CallGatewayResponse
CallGatewayResponse.fromEntity
(CallGatewayEntity entity) 从实体创建响应对象static CallGatewayResponse
CallGatewayResponse.fromEntitySafe
(CallGatewayEntity entity) 从实体创建响应对象(隐藏密码)CallGatewayRestService.handleOptimisticLockingFailureException
(org.springframework.orm.ObjectOptimisticLockingFailureException e, CallGatewayEntity entity) void
CallGatewayEntityListener.postPersist
(CallGatewayEntity entity) void
CallGatewayEntityListener.postUpdate
(CallGatewayEntity entity) Method parameters in com.bytedesk.call.gateway with type arguments of type CallGatewayEntityModifier and TypeMethodDescriptionprotected org.springframework.data.domain.Page<CallGatewayEntity>
CallGatewayRestService.executePageQuery
(org.springframework.data.jpa.domain.Specification<CallGatewayEntity> spec, org.springframework.data.domain.Pageable pageable) -
Uses of CallGatewayEntity in com.bytedesk.call.gateway.event
Fields in com.bytedesk.call.gateway.event declared as CallGatewayEntityModifier and TypeFieldDescriptionprivate final CallGatewayEntity
CallGatewayCreateEvent.gateway
private final CallGatewayEntity
CallGatewayUpdateEvent.gateway
Constructors in com.bytedesk.call.gateway.event with parameters of type CallGatewayEntityModifierConstructorDescriptionCallGatewayCreateEvent
(CallGatewayEntity gateway) CallGatewayUpdateEvent
(CallGatewayEntity gateway)