Add doc comments

pull/426/head
Pahansith Gunathilake 3 months ago
parent 23d31fd38c
commit 529d1aec01

@ -57,12 +57,17 @@ public class FCMUtil {
fromStream(Files.newInputStream(serviceAccountPath)). fromStream(Files.newInputStream(serviceAccountPath)).
createScoped(FCM_SCOPES); createScoped(FCM_SCOPES);
} catch (IOException e) { } catch (IOException e) {
log.error("Fail to initialize default OAuth application for FCM communication"); String msg = "Fail to initialize default OAuth application for FCM communication";
throw new IllegalStateException(e); log.error(msg);
throw new IllegalStateException(msg, e);
} }
} }
} }
/**
* Initialize the context metadata properties from the cdm-config.xml. This file includes the fcm server URL
* to be invoked when sending the wakeup call to the device.
*/
private void initContextConfigs() { private void initContextConfigs() {
PushNotificationConfiguration pushNotificationConfiguration = DeviceConfigurationManager.getInstance(). PushNotificationConfiguration pushNotificationConfiguration = DeviceConfigurationManager.getInstance().
getDeviceManagementConfig().getPushNotificationConfiguration(); getDeviceManagementConfig().getPushNotificationConfiguration();

Loading…
Cancel
Save