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

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

The newest version!
package br.com.anteros.ejabberd.api.requests;

import com.google.gson.annotations.SerializedName;

public class ChangePassword extends UserHostRequest {
    @SerializedName("newpass") private final String newPassword;

    public ChangePassword(String user, String host, String newPassword) {
        super(user, host);
        this.newPassword = newPassword;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy