-
Notifications
You must be signed in to change notification settings - Fork 467
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#30900 draft for first changes on force unlock
- Loading branch information
Showing
3 changed files
with
39 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
...in/java/com/dotmarketing/portlets/workflows/model/CheckboxWorkflowActionletParameter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package com.dotmarketing.portlets.workflows.model; | ||
|
||
/** | ||
* This represents a single checkbox parameter | ||
* @author jsanca | ||
*/ | ||
public class CheckboxWorkflowActionletParameter extends WorkflowActionletParameter { | ||
|
||
public CheckboxWorkflowActionletParameter(final String key, final String displayName, | ||
final String defaultValue, final boolean isRequired) { | ||
super(key, displayName, defaultValue, isRequired); | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "CheckboxWorkflowActionletParameter [key=" + getKey() + "]"; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters