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

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

package org.igniterealtime.restclient.entity;

import java.util.List;

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

/**
 * The Class RosterItemEntity.
 */
@XmlRootElement(name = "rosterItem")
@XmlType(propOrder = { "jid", "nickname", "subscriptionType", "groups" })
public class RosterItemEntity {

	/** The jid. */
	private String jid;

	/** The nickname. */
	private String nickname;

	/** The subscription type. */
	private int subscriptionType;

	/** The groups. */
	private List groups;

	/**
	 * Instantiates a new roster item entity.
	 */
	public RosterItemEntity() {

	}

	/**
	 * Instantiates a new roster item entity.
	 *
	 * @param jid
	 *            the jid
	 * @param nickname
	 *            the nickname
	 * @param subscriptionType
	 *            the subscription type
	 */
	public RosterItemEntity(String jid, String nickname, int subscriptionType) {
		this.jid = jid;
		this.nickname = nickname;
		this.subscriptionType = subscriptionType;
	}

	/**
	 * Gets the jid.
	 *
	 * @return the jid
	 */
	@XmlElement
	public String getJid() {
		return jid;
	}

	/**
	 * Sets the jid.
	 *
	 * @param jid
	 *            the new jid
	 */
	public void setJid(String jid) {
		this.jid = jid;
	}

	/**
	 * Gets the nickname.
	 *
	 * @return the nickname
	 */
	@XmlElement
	public String getNickname() {
		return nickname;
	}

	/**
	 * Sets the nickname.
	 *
	 * @param nickname
	 *            the new nickname
	 */
	public void setNickname(String nickname) {
		this.nickname = nickname;
	}

	/**
	 * Gets the subscription type.
	 *
	 * @return the subscription type
	 */
	@XmlElement
	public int getSubscriptionType() {
		return subscriptionType;
	}

	/**
	 * Sets the subscription type.
	 *
	 * @param subscriptionType
	 *            the new subscription type
	 */
	public void setSubscriptionType(int subscriptionType) {
		this.subscriptionType = subscriptionType;
	}

	/**
	 * Gets the groups.
	 *
	 * @return the groups
	 */
	@XmlElement(name = "group")
	@XmlElementWrapper(name = "groups")
	public List getGroups() {
		return groups;
	}

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy