summaryrefslogtreecommitdiff
path: root/shared/remotecall/ServerResponse.java
diff options
context:
space:
mode:
Diffstat (limited to 'shared/remotecall/ServerResponse.java')
-rw-r--r--shared/remotecall/ServerResponse.java53
1 files changed, 53 insertions, 0 deletions
diff --git a/shared/remotecall/ServerResponse.java b/shared/remotecall/ServerResponse.java
new file mode 100644
index 0000000..d2990bc
--- /dev/null
+++ b/shared/remotecall/ServerResponse.java
@@ -0,0 +1,53 @@
+package shared.remotecall;
+
+import java.io.*;
+import java.util.Vector;
+
+/**
+ * This class represents a server response. A server response will sent from the calendar
+ * server to the calendar client if the client has sent a client request.
+ * @author buetow
+ *
+ */
+public final class ServerResponse extends RemoteCall implements Serializable {
+ private static final long serialVersionUID = 1L;
+ private Vector vecEvents = null;
+
+ /**
+ * Simple constructor, creates a server response which can be sent to the calendar client.
+ * @param vecEvents Specifies all calendar events to be sent to the calendar client.
+ */
+ public ServerResponse(Vector vecEvents) {
+ this.vecEvents = vecEvents;
+ }
+
+ /**
+ * Needed for ojbect serialization (sending part).
+ * @param objectOutputStream Specifies the output stream.
+ * @throws IOException
+ */
+ private void writeObject(ObjectOutputStream objectOutputStream)
+ throws IOException {
+ super.writeObjectIfDefined(objectOutputStream, vecEvents);
+ }
+
+ /**
+ * Needed for object serialization (recieving part).
+ * @param objectInputStream Specifies the input stream.
+ * @throws IOException
+ * @throws ClassNotFoundException
+ */
+ private void readObject(ObjectInputStream objectInputStream)
+ throws IOException, ClassNotFoundException {
+ if (objectInputStream.readBoolean())
+ vecEvents = (Vector) objectInputStream.readObject();
+ }
+
+ /**
+ * This method returns a vector of all requested calendar events.
+ * @return Returns a Vector of all requested CalendarEvent objects.
+ */
+ public Vector getEvents() {
+ return vecEvents;
+ }
+}