001/**
002 *
003 * Copyright 2019 Florian Schmaus
004 *
005 * Licensed under the Apache License, Version 2.0 (the "License");
006 * you may not use this file except in compliance with the License.
007 * You may obtain a copy of the License at
008 *
009 *     http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017package org.jivesoftware.smackx.disco.packet;
018
019import java.util.List;
020
021import org.jivesoftware.smack.packet.IqView;
022
023public interface DiscoverInfoView extends IqView {
024
025    /**
026     * Returns the discovered features of an XMPP entity.
027     *
028     * @return an unmodifiable list of the discovered features of an XMPP entity
029     */
030    List<DiscoverInfo.Feature> getFeatures();
031
032    /**
033     * Returns the discovered identities of an XMPP entity.
034     *
035     * @return an unmodifiable list of the discovered identities
036     */
037    List<DiscoverInfo.Identity> getIdentities();
038
039    /**
040     * Returns the node attribute that supplements the 'jid' attribute. A node is merely
041     * something that is associated with a JID and for which the JID can provide information.<p>
042     *
043     * Node attributes SHOULD be used only when trying to provide or query information which
044     * is not directly addressable.
045     *
046     * @return the node attribute that supplements the 'jid' attribute
047     */
048    String getNode();
049}