fixed batis mapper registry for batch store?
This commit is contained in:
parent
62f993ccd5
commit
07d568be6f
2 changed files with 0 additions and 43 deletions
|
@ -74,9 +74,7 @@ public final class API {
|
||||||
public static final String REGISTER_ENDPOINT = "/register";
|
public static final String REGISTER_ENDPOINT = "/register";
|
||||||
|
|
||||||
public static final String NAMES_PATH_SEGMENT = "/names";
|
public static final String NAMES_PATH_SEGMENT = "/names";
|
||||||
|
|
||||||
public static final String LIST_PATH_SEGMENT = "/list";
|
public static final String LIST_PATH_SEGMENT = "/list";
|
||||||
|
|
||||||
public static final String ACTIVE_PATH_SEGMENT = "/active";
|
public static final String ACTIVE_PATH_SEGMENT = "/active";
|
||||||
public static final String TOGGLE_ACTIVITY_PATH_SEGMENT = "/toggle-activity";
|
public static final String TOGGLE_ACTIVITY_PATH_SEGMENT = "/toggle-activity";
|
||||||
public static final String INACTIVE_PATH_SEGMENT = "/inactive";
|
public static final String INACTIVE_PATH_SEGMENT = "/inactive";
|
||||||
|
|
|
@ -194,47 +194,6 @@ public interface AuthorizationService {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Check grant by using corresponding hasGrant(XY) method and throws PermissionDeniedException
|
|
||||||
* on deny.
|
|
||||||
*
|
|
||||||
* @param privilegeType the privilege type to check
|
|
||||||
* @param userInfo the the user
|
|
||||||
* @param grantEntity the entity */
|
|
||||||
default <T extends GrantEntity> T check(
|
|
||||||
final PrivilegeType privilegeType,
|
|
||||||
final UserInfo userInfo,
|
|
||||||
final T grantEntity) {
|
|
||||||
|
|
||||||
// check institutional grant
|
|
||||||
if (hasGrant(
|
|
||||||
PrivilegeType.MODIFY,
|
|
||||||
EntityType.CONFIGURATION_NODE,
|
|
||||||
grantEntity.getInstitutionId(),
|
|
||||||
userInfo.uuid,
|
|
||||||
userInfo.uuid,
|
|
||||||
userInfo.institutionId,
|
|
||||||
userInfo.getUserRoles())) {
|
|
||||||
return grantEntity;
|
|
||||||
}
|
|
||||||
|
|
||||||
// if there is no institutional grant the user may have owner based grant on the specified realm
|
|
||||||
// TODO
|
|
||||||
// return userInfo.getUserRoles()
|
|
||||||
// .stream()
|
|
||||||
// .map(role -> new RoleTypeKey(entityType, role))
|
|
||||||
// .map(this.privileges::get)
|
|
||||||
// .anyMatch(privilege -> (privilege != null) && privilege.hasOwnershipPrivilege(privilegeType));
|
|
||||||
// if (hasOwnerPrivilege(privilegeType, entityType, institutionId)) {
|
|
||||||
// return;
|
|
||||||
// }
|
|
||||||
|
|
||||||
throw new PermissionDeniedException(
|
|
||||||
grantEntity.entityType(),
|
|
||||||
privilegeType,
|
|
||||||
getUserService().getCurrentUser().getUserInfo());
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Indicates if the current user has an owner privilege for this give entity type and institution
|
/** Indicates if the current user has an owner privilege for this give entity type and institution
|
||||||
*
|
*
|
||||||
* @param privilegeType the privilege type to check
|
* @param privilegeType the privilege type to check
|
||||||
|
|
Loading…
Reference in a new issue