Skip to content

Commit 7fbbbde

Browse files
liuyou2yangzhiyue
authored andcommitted
Provides the ability to obtain and manage orchestrator instances. #356
1 parent 4ff861a commit 7fbbbde

File tree

4 files changed

+3
-16
lines changed

4 files changed

+3
-16
lines changed

dss-orchestrator/dss-orchestrator-common/pom.xml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
<artifactId>dss</artifactId>
2323
<groupId>com.webank.wedatasphere.dss</groupId>
2424
<version>1.0.0</version>
25-
<!-- <relativePath>../../pom.xml</relativePath>-->
2625
</parent>
2726
<modelVersion>4.0.0</modelVersion>
2827

@@ -33,11 +32,6 @@
3332
<artifactId>dss-common</artifactId>
3433
<version>${dss.version}</version>
3534
</dependency>
36-
<!-- <dependency>
37-
<groupId>com.webank.wedatasphere.dss</groupId>
38-
<artifactId>dss-development-process-standard</artifactId>
39-
<version>${dss.version}</version>
40-
</dependency>-->
4135
<dependency>
4236
<groupId>com.webank.wedatasphere.dss</groupId>
4337
<artifactId>dss-sso-integration-standard</artifactId>

dss-orchestrator/dss-orchestrator-common/src/main/java/com/webank/wedatasphere/dss/orchestrator/common/ref/impl/OrchestratorOpenRequestRefImpl.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,7 @@
2121
import java.util.List;
2222
import java.util.Map;
2323

24-
/**
25-
* @author allenlliu
26-
* @date 2020/12/23 15:24
27-
*/
24+
2825
public class OrchestratorOpenRequestRefImpl implements OrchestratorOpenRequestRef {
2926

3027
private Long orchestratorId;

dss-orchestrator/dss-orchestrator-conversion-standard/src/main/java/com/webank/wedatasphere/dss/orchestrator/converter/standard/operation/ConversionOperation.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,7 @@
2121
import com.webank.wedatasphere.dss.standard.common.entity.ref.ResponseRef;
2222
import com.webank.wedatasphere.dss.standard.common.service.Operation;
2323

24-
/**
25-
* Created by enjoyyin on 2021/6/22.
26-
*/
24+
2725
public interface ConversionOperation<K extends ConversionRequestRef, V extends ResponseRef> extends Operation<K, V> {
2826

2927
void setConversionService(ConversionService conversionService);

dss-orchestrator/dss-orchestrator-conversion-standard/src/main/java/com/webank/wedatasphere/dss/orchestrator/converter/standard/operation/DSSToRelConversionOperation.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,7 @@
2121
import com.webank.wedatasphere.dss.orchestrator.converter.standard.service.DSSToRelConversionService;
2222
import com.webank.wedatasphere.dss.standard.common.entity.ref.ResponseRef;
2323

24-
/**
25-
* Created by enjoyyin on 2021/6/22.
26-
*/
24+
2725
public abstract class DSSToRelConversionOperation implements ConversionOperation<DSSToRelConversionRequestRef, ResponseRef> {
2826

2927
private DSSToRelConversionService conversionService;

0 commit comments

Comments
 (0)