File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
src/main/java/com/github/dockerjava/api/model Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
import com .fasterxml .jackson .annotation .JsonIgnoreProperties ;
4
4
import com .fasterxml .jackson .annotation .JsonProperty ;
5
+ import com .github .dockerjava .core .RemoteApiVersion ;
5
6
import org .apache .commons .lang .builder .EqualsBuilder ;
6
7
import org .apache .commons .lang .builder .HashCodeBuilder ;
7
8
import org .apache .commons .lang .builder .ToStringBuilder ;
8
9
9
10
import javax .annotation .CheckForNull ;
11
+ import java .io .Serializable ;
10
12
import java .util .Map ;
11
13
12
14
/**
13
15
* Part of {@link Version}
14
16
*
17
+ * @since {@link RemoteApiVersion#VERSION_1_35}
15
18
* @author Dmitry Tretyakov
16
19
*/
17
20
@ JsonIgnoreProperties (ignoreUnknown = true )
18
- public class VersionComponent {
21
+ public class VersionComponent implements Serializable {
22
+ public static final Long serialVersionUID = 1L ;
19
23
20
24
@ JsonProperty ("Details" )
21
25
private Map <String , String > details ;
Original file line number Diff line number Diff line change 2
2
3
3
import com .fasterxml .jackson .annotation .JsonIgnoreProperties ;
4
4
import com .fasterxml .jackson .annotation .JsonProperty ;
5
+ import com .github .dockerjava .core .RemoteApiVersion ;
5
6
import org .apache .commons .lang .builder .EqualsBuilder ;
6
7
import org .apache .commons .lang .builder .HashCodeBuilder ;
7
8
import org .apache .commons .lang .builder .ToStringBuilder ;
8
9
9
10
import javax .annotation .CheckForNull ;
11
+ import java .io .Serializable ;
10
12
11
13
/**
12
14
* Part of {@link Version}
13
15
*
16
+ * @since {@link RemoteApiVersion#VERSION_1_35}
14
17
* @author Dmitry Tretyakov
15
18
*/
16
19
@ JsonIgnoreProperties (ignoreUnknown = true )
17
- public class VersionPlatform {
20
+ public class VersionPlatform implements Serializable {
21
+ public static final Long serialVersionUID = 1L ;
18
22
19
23
@ JsonProperty ("Name" )
20
24
private String name ;
You can’t perform that action at this time.
0 commit comments