summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2012-10-02 10:37:00 (GMT)
committerKevin Smith <git@kismith.co.uk>2012-10-02 10:37:00 (GMT)
commitdc9e9875a01065f3091738eb6d370c77d914481a (patch)
treed0e718f6ce2655d2edbed401bae952df059089d3 /src/com/isode/stroke/elements/Version.java
parent816655ed98893382b82569ccbbebdb04c4af9127 (diff)
downloadstroke-dc9e9875a01065f3091738eb6d370c77d914481a.zip
stroke-dc9e9875a01065f3091738eb6d370c77d914481a.tar.bz2
Adding Support for SoftwareVersionResponder
Diffstat (limited to 'src/com/isode/stroke/elements/Version.java')
-rw-r--r--src/com/isode/stroke/elements/Version.java51
1 files changed, 0 insertions, 51 deletions
diff --git a/src/com/isode/stroke/elements/Version.java b/src/com/isode/stroke/elements/Version.java
deleted file mode 100644
index 0dacd32..0000000
--- a/src/com/isode/stroke/elements/Version.java
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * Copyright (c) 2010 Remko Tronçon
- * All rights reserved.
- */
-/*
- * Copyright (c) 2010 Isode Limited, London, England.
- * All rights reserved.
- */
-
-package com.isode.stroke.elements;
-
-
-public class Version extends Payload {
- private String name_;
- private String version_;
- private String os_;
-
- public Version(final String name, final String version, final String os) {
- name_ = name;
- version_ = version;
- os_ = os;
- }
-
- public Version() {
-
- }
-
- public String getName() {
- return name_;
- }
-
- public String getVersion() {
- return version_;
- }
-
- public String getOS() {
- return os_;
- }
-
- public void setName(final String name) {
- name_ = name;
- }
-
- public void setVersion(final String version) {
- version_ = version;
- }
-
- public void setOS(final String os) {
- os_ = os;
- }
-}