
br.com.anteros.ejabberd.api.requests.UserHostRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Anteros-Ejabberd-Api Show documentation
Show all versions of Anteros-Ejabberd-Api Show documentation
Anteros Ejabberd API for Java.
The newest version!
package br.com.anteros.ejabberd.api.requests;
import br.com.anteros.ejabberd.api.Request;
public abstract class UserHostRequest implements Request {
private final String user;
private final String host;
protected UserHostRequest(String user, String host) {
this.user = user;
this.host = host;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy