com.ullink.slack.simpleslackapi.impl.GenericSlackReplyImpl 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 org.json.simple.JSONObject;
import com.ullink.slack.simpleslackapi.replies.GenericSlackReply;
class GenericSlackReplyImpl implements GenericSlackReply
{
private JSONObject obj;
public GenericSlackReplyImpl(JSONObject obj)
{
this.obj = obj;
}
@Override
public JSONObject getPlainAnswer()
{
return obj;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy