io.fusionauth.domain.event.GroupDeleteCompleteEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fusionauth-java-client Show documentation
Show all versions of fusionauth-java-client Show documentation
The Java Client library provides a native Java binding to the FusionAuth REST API.
/*
* Copyright (c) 2022, FusionAuth, All Rights Reserved
*/
package io.fusionauth.domain.event;
import java.util.Objects;
import com.inversoft.json.JacksonConstructor;
import com.inversoft.json.ToString;
import io.fusionauth.domain.Buildable;
import io.fusionauth.domain.EventInfo;
import io.fusionauth.domain.Group;
/**
* Models the Group Create Complete Event.
*
* @author Daniel DeGroff
*/
public class GroupDeleteCompleteEvent extends BaseEvent implements Buildable, NonTransactionalEvent {
public Group group;
@JacksonConstructor
public GroupDeleteCompleteEvent() {
}
public GroupDeleteCompleteEvent(EventInfo info, Group group) {
super(info);
this.group = group;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
GroupDeleteCompleteEvent that = (GroupDeleteCompleteEvent) o;
return super.equals(o) &&
Objects.equals(group, that.group);
}
@Override
public EventType getType() {
return EventType.GroupDeleteComplete;
}
@Override
public int hashCode() {
return Objects.hash(super.hashCode(), group);
}
@Override
public String toString() {
return ToString.toString(this);
}
}