com.viber.bot.event.incoming.IncomingConversationStartedEvent Maven / Gradle / Ivy
package com.viber.bot.event.incoming;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.viber.bot.event.Event;
import com.viber.bot.profile.UserProfile;
import javax.annotation.Nonnull;
import javax.annotation.concurrent.Immutable;
import static com.google.common.base.Preconditions.checkNotNull;
import static com.viber.bot.Preconditions.checkNotEmpty;
@Immutable
public class IncomingConversationStartedEvent extends IncomingEvent {
private final UserProfile user;
private final String context;
private final String type;
private final long token;
@JsonCreator
IncomingConversationStartedEvent(final @JsonProperty("type") @Nonnull String type,
final @JsonProperty("context") @Nonnull String context,
final @JsonProperty("user") @Nonnull UserProfile user,
final @JsonProperty("message_token") long token,
final @JsonProperty("timestamp") long timestamp) {
super(Event.CONVERSATION_STARTED, timestamp);
this.user = checkNotNull(user);
this.type = checkNotEmpty(type);
this.context = checkNotEmpty(context);
this.token = token;
}
public String getContext() {
return context;
}
public String getType() {
return type;
}
public long getToken() {
return token;
}
public UserProfile getUser() {
return user;
}
@Override
public boolean equals(final Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
final IncomingConversationStartedEvent that = (IncomingConversationStartedEvent) o;
if (token != that.token) return false;
if (user != null ? !user.equals(that.user) : that.user != null) return false;
if (context != null ? !context.equals(that.context) : that.context != null) return false;
return type != null ? type.equals(that.type) : that.type == null;
}
@Override
public int hashCode() {
int result = super.hashCode();
result = 31 * result + (user != null ? user.hashCode() : 0);
result = 31 * result + (context != null ? context.hashCode() : 0);
result = 31 * result + (type != null ? type.hashCode() : 0);
result = 31 * result + (int) (token ^ (token >>> 32));
return result;
}
}