mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
Minor fix in MQTT adapter listener
This commit is contained in:
commit
6b1052c77c
@ -136,7 +136,7 @@ public class MQTTAdapterListener implements MqttCallback, Runnable {
|
||||
String applicationName = MQTTEventAdapterConstants.APPLICATION_NAME_PREFIX
|
||||
+ mqttBrokerConnectionConfiguration.getAdapterName();
|
||||
DCRResponse dcrResponse = keyMgtService.dynamicClientRegistration(applicationName, username,
|
||||
"client_credentials", null, new String[]{"device_management"}, false, Integer.MAX_VALUE);
|
||||
"client_credentials", null, new String[]{"device_management"}, false, Integer.MAX_VALUE, password);
|
||||
String accessToken = getToken(dcrResponse.getClientId(), dcrResponse.getClientSecret());
|
||||
connectionOptions.setUserName(accessToken.substring(0, 18));
|
||||
connectionOptions.setPassword(accessToken.substring(19).toCharArray());
|
||||
|
||||
@ -158,7 +158,7 @@ public class MQTTAdapterPublisher {
|
||||
String applicationName = MQTTEventAdapterConstants.APPLICATION_NAME_PREFIX
|
||||
+ mqttBrokerConnectionConfiguration.getAdapterName();
|
||||
DCRResponse dcrResponse = keyMgtService.dynamicClientRegistration(applicationName, username,
|
||||
"client_credentials", null, new String[]{"device_management"}, false, Integer.MAX_VALUE);
|
||||
"client_credentials", null, new String[]{"device_management"}, false, Integer.MAX_VALUE, password);
|
||||
return getToken(dcrResponse.getClientId(), dcrResponse.getClientSecret());
|
||||
// connectionOptions.setUserName(accessToken.substring(0, 18));
|
||||
// connectionOptions.setPassword(accessToken.substring(19).toCharArray());
|
||||
|
||||
Loading…
Reference in New Issue
Block a user