-
Notifications
You must be signed in to change notification settings - Fork 470
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue 11609 fixes mssql #13239
Issue 11609 fixes mssql #13239
Conversation
…ate table and other minor changes.
…, unlocked and both choices
…, it is deleted
Jonathan seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account. You have signed the CLA already but the status is still pending? Let us recheck it. |
import com.dotmarketing.portlets.workflows.model.WorkflowSearcher; | ||
import com.dotmarketing.portlets.workflows.model.WorkflowStep; | ||
import com.dotmarketing.portlets.workflows.model.WorkflowTask; | ||
import com.dotmarketing.portlets.workflows.model.*; | ||
import com.liferay.portal.model.User; | ||
|
||
public interface WorkflowAPI { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import com.liferay.portal.model.User; | ||
|
||
public interface WorkflowAPI { | ||
|
||
public static final Set<WorkflowStatus> DEFAULT_SHOW_ON = EnumSet.of(WorkflowStatus.LOCKED, WorkflowStatus.UNLOCKED); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it is share between other object and need the visibility to be use as a part of the biz rule
.<String>of(value.toString().split(DELIMITER)) | ||
.map(WorkflowStatus::valueOf) | ||
.collect(Collectors.toSet()); | ||
} catch (Exception e) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no specific one, so
@@ -213,4 +214,17 @@ public static boolean toBoolean(final String strBool, final boolean defaultBool) | |||
} | |||
} | |||
|
|||
/** | |||
* Based on a value get from the database, if it is a boolean will returns a cast. | |||
* Otherwise will use the {@link DbConnectionFactory} to determinate the boolean value cross-db |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"Otherwise, it will use .... to determine"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thx
@@ -213,4 +214,17 @@ public static boolean toBoolean(final String strBool, final boolean defaultBool) | |||
} | |||
} | |||
|
|||
/** | |||
* Based on a value get from the database, if it is a boolean will returns a cast. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"Based on a value obtained from database, if it is a boolean will return a cast"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thx
No description provided.