-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Made pojos serializable, new maven version 0.5
- Loading branch information
1 parent
0b4ba3e
commit 7c9f703
Showing
4 changed files
with
9 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
src/main/java/com/encircle360/keyworddesk/client/pojos/Keyword.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
package com.encircle360.keyworddesk.client.pojos; | ||
|
||
import java.io.Serializable; | ||
|
||
/** | ||
* Keyword POJO. This class represents a keyword with its data. | ||
* | ||
* @author <a href="mailto:[email protected]">Patrick Huetter</a> | ||
*/ | ||
public class Keyword { | ||
public class Keyword implements Serializable { | ||
|
||
private String keyword; | ||
private Long searchVolume; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,14 +2,15 @@ | |
|
||
import net.sf.json.JSONObject; | ||
|
||
import java.io.Serializable; | ||
import java.util.ArrayList; | ||
|
||
/** | ||
* KeywordFilter POJO. This class represents a keyword filter. | ||
* | ||
* @author <a href="mailto:[email protected]">Patrick Huetter</a> | ||
*/ | ||
public class KeywordFilter { | ||
public class KeywordFilter implements Serializable { | ||
|
||
public static final String FILTER_TEXT_ILIKE = "ILike"; | ||
public static final String FILTER_TEXT_NOT_ILIKE = "NotILike"; | ||
|
4 changes: 3 additions & 1 deletion
4
src/main/java/com/encircle360/keyworddesk/client/pojos/KeywordRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
package com.encircle360.keyworddesk.client.pojos; | ||
|
||
import java.io.Serializable; | ||
|
||
/** | ||
* KeywordRequest POJO. This class represents a keyword request. | ||
* | ||
* @author <a href="mailto:[email protected]">Patrick Huetter</a> | ||
*/ | ||
public class KeywordRequest { | ||
public class KeywordRequest implements Serializable { | ||
|
||
private String keyword; | ||
private Boolean searchVolume; | ||
|