Interface MAMAppConfigManager
-
- All Implemented Interfaces:
public interface MAMAppConfigManagerAllows retrieving the MAMAppConfig for a given user. An instance of this class can be obtained via MAMComponents.get(MAMAppConfigManager.class)
-
-
Method Summary
Modifier and Type Method Description abstract MAMAppConfiggetAppConfig(@Nullable() String identity)returns custom app configuration data for the given user. abstract MAMAppConfiggetAppConfigForOID(@Nullable() String oid)returns custom app configuration data for the given user. -
-
Method Detail
-
getAppConfig
@Deprecated()@NonNull() abstract MAMAppConfig getAppConfig(@Nullable() String identity)
returns custom app configuration data for the given user.
- Parameters:
identity- UPN of the user for whom the config data is retrieved.- Returns:
a MAMAppConfig object containing the config data.
-
getAppConfigForOID
@NonNull() abstract MAMAppConfig getAppConfigForOID(@Nullable() String oid)
returns custom app configuration data for the given user.
- Parameters:
oid- AAD OID of the user for whom the config data is retrieved.- Returns:
a MAMAppConfig object containing the config data.
-
-
-
-