Skip to content
Snippets Groups Projects
Commit ee1654b2 authored by srosse's avatar srosse
Browse files

CL-220: update placeholder for CoursePassword condition

parent feb66d14
No related branches found
No related tags found
No related merge requests found
...@@ -34,7 +34,8 @@ public class PasswordCondition extends Condition { ...@@ -34,7 +34,8 @@ public class PasswordCondition extends Condition {
private Long courseId; private Long courseId;
private GenericCourseNode node; private GenericCourseNode node;
private String password;
private String answer;
public Long getCourseId() { public Long getCourseId() {
return courseId; return courseId;
...@@ -51,4 +52,16 @@ public class PasswordCondition extends Condition { ...@@ -51,4 +52,16 @@ public class PasswordCondition extends Condition {
public void setNode(GenericCourseNode node) { public void setNode(GenericCourseNode node) {
this.node = node; this.node = node;
} }
public String getPassword(){
return this.password;
}
public void setPassword(String password){
this.password = password;
}
public void setAnswer(String answer) {
this.answer = answer;
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment