All Downloads are FREE. Search and download functionalities are using the official Maven repository.

br.com.anteros.ejabberd.api.requests.UserHostRequest Maven / Gradle / Ivy

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