com.akaxin.proto.site.ApiDeviceListProto Java Examples
The following examples show how to use
com.akaxin.proto.site.ApiDeviceListProto.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ApiDeviceService.java From wind-im with Apache License 2.0 | 5 votes |
public CommandResponse list(Command command) { CommandResponse commandResponse = new CommandResponse(); ErrorCode2 errCode = ErrorCode2.ERROR; try { ApiDeviceListProto.DeviceListInfoRequest request = ApiDeviceListProto.DeviceListInfoRequest .parseFrom(command.getParams()); String siteFriendId = request.getSiteUserId(); LogUtils.requestDebugLog(logger, command, request.toString()); if (StringUtils.isNotBlank(siteFriendId)) { ApiDeviceListProto.DeviceListInfoResponse.Builder responseBuilder = ApiDeviceListProto.DeviceListInfoResponse .newBuilder(); List<UserDeviceBean> deviceList = UserDeviceDao.getInstance().getActiveDeviceList(siteFriendId); for (UserDeviceBean device : deviceList) { DeviceProto.SimpleDeviceProfile deviceProfile = DeviceProto.SimpleDeviceProfile.newBuilder() .setDeviceId(String.valueOf(device.getDeviceId())) .setDeviceName(String.valueOf(device.getDeviceName())) .setUserDevicePubk(String.valueOf(device.getUserDevicePubk())) // 这里使用活跃时间,上次活跃时间 .setLastLoginTime(device.getActiveTime()).build(); responseBuilder.addList(deviceProfile); } commandResponse.setParams(responseBuilder.build().toByteArray()); errCode = ErrorCode2.SUCCESS; } else { errCode = ErrorCode2.ERROR_PARAMETER; } } catch (Exception e) { errCode = ErrorCode2.ERROR_SYSTEMERROR; LogUtils.requestErrorLog(logger, command, e); } return commandResponse.setErrCode2(errCode); }
Example #2
Source File: ApiDeviceService.java From openzaly with Apache License 2.0 | 5 votes |
public CommandResponse list(Command command) { CommandResponse commandResponse = new CommandResponse(); ErrorCode2 errCode = ErrorCode2.ERROR; try { ApiDeviceListProto.DeviceListInfoRequest request = ApiDeviceListProto.DeviceListInfoRequest .parseFrom(command.getParams()); String siteFriendId = request.getSiteUserId(); LogUtils.requestDebugLog(logger, command, request.toString()); if (StringUtils.isNotBlank(siteFriendId)) { ApiDeviceListProto.DeviceListInfoResponse.Builder responseBuilder = ApiDeviceListProto.DeviceListInfoResponse .newBuilder(); List<UserDeviceBean> deviceList = UserDeviceDao.getInstance().getActiveDeviceList(siteFriendId); for (UserDeviceBean device : deviceList) { DeviceProto.SimpleDeviceProfile deviceProfile = DeviceProto.SimpleDeviceProfile.newBuilder() .setDeviceId(String.valueOf(device.getDeviceId())) .setDeviceName(String.valueOf(device.getDeviceName())) .setUserDevicePubk(String.valueOf(device.getUserDevicePubk())) // 这里使用活跃时间,上次活跃时间 .setLastLoginTime(device.getActiveTime()).build(); responseBuilder.addList(deviceProfile); } commandResponse.setParams(responseBuilder.build().toByteArray()); errCode = ErrorCode2.SUCCESS; } else { errCode = ErrorCode2.ERROR_PARAMETER; } } catch (Exception e) { errCode = ErrorCode2.ERROR_SYSTEMERROR; LogUtils.requestErrorLog(logger, command, e); } return commandResponse.setErrCode2(errCode); }
Example #3
Source File: ApiDeviceService.java From openzaly with Apache License 2.0 | 5 votes |
public CommandResponse list(Command command) { CommandResponse commandResponse = new CommandResponse(); ErrorCode2 errCode = ErrorCode2.ERROR; try { ApiDeviceListProto.DeviceListInfoRequest request = ApiDeviceListProto.DeviceListInfoRequest .parseFrom(command.getParams()); String siteFriendId = request.getSiteUserId(); LogUtils.requestDebugLog(logger, command, request.toString()); if (StringUtils.isNotBlank(siteFriendId)) { ApiDeviceListProto.DeviceListInfoResponse.Builder responseBuilder = ApiDeviceListProto.DeviceListInfoResponse .newBuilder(); List<UserDeviceBean> deviceList = UserDeviceDao.getInstance().getActiveDeviceList(siteFriendId); for (UserDeviceBean device : deviceList) { DeviceProto.SimpleDeviceProfile deviceProfile = DeviceProto.SimpleDeviceProfile.newBuilder() .setDeviceId(String.valueOf(device.getDeviceId())) .setDeviceName(String.valueOf(device.getDeviceName())) .setUserDevicePubk(String.valueOf(device.getUserDevicePubk())) // 这里使用活跃时间,上次活跃时间 .setLastLoginTime(device.getActiveTime()).build(); responseBuilder.addList(deviceProfile); } commandResponse.setParams(responseBuilder.build().toByteArray()); errCode = ErrorCode2.SUCCESS; } else { errCode = ErrorCode2.ERROR_PARAMETER; } } catch (Exception e) { errCode = ErrorCode2.ERROR_SYSTEMERROR; LogUtils.requestErrorLog(logger, command, e); } return commandResponse.setErrCode2(errCode); }