All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bq.corbel.event.UserCreatedEvent Maven / Gradle / Ivy

There is a newer version: 1.35.0
Show newest version
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