Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
OLAT CI-CD Testing Project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lars Oliver Dam
OLAT CI-CD Testing Project
Commits
ee1654b2
Commit
ee1654b2
authored
12 years ago
by
srosse
Browse files
Options
Downloads
Patches
Plain Diff
CL-220: update placeholder for CoursePassword condition
parent
feb66d14
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/org/olat/course/condition/additionalconditions/PasswordCondition.java
+14
-1
14 additions, 1 deletion
...rse/condition/additionalconditions/PasswordCondition.java
with
14 additions
and
1 deletion
src/main/java/org/olat/course/condition/additionalconditions/PasswordCondition.java
+
14
−
1
View file @
ee1654b2
...
@@ -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
;
}
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment