OWL ITS + 탐지시스템(인터넷 진흥원)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package kr.wisestone.owl.vo;
 
import java.io.Serializable;
 
public class ResMessageVo implements Serializable{
    private static final long serialVersionUID = 1L;
 
    public ResMessageVo(String message, String code, String status) {
        super();
        this.message = message;
        this.code = code;
        this.status = status;
    }
 
    public ResMessageVo(){}
 
    private String message;
    private String code;
    private String status;
 
    public String getMessage() {
        return this.message;
    }
 
    public void setMessage(String message) {
        this.message = message;
    }
 
    public String getCode() {
        return this.code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    public String getStatus() {
        return this.status;
    }
 
    public void setStatus(String status) {
        this.status = status;
    }
 
    @Override
    public String toString() {
        return "ResMessage [message=" + this.message + ", code=" + this.code
                + ", status=" + this.status + "]";
    }
}