eventmesh-common/src/main/java/org/apache/eventmesh/common/protocol/grpc/common/ClientType.java [44:53]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static boolean contains(Integer clientType) {
        boolean flag = false;
        for (ClientType ct : ClientType.values()) {
            if (ct.type == clientType.intValue()) {
                flag = true;
                break;
            }
        }
        return flag;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



eventmesh-common/src/main/java/org/apache/eventmesh/common/protocol/http/common/ClientType.java [45:54]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static boolean contains(Integer clientType) {
        boolean flag = false;
        for (ClientType ct : ClientType.values()) {
            if (ct.type == clientType.intValue()) {
                flag = true;
                break;
            }
        }
        return flag;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



