-
Notifications
You must be signed in to change notification settings - Fork 2
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
Update Simple Workflow Engine #4
base: main
Are you sure you want to change the base?
Conversation
83f4928
to
ebb6055
Compare
org.osgi.framework; version="[1.2.0, 2.0.0)", | ||
org.osgi.service.component; version="[1.2.0, 2.0.0)", | ||
|
||
org.wso2.carbon.identity.workflow.mgt, | ||
org.wso2.carbon.identity.workflow.mgt.util, | ||
org.wso2.carbon.identity.workflow.mgt.bean, | ||
org.wso2.carbon.identity.workflow.mgt.bean.metadata, | ||
org.wso2.carbon.identity.workflow.mgt.dto, | ||
org.wso2.carbon.identity.workflow.mgt.workflow, | ||
org.wso2.carbon.identity.workflow.mgt.exception, | ||
org.wso2.carbon.identity.workflow.mgt.dao, | ||
org.wso2.carbon.identity.role.v2.mgt.core, | ||
org.wso2.carbon.identity.role.v2.mgt.core.exception, | ||
org.wso2.carbon.identity.workflow.mgt.callback, | ||
org.apache.commons.logging, | ||
org.apache.commons.lang, | ||
org.wso2.carbon.utils.multitenancy, | ||
org.wso2.carbon.context, | ||
org.apache.commons.collections, | ||
org.wso2.carbon.identity.core.util, | ||
org.wso2.carbon.database.utils.jdbc, | ||
org.wso2.carbon.database.utils.jdbc.exceptions |
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.
Let's follow the same pattern as here (defining the version range)
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.
Addressed in commit 151a293
String tenantDomain = CarbonContext.getThreadLocalCarbonContext().getTenantDomain(); | ||
List<String> roleIDList; | ||
try{ | ||
roleIDList = WorkflowEngineServiceDataHolder.getInstance().getRoleManagementService().getRoleIdListOfUser(approverId, tenantDomain); |
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.
roleIDList = WorkflowEngineServiceDataHolder.getInstance().getRoleManagementService().getRoleIdListOfUser(approverId, tenantDomain); | |
List<String> roleIDList = WorkflowEngineServiceDataHolder.getInstance().getRoleManagementService().getRoleIdListOfUser(approverId, tenantDomain); |
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.
Addressed in commit 2439b6c
throw new WorkflowEngineClientException( | ||
WorkflowEngineConstants.ErrorMessages.ASSOCIATION_NOT_FOUND.getCode(), | ||
WorkflowEngineConstants.ErrorMessages.ASSOCIATION_NOT_FOUND.getDescription()); | ||
// |
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.
Addressed in commit 5e7cb4d
|
||
|
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.
Addressed in commit 7208ac4
pom.xml
Outdated
@@ -169,7 +169,12 @@ | |||
</dependency> | |||
<dependency> | |||
<groupId>org.wso2.carbon.identity.framework</groupId> | |||
<artifactId>org.wso2.carbon.identity.configuration.mgt.core</artifactId> | |||
<artifactId>org.wso2.carbon.identity.role.v2.mgt.core</artifactId> | |||
<version>7.7.234-SNAPSHOT</version> |
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.
<version>7.7.234-SNAPSHOT</version> | |
<version>7.7.234</version> |
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.
Let's define the version via a variable.
Ex: ${carbon.identity.framework.version}
We can change the value of that variable.
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.
Addressed in commit 151a293
pom.xml
Outdated
<dependency> | ||
<groupId>org.wso2.carbon</groupId> | ||
<artifactId>org.wso2.carbon.utils</artifactId> | ||
<version>4.10.34</version> |
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.
Fix here also.
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.
Addressed in commit 151a293
Purpose
Goals
Approach
User stories
Release note
Documentation
Training
Certification
Marketing
Automation tests
Security checks
Samples
Related PRs
Migrations (if applicable)
Test environment
Learning