org.ar4k.agent.mattermost.MatterMostCallBack Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ar4k-core Show documentation
Show all versions of ar4k-core Show documentation
Java Edge Agent Rossonet.
package org.ar4k.agent.mattermost;
import org.ar4k.agent.mattermost.model.Channel;
import org.ar4k.agent.mattermost.model.Post;
import org.ar4k.agent.mattermost.model.Team;
import org.ar4k.agent.mattermost.model.User;
public interface MatterMostCallBack {
void connectionStarted();
void onNewChannel(Channel channel);
void onNewUser(User checkedUser);
void onNewTeam(Team team);
void onNewPost(Post post);
}