CustomProtocol.java
876 字节
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
package com.crossoverjie.netty.action.pojo;
/**
* Function:
*
* @author crossoverJie
* Date: 17/05/2018 17:50
* @since JDK 1.8
*/
public class CustomProtocol {
private long header ;
private String content ;
public long getHeader() {
return header;
}
public void setHeader(long header) {
this.header = header;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public CustomProtocol(long header, String content) {
this.header = header;
this.content = content;
}
public CustomProtocol() {
}
@Override
public String toString() {
return "CustomProtocol{" +
"header=" + header +
", content='" + content + '\'' +
'}';
}
}