File tree Expand file tree Collapse file tree
src/main/java/com/encircle360/keyworddesk/client/pojos Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66
77 <groupId >com.keyworddesk.api</groupId >
88 <artifactId >keyworddesk-java</artifactId >
9- <version >0.4 </version >
9+ <version >0.5 </version >
1010
1111 <dependencies >
1212 <dependency >
Original file line number Diff line number Diff line change 11package com .encircle360 .keyworddesk .client .pojos ;
22
3+ import java .io .Serializable ;
4+
35/**
46 * Keyword POJO. This class represents a keyword with its data.
57 *
68 * @author <a href="mailto:p.huetter@encircle360.com">Patrick Huetter</a>
79 */
8- public class Keyword {
10+ public class Keyword implements Serializable {
911
1012 private String keyword ;
1113 private Long searchVolume ;
Original file line number Diff line number Diff line change 22
33import net .sf .json .JSONObject ;
44
5+ import java .io .Serializable ;
56import java .util .ArrayList ;
67
78/**
89 * KeywordFilter POJO. This class represents a keyword filter.
910 *
1011 * @author <a href="mailto:p.huetter@encircle360.com">Patrick Huetter</a>
1112 */
12- public class KeywordFilter {
13+ public class KeywordFilter implements Serializable {
1314
1415 public static final String FILTER_TEXT_ILIKE = "ILike" ;
1516 public static final String FILTER_TEXT_NOT_ILIKE = "NotILike" ;
Original file line number Diff line number Diff line change 11package com .encircle360 .keyworddesk .client .pojos ;
22
3+ import java .io .Serializable ;
4+
35/**
46 * KeywordRequest POJO. This class represents a keyword request.
57 *
68 * @author <a href="mailto:p.huetter@encircle360.com">Patrick Huetter</a>
79 */
8- public class KeywordRequest {
10+ public class KeywordRequest implements Serializable {
911
1012 private String keyword ;
1113 private Boolean searchVolume ;
You can’t perform that action at this time.
0 commit comments