summaryrefslogtreecommitdiffstats
blob: cfbdd6774692d6945ce60f474d7107caafc66f84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
 * Copyright (c) 2012, Isode Limited, London, England.
 * All rights reserved.
 */
/*
 * Copyright (c) 2011, Kevin Smith
 * All rights reserved.
 */
package com.isode.stroke.elements;

import com.isode.stroke.jid.JID;

/**
 * Class representing a MUC Item
 *
 */
public class MUCItem {
    /**
     * Create the MUC Item
     */
    public MUCItem() {        
    }
    
    public JID realJID;
    public String nick;
    public MUCOccupant.Affiliation affiliation;
    public MUCOccupant.Role role;
    public JID actor;
    public String reason;
}