Skip to content

Commit

Permalink
Made pojos serializable, new maven version 0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickHuetter committed Jun 3, 2014
1 parent 0b4ba3e commit 7c9f703
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.keyworddesk.api</groupId>
<artifactId>keyworddesk-java</artifactId>
<version>0.4</version>
<version>0.5</version>

<dependencies>
<dependency>
Expand Down
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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
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;
Expand Down

0 comments on commit 7c9f703

Please sign in to comment.