mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Fixed null pointer exception
This commit is contained in:
parent
886e2e08f2
commit
734aaa8c9e
@ -62,6 +62,10 @@ public class PermissionManagerServiceImpl implements PermissionManagerService {
|
||||
public Permission getPermission(Properties properties) throws PermissionManagementException {
|
||||
String url = (String) properties.get(URL_PROPERTY);
|
||||
String httpMethod = (String) properties.get(HTTP_METHOD_PROPERTY);
|
||||
|
||||
if (url == null || url.isEmpty() || httpMethod == null || httpMethod.isEmpty()) {
|
||||
throw new PermissionManagementException("Resource URI/HTTP method is empty");
|
||||
}
|
||||
return permissionTree.getPermission(url, httpMethod);
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user