use of alien4cloud.security.event.GroupDeletedEvent in project alien4cloud by alien4cloud.
the class GroupService method deleteGroup.
public void deleteGroup(String groupId) throws IOException, ClassNotFoundException {
Group group = retrieveGroup(groupId);
alienGroupDao.delete(groupId);
publisher.publishEvent(new GroupDeletedEvent(this, group));
}
Aggregations