Skip to content

Commit

Permalink
Make AnalystClusterRequest concrete
Browse files Browse the repository at this point in the history
this is necessary for binding to incoming JSON
  • Loading branch information
abyrd committed Jun 3, 2015
1 parent d70dd59 commit 8d8f42a
Showing 1 changed file with 3 additions and 2 deletions.
Expand Up @@ -3,11 +3,12 @@
import java.io.Serializable;

/**
* Marker interface for requests sent to an SPTWorker.
* Superclass for requests sent to an SPTWorker.
* Not abstract, so we can bind JSON to it and discover the subclass to re-parse.
* @author matthewc
*
*/
public abstract class AnalystClusterRequest implements Serializable {
public class AnalystClusterRequest implements Serializable {
/** The ID of the destinations pointset */
public String destinationPointsetId;

Expand Down

0 comments on commit 8d8f42a

Please sign in to comment.