update mybatis-jpa-extra-3.3.0
This commit is contained in:
@@ -103,7 +103,7 @@ public class ScimGroupController {
|
||||
@ResponseStatus(HttpStatus.OK)
|
||||
public void delete(@PathVariable final String id) {
|
||||
_logger.debug("ScimGroup id {} " , id);
|
||||
groupsService.remove(id);
|
||||
groupsService.delete(id);
|
||||
}
|
||||
|
||||
@RequestMapping(method = RequestMethod.GET)
|
||||
|
||||
@@ -96,7 +96,7 @@ public class ScimOrganizationController {
|
||||
@ResponseStatus(HttpStatus.OK)
|
||||
public void delete(@PathVariable final String id) {
|
||||
_logger.debug("ScimOrganization id {}", id );
|
||||
organizationsService.remove(id);
|
||||
organizationsService.delete(id);
|
||||
}
|
||||
|
||||
@RequestMapping(method = RequestMethod.GET)
|
||||
|
||||
@@ -108,7 +108,7 @@ public class ScimUserController {
|
||||
@ResponseStatus(HttpStatus.OK)
|
||||
public void delete(@PathVariable final String id) {
|
||||
_logger.debug("ScimUser id {} ", id );
|
||||
userInfoService.remove(id);
|
||||
userInfoService.delete(id);
|
||||
}
|
||||
|
||||
@RequestMapping(method = RequestMethod.GET)
|
||||
|
||||
Reference in New Issue
Block a user