Skip to content

Commit f5e3953

Browse files
committed
Version 1.0.1 of DSS is adapted to Apache of linkis #444
1 parent 3e9bcb0 commit f5e3953

File tree

35 files changed

+2
-135
lines changed

35 files changed

+2
-135
lines changed

dss-commons/dss-common/src/main/java/com/webank/wedatasphere/dss/common/conf/DSSCommonConf.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@
1818

1919
import org.apache.linkis.common.conf.CommonVars;
2020

21-
/**
22-
* @Date 2020/3/27
23-
*/
2421
public class DSSCommonConf {
2522

2623
public static final CommonVars<String> DSS_IO_ENV = CommonVars.apply("wds.dss.server.io.env", "BDAP_DEV");

dss-commons/dss-common/src/main/java/com/webank/wedatasphere/dss/common/entity/DSSWorkspace.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616

1717
package com.webank.wedatasphere.dss.common.entity;
1818

19-
/**
20-
* @Date 2021/7/1.
21-
*/
2219
public interface DSSWorkspace {
2320

2421
String getWorkspaceName();

dss-commons/dss-common/src/main/java/com/webank/wedatasphere/dss/common/entity/PublishType.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616

1717
package com.webank.wedatasphere.dss.common.entity;
1818

19-
/**
20-
* @date 2020/12/16 11:53
21-
*/
2219
public enum PublishType {
2320
FULL,DELTA
2421
}

dss-commons/dss-common/src/main/java/com/webank/wedatasphere/dss/common/entity/node/Layout.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616

1717
package com.webank.wedatasphere.dss.common.entity.node;
1818

19-
/**
20-
* @Date 2019/11/12.
21-
*/
2219
public class Layout {
2320
private float x;
2421
private float y;

dss-commons/dss-common/src/main/java/com/webank/wedatasphere/dss/common/entity/project/Project.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616

1717
package com.webank.wedatasphere.dss.common.entity.project;
1818

19-
/**
20-
* @Date 2019/9/16.
21-
*/
2219
public interface Project {
2320
Long getId();
2421

dss-commons/dss-common/src/main/java/com/webank/wedatasphere/dss/common/exception/DSSErrorException.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@
1818

1919
import org.apache.linkis.common.exception.ErrorException;
2020

21-
/**
22-
* @Date 2019/11/6.
23-
*/
2421
public class DSSErrorException extends ErrorException {
2522

2623
public DSSErrorException(int errCode, String desc) {

dss-commons/dss-common/src/main/java/com/webank/wedatasphere/dss/common/exception/DSSRuntimeException.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@
1818

1919
import org.apache.linkis.common.exception.WarnException;
2020

21-
/**
22-
* @Date 2019/9/24.
23-
*/
2421
public class DSSRuntimeException extends WarnException {
2522

2623
public DSSRuntimeException(String msg){

dss-commons/dss-common/src/main/java/com/webank/wedatasphere/dss/common/exception/ErrorCode.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616

1717
package com.webank.wedatasphere.dss.common.exception;
1818

19-
/**
20-
* @Date 2020/3/20
21-
*/
2219
public class ErrorCode {
2320

2421
public static final int INVALID_PARAMS = 71001;

dss-commons/dss-common/src/main/java/com/webank/wedatasphere/dss/common/exception/ThrowingConsumer.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616

1717
package com.webank.wedatasphere.dss.common.exception;
1818

19-
/**
20-
* @Date 2019/9/20.
21-
*/
2219
@FunctionalInterface
2320
public interface ThrowingConsumer<T,E extends Exception> {
2421
void accept(T t) throws E;

dss-commons/dss-common/src/main/java/com/webank/wedatasphere/dss/common/exception/ThrowingFunction.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616

1717
package com.webank.wedatasphere.dss.common.exception;
1818

19-
/**
20-
* @Date 2019/11/13.
21-
*/
2219
@FunctionalInterface
2320
public interface ThrowingFunction <T,R,E extends Exception> {
2421
R accept(T t) throws E;

0 commit comments

Comments
 (0)