|
3 | 3 | * SPDX-License-Identifier: Apache-2.0 |
4 | 4 | */ |
5 | 5 |
|
6 | | -package com.aws.greengrass.mqttbridge; |
| 6 | +package com.aws.greengrass.mqtt.bridge; |
7 | 7 |
|
8 | 8 | import com.aws.greengrass.builtin.services.pubsub.PubSubIPCEventStreamAgent; |
| 9 | +import com.aws.greengrass.clientdevices.auth.ClientDevicesAuthService; |
| 10 | +import com.aws.greengrass.clientdevices.auth.exception.CertificateGenerationException; |
9 | 11 | import com.aws.greengrass.componentmanager.KernelConfigResolver; |
10 | 12 | import com.aws.greengrass.config.Node; |
11 | 13 | import com.aws.greengrass.config.Topics; |
12 | 14 | import com.aws.greengrass.config.WhatHappened; |
13 | 15 | import com.aws.greengrass.dependency.ImplementsService; |
14 | 16 | import com.aws.greengrass.dependency.State; |
15 | | -import com.aws.greengrass.device.ClientDevicesAuthService; |
16 | | -import com.aws.greengrass.device.exception.CertificateGenerationException; |
17 | 17 | import com.aws.greengrass.lifecyclemanager.Kernel; |
18 | 18 | import com.aws.greengrass.lifecyclemanager.PluginService; |
19 | 19 | import com.aws.greengrass.lifecyclemanager.exceptions.ServiceLoadException; |
20 | | -import com.aws.greengrass.mqttbridge.auth.MQTTClientKeyStore; |
21 | | -import com.aws.greengrass.mqttbridge.clients.IoTCoreClient; |
22 | | -import com.aws.greengrass.mqttbridge.clients.MQTTClient; |
23 | | -import com.aws.greengrass.mqttbridge.clients.MQTTClientException; |
24 | | -import com.aws.greengrass.mqttbridge.clients.PubSubClient; |
25 | | -import com.aws.greengrass.mqttbridge.util.BatchedSubscriber; |
| 20 | +import com.aws.greengrass.mqtt.bridge.auth.MQTTClientKeyStore; |
| 21 | +import com.aws.greengrass.mqtt.bridge.clients.IoTCoreClient; |
| 22 | +import com.aws.greengrass.mqtt.bridge.clients.MQTTClient; |
| 23 | +import com.aws.greengrass.mqtt.bridge.clients.MQTTClientException; |
| 24 | +import com.aws.greengrass.mqtt.bridge.clients.PubSubClient; |
| 25 | +import com.aws.greengrass.mqtt.bridge.util.BatchedSubscriber; |
26 | 26 | import com.aws.greengrass.mqttclient.MqttClient; |
27 | 27 | import com.aws.greengrass.util.Coerce; |
28 | 28 | import com.aws.greengrass.util.Utils; |
|
0 commit comments