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

org.cloudfoundry.identity.uaa.account.event.UserAccountUnlockedEvent Maven / Gradle / Ivy

There is a newer version: 4.30.0
Show newest version
package org.cloudfoundry.identity.uaa.account.event;

import org.cloudfoundry.identity.uaa.audit.AuditEvent;
import org.cloudfoundry.identity.uaa.audit.AuditEventType;
import org.cloudfoundry.identity.uaa.audit.event.AbstractUaaEvent;
import org.cloudfoundry.identity.uaa.scim.ScimUser;

public class UserAccountUnlockedEvent extends AbstractUaaEvent {
  public UserAccountUnlockedEvent(ScimUser user) {
    super(user);
  }

  @Override
  public AuditEvent getAuditEvent() {
    return createAuditRecord(((ScimUser)source).getId(), AuditEventType.UserAccountUnlockedEvent, ((ScimUser)source).getOrigin());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy