Skip to content

Commit

Permalink
Merge pull request #535 from opensrp/fix_plan_action_convertion
Browse files Browse the repository at this point in the history
Fix plan action deserialization
  • Loading branch information
Rkareko authored Dec 20, 2021
2 parents 2d1fa4b + 0d9c278 commit d07392b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<artifactId>opensrp-server-core</artifactId>
<packaging>jar</packaging>
<version>2.12.19-SNAPSHOT</version>
<version>2.12.20-SNAPSHOT</version>
<name>opensrp-server-core</name>
<description>OpenSRP Server Core module</description>
<url>https://github.com/OpenSRP/opensrp-server-core</url>
Expand Down
9 changes: 6 additions & 3 deletions src/main/java/org/opensrp/domain/ActionTemplate.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,16 @@ public ActionTemplate() {
this.type = ActionTemplate.ActionType.CREATE;
}

@Getter
@Setter
@AllArgsConstructor
public static class SubjectConcept implements Serializable {
private String text;

public String getText() {
return text;
}

public void setText(String text) {
this.text = text;
}
}

public static enum ActionType {
Expand Down

0 comments on commit d07392b

Please sign in to comment.