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

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

package org.igniterealtime.restclient.entity;

import java.util.List;

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

/**
 * The Class UserEntities.
 */
@XmlRootElement(name = "users")
public class UserEntities {

	/** The users. */
	List users;

	/**
	 * Instantiates a new user entities.
	 */
	public UserEntities() {

	}

	/**
	 * Instantiates a new user entities.
	 *
	 * @param users
	 *            the users
	 */
	public UserEntities(List users) {
		this.users = users;
	}

	/**
	 * Gets the users.
	 *
	 * @return the users
	 */
	@XmlElement(name = "user")
	public List getUsers() {
		return users;
	}

	/**
	 * Sets the users.
	 *
	 * @param users
	 *            the new users
	 */
	public void setUsers(List users) {
		this.users = users;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy