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

com.bq.corbel.event.UserModifiedEvent 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 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