com.ullink.slack.simpleslackapi.impl.SlackUserPresenceReplyImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simpleslackapi Show documentation
Show all versions of simpleslackapi Show documentation
A simple API to build bot running on Slack
package com.ullink.slack.simpleslackapi.impl;
import com.ullink.slack.simpleslackapi.replies.SlackReply;
import com.ullink.slack.simpleslackapi.replies.SlackUserPresenceReply;
public class SlackUserPresenceReplyImpl extends SlackReplyImpl implements SlackUserPresenceReply, SlackReply
{
private boolean active;
SlackUserPresenceReplyImpl(boolean ok, boolean active)
{
super(ok);
this.active = active;
}
@Override
public boolean isActive()
{
return active;
}
}