forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathChangeLog.java
More file actions
37 lines (28 loc) · 788 Bytes
/
Copy pathChangeLog.java
File metadata and controls
37 lines (28 loc) · 788 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
package com.github.dockerjava.api.model;
import org.apache.commons.lang.builder.ToStringBuilder;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.io.Serializable;
/**
*
* @author Konstantin Pelykh (kpelykh@gmail.com)
*
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class ChangeLog implements Serializable {
private static final long serialVersionUID = 1L;
@JsonProperty("Path")
private String path;
@JsonProperty("Kind")
private Integer kind;
public String getPath() {
return path;
}
public Integer getKind() {
return kind;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this);
}
}