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

it.auties.whatsapp.model.chat.GroupParticipantBuilder Maven / Gradle / Ivy

package it.auties.whatsapp.model.chat;

public class GroupParticipantBuilder {
    private it.auties.whatsapp.model.jid.Jid jid;
    private it.auties.whatsapp.model.chat.GroupRole role;

    public GroupParticipantBuilder() {
        jid = null;
        role = null;
    }

    public GroupParticipantBuilder jid(it.auties.whatsapp.model.jid.Jid jid) {
        this.jid = jid;
        return this;
    }

    public GroupParticipantBuilder role(it.auties.whatsapp.model.chat.GroupRole role) {
        this.role = role;
        return this;
    }

    public it.auties.whatsapp.model.chat.GroupParticipant build() {
        return new it.auties.whatsapp.model.chat.GroupParticipant(jid, role);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy