upgrade to version 7.39.0.Final
This commit is contained in:
parent
174edd8b30
commit
9bc48dd653
7 changed files with 28 additions and 14 deletions
|
|
@ -30,6 +30,7 @@ import org.uberfire.ext.security.management.util.SecurityManagementUtils;
|
|||
|
||||
import java.util.Collection;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
|
|
@ -77,6 +78,11 @@ public class KiePlatformGroupManager implements GroupManager, ContextualManager
|
|||
throw new UnsupportedServiceCapabilityException(Capability.CAN_READ_GROUP);
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Group> getAll() throws SecurityManagementException {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Group create(Group entity) throws SecurityManagementException {
|
||||
throw new UnsupportedServiceCapabilityException(Capability.CAN_ADD_GROUP);
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@ import org.uberfire.ext.security.management.search.IdentifierRuntimeSearchEngine
|
|||
import org.uberfire.ext.security.management.util.SecurityManagementUtils;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
|
|
@ -79,6 +80,11 @@ public class KiePlatformRoleManager implements RoleManager,ContextualManager {
|
|||
throw new UnsupportedServiceCapabilityException(Capability.CAN_READ_ROLE);
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Role> getAll() throws SecurityManagementException {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Role create(Role entity) throws SecurityManagementException {
|
||||
throw new UnsupportedServiceCapabilityException(Capability.CAN_ADD_ROLE);
|
||||
|
|
|
|||
|
|
@ -28,10 +28,7 @@ import org.uberfire.ext.security.management.search.IdentifierRuntimeSearchEngine
|
|||
import org.uberfire.ext.security.management.search.UsersIdentifierRuntimeSearchEngine;
|
||||
import org.uberfire.ext.security.management.util.SecurityManagementUtils;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
import java.util.*;
|
||||
|
||||
/**
|
||||
* <p>Users manager service provider implementation for Apache tomcat, when using default realm based on properties files.</p>
|
||||
|
|
@ -82,6 +79,11 @@ public class KiePlatformUserManager implements UserManager, ContextualManager {
|
|||
throw new UnsupportedServiceCapabilityException(Capability.CAN_READ_USER);
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<User> getAll() throws SecurityManagementException {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public User create(User entity) throws SecurityManagementException {
|
||||
throw new UnsupportedServiceCapabilityException(Capability.CAN_ADD_USER);
|
||||
|
|
|
|||
Loading…
Add table
editor.link_modal.header
Reference in a new issue