![JAR search and dependency download from the Maven repository](/logo.png)
com.ullink.slack.simpleslackapi.impl.SlackConnectedImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simpleslackapi-lib Show documentation
Show all versions of simpleslackapi-lib Show documentation
A simple API to build bot running on Slack
The newest version!
package com.ullink.slack.simpleslackapi.impl;
import com.ullink.slack.simpleslackapi.SlackPersona;
import com.ullink.slack.simpleslackapi.events.SlackConnected;
import com.ullink.slack.simpleslackapi.events.SlackEventType;
class SlackConnectedImpl implements SlackConnected
{
private SlackPersona slackConnectedPersona;
SlackConnectedImpl(SlackPersona slackConnectedPersona)
{
this.slackConnectedPersona = slackConnectedPersona;
}
@Override
public SlackPersona getConnectedPersona()
{
return slackConnectedPersona;
}
@Override
public SlackEventType getEventType()
{
return SlackEventType.SLACK_CONNECTED;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy