Skip to content

Commit 9a32efe

Browse files
committed
1652 - Reorganize
1 parent 7144d2f commit 9a32efe

File tree

4 files changed

+13
-14
lines changed

4 files changed

+13
-14
lines changed

server/libs/platform/platform-component/platform-component-api/src/main/java/com/bytechef/platform/component/definition/ContextFactory.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ public interface ContextFactory {
3030

3131
ActionContext createActionContext(
3232
String componentName, int componentVersion, String actionName, @Nullable ModeType type,
33-
@Nullable Long jobPrincipalId, @Nullable Long jobPrincipalWorkflowId, @Nullable String workflowId,
34-
@Nullable Long jobId, @Nullable ComponentConnection connection, boolean editorEnvironment);
33+
@Nullable Long jobPrincipalId, @Nullable Long jobPrincipalWorkflowId, @Nullable Long jobId,
34+
@Nullable String workflowId, @Nullable ComponentConnection connection, boolean editorEnvironment);
3535

3636
Context createContext(String componentName, @Nullable ComponentConnection connection);
3737

server/libs/platform/platform-component/platform-component-service/src/main/java/com/bytechef/platform/component/definition/ContextFactoryImpl.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ public ContextFactoryImpl(
6161
@Override
6262
public ActionContext createActionContext(
6363
String componentName, int componentVersion, String actionName, @Nullable ModeType type,
64-
@Nullable Long jobPrincipalId, @Nullable Long jobPrincipalWorkflowId, @Nullable String workflowId,
65-
@Nullable Long jobId, @Nullable ComponentConnection connection, boolean editorEnvironment) {
64+
@Nullable Long jobPrincipalId, @Nullable Long jobPrincipalWorkflowId, @Nullable Long jobId,
65+
@Nullable String workflowId, @Nullable ComponentConnection connection, boolean editorEnvironment) {
6666

6767
return new ActionContextImpl(
6868
componentName, componentVersion, actionName, type, jobPrincipalId, jobPrincipalWorkflowId, workflowId,

server/libs/platform/platform-component/platform-component-service/src/main/java/com/bytechef/platform/component/facade/ActionDefinitionFacadeImpl.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public List<Property> executeDynamicProperties(
7070
ComponentConnection componentConnection = getComponentConnection(connectionId);
7171

7272
ActionContext actionContext = contextFactory.createActionContext(
73-
componentName, componentVersion, actionName, null, null, null, workflowId, null, componentConnection, true);
73+
componentName, componentVersion, actionName, null, null, null, null, workflowId, componentConnection, true);
7474

7575
return tokenRefreshHelper.executeSingleConnectionFunction(
7676
componentName, componentVersion, componentConnection, actionContext,
@@ -149,8 +149,8 @@ public Object executePerform(
149149
ComponentConnection singleComponentConnection = executeFunctionData.getSingleComponentConnection();
150150

151151
ActionContext actionContext = contextFactory.createActionContext(
152-
componentName, componentVersion, actionName, type, jobPrincipalId, jobPrincipalWorkflowId, workflowId,
153-
jobId, singleComponentConnection, editorEnvironment);
152+
componentName, componentVersion, actionName, type, jobPrincipalId, jobPrincipalWorkflowId, jobId,
153+
workflowId, singleComponentConnection, editorEnvironment);
154154

155155
return tokenRefreshHelper.executeSingleConnectionFunction(
156156
componentName, componentVersion, singleComponentConnection, actionContext,
@@ -160,11 +160,11 @@ public Object executePerform(
160160
actionContext1),
161161
componentConnection1 -> contextFactory.createActionContext(
162162
componentName, componentVersion, actionName, type, jobPrincipalId, jobPrincipalWorkflowId,
163-
workflowId, jobId, componentConnection1, editorEnvironment));
163+
jobId, workflowId, componentConnection1, editorEnvironment));
164164
} else {
165165
ActionContext actionContext = contextFactory.createActionContext(
166-
componentName, componentVersion, actionName, type, jobPrincipalId, jobPrincipalWorkflowId, workflowId,
167-
jobId, null, editorEnvironment);
166+
componentName, componentVersion, actionName, type, jobPrincipalId, jobPrincipalWorkflowId, jobId,
167+
workflowId, null, editorEnvironment);
168168

169169
return actionDefinitionService.executeMultipleConnectionsPerform(
170170
componentName, componentVersion, actionName, inputParameters, executeFunctionData.componentConnections,
@@ -187,7 +187,7 @@ public Object executePerformForPolyglot(
187187
componentConnection1 -> contextFactory.createActionContext(
188188
componentName, componentVersion, actionName, actionContextAware.getModeType(),
189189
actionContextAware.getJobPrincipalId(), actionContextAware.getJobPrincipalWorkflowId(),
190-
actionContextAware.getWorkflowId(), actionContextAware.getJobId(), componentConnection1,
190+
actionContextAware.getJobId(), actionContextAware.getWorkflowId(), componentConnection1,
191191
actionContextAware.isEditorEnvironment()));
192192
}
193193

server/libs/platform/platform-component/platform-component-service/src/main/java/com/bytechef/platform/component/facade/ClusterElementDefinitionFacadeImpl.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,7 @@ public Object executeTool(
7171

7272
ActionContext context = contextFactory.createActionContext(
7373
componentName, componentVersion, clusterElementName, type, jobPrincipalId, jobPrincipalWorkflowId,
74-
workflowId, jobId,
75-
componentConnection, editorEnvironment);
74+
jobId, workflowId, componentConnection, editorEnvironment);
7675

7776
return tokenRefreshHelper.executeSingleConnectionFunction(
7877
componentName, componentVersion, componentConnection, context, ActionDefinitionErrorType.EXECUTE_PERFORM,
@@ -81,7 +80,7 @@ public Object executeTool(
8180
actionContext1),
8281
componentConnection1 -> contextFactory.createActionContext(
8382
componentName, componentVersion, clusterElementName, type, jobPrincipalId, jobPrincipalWorkflowId,
84-
workflowId, jobId, componentConnection1, editorEnvironment));
83+
jobId, workflowId, componentConnection1, editorEnvironment));
8584
}
8685

8786
private ComponentConnection getComponentConnection(Long connectionId) {

0 commit comments

Comments
 (0)