Browse Source

remove lombok annocation (#1603)

DK.Pino 5 years ago
parent
commit
b6cca46d8f

+ 8 - 2
dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/enums/AlertStatus.java

@@ -17,12 +17,10 @@
 package org.apache.dolphinscheduler.common.enums;
 
 import com.baomidou.mybatisplus.annotation.EnumValue;
-import lombok.Getter;
 
 /**
  * alert status
  */
-@Getter
 public enum AlertStatus {
     /**
      * 0 waiting executed; 1 execute successfully,2 execute failed
@@ -40,4 +38,12 @@ public enum AlertStatus {
     @EnumValue
     private final int code;
     private final String descp;
+
+    public int getCode() {
+        return code;
+    }
+
+    public String getDescp() {
+        return descp;
+    }
 }

+ 8 - 2
dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/enums/CommandType.java

@@ -17,12 +17,10 @@
 package org.apache.dolphinscheduler.common.enums;
 
 import com.baomidou.mybatisplus.annotation.EnumValue;
-import lombok.Getter;
 
 /**
  * command types
  */
-@Getter
 public enum CommandType {
 
     /**
@@ -59,4 +57,12 @@ public enum CommandType {
     @EnumValue
     private final int code;
     private final String descp;
+
+    public int getCode() {
+        return code;
+    }
+
+    public String getDescp() {
+        return descp;
+    }
 }

+ 33 - 27
dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/enums/DbType.java

@@ -17,38 +17,44 @@
 package org.apache.dolphinscheduler.common.enums;
 
 import com.baomidou.mybatisplus.annotation.EnumValue;
-import lombok.Getter;
 
 /**
  * data base types
  */
-@Getter
 public enum DbType {
-  /**
-   * 0 mysql
-   * 1 postgresql
-   * 2 hive
-   * 3 spark
-   * 4 clickhouse
-   * 5 oracle
-   * 6 sqlserver
-   * 7 db2
-   */
-  MYSQL(0, "mysql"),
-  POSTGRESQL(1, "postgresql"),
-  HIVE(2, "hive"),
-  SPARK(3, "spark"),
-  CLICKHOUSE(4, "clickhouse"),
-  ORACLE(5, "oracle"),
-  SQLSERVER(6, "sqlserver"),
-  DB2(7, "db2");
+    /**
+     * 0 mysql
+     * 1 postgresql
+     * 2 hive
+     * 3 spark
+     * 4 clickhouse
+     * 5 oracle
+     * 6 sqlserver
+     * 7 db2
+     */
+    MYSQL(0, "mysql"),
+    POSTGRESQL(1, "postgresql"),
+    HIVE(2, "hive"),
+    SPARK(3, "spark"),
+    CLICKHOUSE(4, "clickhouse"),
+    ORACLE(5, "oracle"),
+    SQLSERVER(6, "sqlserver"),
+    DB2(7, "db2");
 
-  DbType(int code, String descp){
-    this.code = code;
-    this.descp = descp;
-  }
+    DbType(int code, String descp) {
+        this.code = code;
+        this.descp = descp;
+    }
 
-  @EnumValue
-  private final int code;
-  private final String descp;
+    @EnumValue
+    private final int code;
+    private final String descp;
+
+    public int getCode() {
+        return code;
+    }
+
+    public String getDescp() {
+        return descp;
+    }
 }

+ 6 - 2
dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/enums/ExecutionStatus.java

@@ -18,13 +18,11 @@ package org.apache.dolphinscheduler.common.enums;
 
 
 import com.baomidou.mybatisplus.annotation.EnumValue;
-import lombok.Getter;
 
 /**
  * running status for workflow and task nodes
  *
  */
-@Getter
 public enum ExecutionStatus {
 
     /**
@@ -123,5 +121,11 @@ public enum ExecutionStatus {
         return this == KILL || this == STOP ;
     }
 
+    public int getCode() {
+        return code;
+    }
 
+    public String getDescp() {
+        return descp;
+    }
 }

+ 8 - 2
dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/enums/SparkVersion.java

@@ -17,9 +17,7 @@
 package org.apache.dolphinscheduler.common.enums;
 
 import com.baomidou.mybatisplus.annotation.EnumValue;
-import lombok.Getter;
 
-@Getter
 public enum SparkVersion {
 
     /**
@@ -37,4 +35,12 @@ public enum SparkVersion {
     @EnumValue
     private final int code;
     private final String descp;
+
+    public int getCode() {
+        return code;
+    }
+
+    public String getDescp() {
+        return descp;
+    }
 }

+ 8 - 2
dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/enums/UdfType.java

@@ -17,12 +17,10 @@
 package org.apache.dolphinscheduler.common.enums;
 
 import com.baomidou.mybatisplus.annotation.EnumValue;
-import lombok.Getter;
 
 /**
  * UDF type
  */
-@Getter
 public enum UdfType {
     /**
      * 0 hive; 1 spark
@@ -38,4 +36,12 @@ public enum UdfType {
     @EnumValue
     private final int code;
     private final String descp;
+
+    public int getCode() {
+        return code;
+    }
+
+    public String getDescp() {
+        return descp;
+    }
 }