summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/isode/stroke/elements/CompressRequest.java')
-rw-r--r--src/com/isode/stroke/elements/CompressRequest.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/com/isode/stroke/elements/CompressRequest.java b/src/com/isode/stroke/elements/CompressRequest.java
new file mode 100644
index 0000000..8150f1d
--- /dev/null
+++ b/src/com/isode/stroke/elements/CompressRequest.java
@@ -0,0 +1,29 @@
+/*
+ * Copyright (c) 2011, Isode Limited, London, England.
+ * All rights reserved.
+ */
+/*
+ * Copyright (c) 2010, Remko Tron¨on.
+ * All rights reserved.
+ */
+package com.isode.stroke.elements;
+
+public class CompressRequest implements Element {
+
+ public CompressRequest() {
+ this("");
+ }
+
+ public CompressRequest(String method) {
+ method_ = method;
+ }
+
+ public String getMethod() {
+ return method_;
+ }
+
+ public void setMethod(String method) {
+ method_ = method;
+ }
+ private String method_;
+}