Class LicenseKeyMap
-
- All Implemented Interfaces:
public final class LicenseKeyMap
This class holds the license keys for different endpoints. It needs to be set and not changed through the lifetime of development. It is in the format; QA -> "license_key_for_QA_environment" DEV -> "license_key_for_DEV_environment"
The license key for the current environment of the Pointr SDK should be included. Best practice is to create this object for all endpoints, and then just modify the environment of Pointr as pleased as argument to Pointr.with(context, LicenseKeyMap, PointrEnvironment)
-
-
Field Summary
Fields Modifier and Type Field Description private final Map<PointrEnvironment, String>
licenseKeyMap
-
Constructor Summary
Constructors Constructor Description LicenseKeyMap(Map<PointrEnvironment, String> licenseKeyMap)
-
Method Summary
Modifier and Type Method Description final Map<PointrEnvironment, String>
getLicenseKeyMap()
-
-
Constructor Detail
-
LicenseKeyMap
LicenseKeyMap(Map<PointrEnvironment, String> licenseKeyMap)
-
-
Method Detail
-
getLicenseKeyMap
final Map<PointrEnvironment, String> getLicenseKeyMap()
-
-
-
-