summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/isode/stroke/elements/MUCItem.java')
-rw-r--r--src/com/isode/stroke/elements/MUCItem.java30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/com/isode/stroke/elements/MUCItem.java b/src/com/isode/stroke/elements/MUCItem.java
new file mode 100644
index 0000000..cfbdd67
--- /dev/null
+++ b/src/com/isode/stroke/elements/MUCItem.java
@@ -0,0 +1,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;
+}