ソースを参照

Simplify enums: reuse enum name and remove unnecessary code (#2032)

master
Yanming Zhou GitHub 3年前
コミット
df871b0350
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
2個のファイルの変更7行の追加25行の削除
  1. +3
    -16
      sentinel-core/src/main/java/com/alibaba/csp/sentinel/EntryType.java
  2. +4
    -9
      sentinel-transport/sentinel-transport-common/src/main/java/com/alibaba/csp/sentinel/transport/endpoint/Protocol.java

+ 3
- 16
sentinel-core/src/main/java/com/alibaba/csp/sentinel/EntryType.java ファイルの表示

@@ -19,29 +19,16 @@ package com.alibaba.csp.sentinel;
* An enum marks resource invocation direction.
*
* @author jialiang.linjl
* @author Yanming Zhou
*/
public enum EntryType {
/**
* Inbound traffic
*/
IN("IN"),
IN,
/**
* Outbound traffic
*/
OUT("OUT");
OUT;

private final String name;

EntryType(String s) {
name = s;
}

public boolean equalsName(String otherName) {
return name.equals(otherName);
}

@Override
public String toString() {
return name;
}
}

+ 4
- 9
sentinel-transport/sentinel-transport-common/src/main/java/com/alibaba/csp/sentinel/transport/endpoint/Protocol.java ファイルの表示

@@ -2,18 +2,13 @@ package com.alibaba.csp.sentinel.transport.endpoint;

/**
* @author Leo Li
* @author Yanming Zhou
*/
public enum Protocol {
HTTP("http"),
HTTPS("https");

private String protocol;

Protocol(String protocol) {
this.protocol = protocol;
}
HTTP,
HTTPS;

public String getProtocol() {
return protocol;
return name().toLowerCase();
}
}

読み込み中…
キャンセル
保存