Skip to content

Commit a80e01c

Browse files
ivicacclaude
andcommitted
732 Add RemoteApprovalTaskFacadeClient stub for EE worker-app
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent ef03f75 commit a80e01c

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
/*
2+
* Copyright 2025 ByteChef
3+
*
4+
* Licensed under the ByteChef Enterprise license (the "Enterprise License");
5+
* you may not use this file except in compliance with the Enterprise License.
6+
*/
7+
8+
package com.bytechef.ee.automation.task.remote.client.facade;
9+
10+
import com.bytechef.automation.task.domain.ApprovalTask;
11+
import com.bytechef.automation.task.facade.ApprovalTaskFacade;
12+
import com.bytechef.platform.annotation.ConditionalOnEEVersion;
13+
import org.springframework.stereotype.Component;
14+
15+
/**
16+
* @version ee
17+
*
18+
* @author Ivica Cardic
19+
*/
20+
@Component
21+
@ConditionalOnEEVersion
22+
public class RemoteApprovalTaskFacadeClient implements ApprovalTaskFacade {
23+
24+
@Override
25+
public ApprovalTask createApprovalTask(ApprovalTask approvalTask) {
26+
throw new UnsupportedOperationException();
27+
}
28+
}

0 commit comments

Comments
 (0)