![JAR search and dependency download from the Maven repository](/logo.png)
org.igniterealtime.restclient.entity.GroupEntities 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;
/**
* The Class GroupEntities.
*/
@XmlRootElement(name = "groups")
public class GroupEntities {
/** The groups. */
List groups;
/**
* Instantiates a new group entities.
*/
public GroupEntities() {
}
/**
* Instantiates a new group entities.
*
* @param groups the groups
*/
public GroupEntities(List groups) {
this.groups = groups;
}
/**
* Gets the groups.
*
* @return the groups
*/
@XmlElement(name = "group")
public List getGroups() {
return groups;
}
/**
* Sets the groups.
*
* @param groups the new groups
*/
public void setGroups(List groups) {
this.groups = groups;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy