org.igniterealtime.restclient.entity.MUCRoomEntities Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-api-client Show documentation
Show all versions of rest-api-client Show documentation
Java REST API Client for the Openfire to manage Openfire instances by sending an REST/HTTP request to the server
package org.igniterealtime.restclient.entity;
import java.util.List;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement(name = "chatRooms")
public class MUCRoomEntities {
List mucRooms;
public MUCRoomEntities() {
}
public MUCRoomEntities(List mucRooms) {
this.mucRooms = mucRooms;
}
@XmlElement(name = "chatRoom")
public List getMucRooms() {
return mucRooms;
}
public void setMucRooms(List mucRooms) {
this.mucRooms = mucRooms;
}
}