use of org.entando.entando.aps.system.services.userprofile.event.ProfileChangedEvent in project entando-core by entando.
the class UserProfileManager method notifyProfileChanging.
private void notifyProfileChanging(IUserProfile profile, int operationCode) throws ApsSystemException {
ProfileChangedEvent event = new ProfileChangedEvent();
event.setProfile(profile);
event.setOperationCode(operationCode);
this.notifyEvent(event);
}
Aggregations