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

rocks.xmpp.im.roster.model.RosterItem Maven / Gradle / Ivy

Go to download

XMPP core functionality (TLS, SASL, resource binding, stanzas, errors) that are common for clients and servers.

There is a newer version: 0.9.1
Show newest version
/*
 * The MIT License (MIT)
 *
 * Copyright (c) 2014-2018 Christian Schudt
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

package rocks.xmpp.im.roster.model;

import rocks.xmpp.addr.Jid;

import java.util.List;

/**
 * Represents a roster item. This interface is implemented already by {@link Contact} and could be implemented by
 * database entities as well to allow for easy conversion between database entities and XMPP elements.
 * 

* Subscription state of an XMPP entity is always represented in a roster item, therefore this interface extends {@link SubscriptionState}. * * @author Christian Schudt */ public interface RosterItem extends SubscriptionState { /** * Gets the JID of the contact. * * @return The JID. */ Jid getJid(); /** * Gets the name of the contact. *

*

2.1.2.4. Name Attribute

*

The 'name' attribute of the {@code } element specifies the "handle" to be associated with the JID, as determined by the user (not the contact). Although the value of the 'name' attribute MAY have meaning to a human user, it is opaque to the server. However, the 'name' attribute MAY be used by the server for matching purposes within the context of various XMPP extensions (one possible comparison method is that described for XMPP resourceparts in [XMPP-ADDR]).

*

It is OPTIONAL for a client to include the 'name' attribute when adding or updating a roster item.

*
* * @return The name. */ String getName(); /** * Gets the subscription pre-approval status. *
*

2.1.2.1. Approved Attribute

*

The boolean 'approved' attribute with a value of "true" is used to signal subscription pre-approval as described under Section 3.4

*
* * @return True, if the contact is pre approved. */ boolean isApproved(); /** * Gets the groups of the contact. * * @return The groups. */ List getGroups(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy