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

org.igniterealtime.restclient.entity.ParticipantEntity Maven / Gradle / Ivy

Go to download

Java REST API Client for the Openfire to manage Openfire instances by sending an REST/HTTP request to the server

There is a newer version: 1.1.5
Show newest version
package org.igniterealtime.restclient.entity;

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement(name = "participant")
public class ParticipantEntity {

	private String jid;
	private String role;
	private String affiliation;

	public ParticipantEntity() {
	}

	@XmlElement
	public String getJid() {
		return jid;
	}

	public void setJid(String jid) {
		this.jid = jid;
	}

	@XmlElement
	public String getRole() {
		return role;
	}

	public void setRole(String role) {
		this.role = role;
	}

	@XmlElement
	public String getAffiliation() {
		return affiliation;
	}

	public void setAffiliation(String affiliation) {
		this.affiliation = affiliation;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy