summaryrefslogtreecommitdiffstats
blob: a4ef11d133bd1d87789d4c83751d087d1ecb7fcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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_;
}