This repository was archived by the owner on Feb 1, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 15 files changed +57
-11
lines changed Expand file tree Collapse file tree 15 files changed +57
-11
lines changed Original file line number Diff line number Diff line change 11package com .podio .app ;
22
3+ import java .io .Serializable ;
4+
35import org .codehaus .jackson .annotate .JsonProperty ;
46
5- public class ApplicationMicro {
7+ public class ApplicationMicro implements Serializable {
8+
9+ private static final long serialVersionUID = 1L ;
610
711 /**
812 * The id of the app
Original file line number Diff line number Diff line change 1010
1111public class Comment extends CreatedBase {
1212
13+ private static final long serialVersionUID = 1L ;
14+
1315 /**
1416 * The id of the comment. Can be used to update and delete the comment
1517 */
Original file line number Diff line number Diff line change 11package com .podio .common ;
22
3+ import java .io .Serializable ;
34import java .net .URL ;
45
56import org .codehaus .jackson .annotate .JsonProperty ;
67
7- public class AuthorizationEntity {
8+ public class AuthorizationEntity implements Serializable {
9+
10+ private static final long serialVersionUID = 1L ;
811
912 private AuthorizationEntityType type ;
1013
Original file line number Diff line number Diff line change 11package com .podio .common ;
22
3+ import java .io .Serializable ;
34import java .net .URL ;
45
5- public class AuthorizationInterface {
6+ public class AuthorizationInterface implements Serializable {
7+
8+ private static final long serialVersionUID = 1L ;
69
710 private int id ;
811
Original file line number Diff line number Diff line change 11package com .podio .common ;
22
3+ import java .io .Serializable ;
4+
35import org .codehaus .jackson .annotate .JsonProperty ;
46import org .joda .time .DateTime ;
57
6- public class CreatedBase {
8+ public class CreatedBase implements Serializable {
9+
10+ private static final long serialVersionUID = 1L ;
711
812 /**
913 * The entity who created the comment
Original file line number Diff line number Diff line change 11package com .podio .contact ;
22
3+ import java .io .Serializable ;
4+
35import org .codehaus .jackson .annotate .JsonProperty ;
46
5- public class ProfileBase {
7+ public class ProfileBase implements Serializable {
8+
9+ private static final long serialVersionUID = 1L ;
610
711 /**
812 * The id of the profile
Original file line number Diff line number Diff line change 11package com .podio .contact ;
22
3+
34public class ProfileMini extends ProfileBase {
45
6+ private static final long serialVersionUID = 1L ;
7+
58 private Integer avatar ;
69
710 private String name ;
Original file line number Diff line number Diff line change 11package com .podio .embed ;
22
3+ import java .io .Serializable ;
34import java .util .List ;
45
56import org .codehaus .jackson .annotate .JsonProperty ;
67import org .joda .time .DateTime ;
78
89import com .podio .file .File ;
910
10- public class Embed {
11+ public class Embed implements Serializable {
12+
13+ private static final long serialVersionUID = 1L ;
1114
1215 /**
1316 * The id of the embed
@@ -74,6 +77,7 @@ public int getId() {
7477 return id ;
7578 }
7679
80+ @ JsonProperty ("embed_id" )
7781 public void setId (int id ) {
7882 this .id = id ;
7983 }
Original file line number Diff line number Diff line change 1010
1111public class File extends CreatedBase {
1212
13+ private static final long serialVersionUID = 1L ;
14+
1315 /**
1416 * The id of the file
1517 */
Original file line number Diff line number Diff line change 11package com .podio .item ;
22
3+ import java .io .Serializable ;
34import java .util .List ;
45import java .util .Map ;
56
67import org .codehaus .jackson .annotate .JsonProperty ;
78
89import com .podio .app .ApplicationFieldType ;
910
10- public class FieldValuesView {
11+ public class FieldValuesView implements Serializable {
12+
13+ private static final long serialVersionUID = 1L ;
1114
1215 /**
1316 * The id of the field
You can’t perform that action at this time.
0 commit comments