mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Add authentication method boolean check. Android allows user level authentication. IOS and windows allow device authetication. This is a temporary fix until fix windows and IOS certifcate level user extraction
This commit is contained in:
parent
3608df2981
commit
adc3b652bf
@ -29,6 +29,8 @@ import org.wso2.carbon.user.core.service.RealmService;
|
|||||||
import org.wso2.carbon.user.core.tenant.TenantManager;
|
import org.wso2.carbon.user.core.tenant.TenantManager;
|
||||||
import org.wso2.carbon.utils.ConfigurationContextService;
|
import org.wso2.carbon.utils.ConfigurationContextService;
|
||||||
|
|
||||||
|
import java.util.HashMap;
|
||||||
|
|
||||||
public class DeviceManagementDataHolder {
|
public class DeviceManagementDataHolder {
|
||||||
|
|
||||||
private RealmService realmService;
|
private RealmService realmService;
|
||||||
@ -41,6 +43,7 @@ public class DeviceManagementDataHolder {
|
|||||||
private AppManagementConfig appManagerConfig;
|
private AppManagementConfig appManagerConfig;
|
||||||
private OperationManager operationManager;
|
private OperationManager operationManager;
|
||||||
private ConfigurationContextService configurationContextService;
|
private ConfigurationContextService configurationContextService;
|
||||||
|
private HashMap<String,Boolean> isUserLevelAutherizationAllowMap;
|
||||||
|
|
||||||
private static DeviceManagementDataHolder thisInstance = new DeviceManagementDataHolder();
|
private static DeviceManagementDataHolder thisInstance = new DeviceManagementDataHolder();
|
||||||
|
|
||||||
@ -143,4 +146,11 @@ public class DeviceManagementDataHolder {
|
|||||||
this.configurationContextService = configurationContextService;
|
this.configurationContextService = configurationContextService;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setIsUserLevelAutherizationAllow(String pluginType, boolean isAllowUserAuthentication) {
|
||||||
|
isUserLevelAutherizationAllowMap.put(pluginType,isAllowUserAuthentication);
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean getIsUserLevelAutherizationAllow(String pluginType) {
|
||||||
|
return isUserLevelAutherizationAllowMap.get(pluginType);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user