
com.bq.corbel.event.UserAuthenticationEvent 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 UserAuthenticationEvent extends UserEvent {
public UserAuthenticationEvent() {
}
public UserAuthenticationEvent(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.AUTHENTICATION;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy