
com.bq.corbel.event.UserCreatedEvent 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 Alberto J. Rubio
*/
public class UserCreatedEvent extends UserEvent {
public UserCreatedEvent() {}
public UserCreatedEvent(String userId, String domainId, String email, String country, String username) {
super(domainId, userId, email, username, null, null, null, null, null, null, null, null);
}
public UserCreatedEvent(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.CREATION;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy