forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLxcConf.java
More file actions
42 lines (30 loc) · 776 Bytes
/
Copy pathLxcConf.java
File metadata and controls
42 lines (30 loc) · 776 Bytes
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
package com.github.dockerjava.api.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.io.Serializable;
public class LxcConf implements Serializable {
private static final long serialVersionUID = 1L;
@JsonProperty("Key")
public String key;
@JsonProperty("Value")
public String value;
public LxcConf(String key, String value) {
this.key = key;
this.value = value;
}
public LxcConf() {
}
public String getKey() {
return key;
}
public LxcConf setKey(String key) {
this.key = key;
return this;
}
public String getValue() {
return value;
}
public LxcConf setValue(String value) {
this.value = value;
return this;
}
}