summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGurmeen Bindra <gurmeen.bindra@isode.com>2012-04-19 09:13:47 (GMT)
committerKevin Smith <git@kismith.co.uk>2012-04-27 11:06:22 (GMT)
commite2f24c6930603dbd016a6530f7d12b08c97ea900 (patch)
treebcdcf5e98616db5859775b1a91a6200add5e4fc2 /src/com/isode/stroke/elements/Storage.java
parent9217dc0c6033f9d70c87ba4a84f5bbafe2c1e6ac (diff)
downloadstroke-e2f24c6930603dbd016a6530f7d12b08c97ea900.zip
stroke-e2f24c6930603dbd016a6530f7d12b08c97ea900.tar.bz2
Port Classes for Storage/Private Storage
This patch ports the classes for Storage, PrivateStorage and PrivateStorage requests from Swiften to Stroke. Test-information: junit test for GetPrivateStorageRequestTest is also ported and tested
Diffstat (limited to 'src/com/isode/stroke/elements/Storage.java')
-rw-r--r--src/com/isode/stroke/elements/Storage.java95
1 files changed, 95 insertions, 0 deletions
diff --git a/src/com/isode/stroke/elements/Storage.java b/src/com/isode/stroke/elements/Storage.java
new file mode 100644
index 0000000..8597c27
--- /dev/null
+++ b/src/com/isode/stroke/elements/Storage.java
@@ -0,0 +1,95 @@
+/*
+ * Copyright (c) 2012, Isode Limited, London, England.
+ * All rights reserved.
+ */
+/*
+ * Copyright (c) 2010, Remko Tronçon.
+ * All rights reserved.
+ */
+
+package com.isode.stroke.elements;
+
+import java.util.Vector;
+import com.isode.stroke.jid.JID;
+
+/**
+ * Class representing storage for storing payloads
+ *
+ */
+public class Storage extends Payload {
+ private Vector<Room> rooms = new Vector<Room>();
+ private Vector<URL> urls = new Vector<URL>();
+
+ /**
+ * Class representing a chat room
+ *
+ */
+ public static class Room {
+ public Room() {
+ autoJoin = false;
+ }
+
+ public String name = "";
+ public JID jid = JID.fromString("");
+ public boolean autoJoin = false;
+ public String nick = "";
+ public String password;
+ }
+
+ /**
+ * Class for bookmarking web pages, i.e., HTTP or HTTPS URLs.
+ *
+ */
+ public class URL {
+ public URL() {
+
+ }
+ public String name = "";
+ public String url = "";
+ }
+
+ /**
+ * Constructor
+ */
+ public Storage() {
+ }
+
+ /**
+ * Clear the list of rooms
+ */
+ public void clearRooms() {
+ rooms.clear();
+ }
+
+ /**
+ * Get the list of rooms
+ * @return room list, can be empty but not null
+ */
+ public Vector<Room> getRooms() {
+ return rooms;
+ }
+
+ /**
+ * Add a room to the list
+ * @param room room, not null
+ */
+ public void addRoom(Room room) {
+ rooms.add(room);
+ }
+
+ /**
+ * Get a list of URLs
+ * @return URL list, can be empty but not null
+ */
+ public Vector<URL> getURLs() {
+ return urls;
+ }
+
+ /**
+ * Add a URL
+ * @param url rul, not null
+ */
+ public void addURL(URL url) {
+ urls.add(url);
+ }
+}