
com.bq.corbel.event.UserModifiedEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of events Show documentation
Show all versions of events Show documentation
Corbel events used in the event-bus
package com.bq.corbel.event;
import java.util.Map;
import java.util.Set;
/**
* @author Rubén Carrasco
*
*/
public class UserModifiedEvent extends UserEvent {
public UserModifiedEvent() {
}
public UserModifiedEvent(String domainId, String userId, String email, String username, String firstName, String lastName,
String profileUrl, String phoneNumber, String country, Map properties, Set scopes, Set groups) {
super(domainId, userId, email, username, firstName, lastName, profileUrl, phoneNumber, country, properties, scopes, groups);
}
@Override
public UserEventType getType() {
return UserEventType.MODIFICATION;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy