001/**
002 *
003 * Copyright 2016 Fernando Ramirez
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.muclight.element;
018
019import java.util.HashMap;
020import java.util.Iterator;
021import java.util.Map;
022
023import org.jivesoftware.smack.packet.IQ;
024
025import org.jivesoftware.smackx.muclight.MUCLightAffiliation;
026import org.jivesoftware.smackx.muclight.MultiUserChatLight;
027import org.jivesoftware.smackx.muclight.element.MUCLightElements.UserWithAffiliationElement;
028
029import org.jxmpp.jid.Jid;
030
031/**
032 * MUC Light affiliations response IQ class.
033 *
034 * @author Fernando Ramirez
035 *
036 */
037public class MUCLightAffiliationsIQ extends IQ {
038
039    public static final String ELEMENT = QUERY_ELEMENT;
040    public static final String NAMESPACE = MultiUserChatLight.NAMESPACE + MultiUserChatLight.AFFILIATIONS;
041
042    private final String version;
043    private HashMap<Jid, MUCLightAffiliation> affiliations;
044
045    /**
046     * MUC Light affiliations response IQ constructor.
047     *
048     * @param version TODO javadoc me please
049     * @param affiliations TODO javadoc me please
050     */
051    public MUCLightAffiliationsIQ(String version, HashMap<Jid, MUCLightAffiliation> affiliations) {
052        super(ELEMENT, NAMESPACE);
053        this.version = version;
054        this.affiliations = affiliations;
055    }
056
057    @Override
058    protected IQChildElementXmlStringBuilder getIQChildElementBuilder(IQChildElementXmlStringBuilder xml) {
059        xml.rightAngleBracket();
060        xml.optElement("version", version);
061
062        Iterator<Map.Entry<Jid, MUCLightAffiliation>> it = affiliations.entrySet().iterator();
063        while (it.hasNext()) {
064            Map.Entry<Jid, MUCLightAffiliation> pair = it.next();
065            xml.append(new UserWithAffiliationElement(pair.getKey(), pair.getValue()));
066        }
067
068        return xml;
069    }
070
071    /**
072     * Returns the version.
073     *
074     * @return the version
075     */
076    public String getVersion() {
077        return version;
078    }
079
080    /**
081     * Returns the room affiliations.
082     *
083     * @return the affiliations of the room
084     */
085    public HashMap<Jid, MUCLightAffiliation> getAffiliations() {
086        return affiliations;
087    }
088
089}