silentbalanceyh/vertx-zero

View on GitHub
vertx-gaia/vertx-up/src/main/java/io/vertx/up/atom/Rule.java

Summary

Maintainability
A
0 mins
Test Coverage
package io.vertx.up.atom;

import io.vertx.core.json.JsonObject;
import io.vertx.up.fn.Fn;

import java.io.Serializable;

public class Rule implements Serializable {

    private final String type;

    private final String message;

    private final JsonObject config = new JsonObject();

    private Rule(final JsonObject data) {
        this.type = data.getString("type");
        this.message = data.getString("message");
        this.config.mergeIn(data.copy());
        this.config.remove("type");
        this.config.remove("message");
    }

    public static Rule create(final JsonObject data) {
        return Fn.runOr(null, () -> new Rule(data), data);
    }

    public String getMessage() {
        return this.message;
    }

    public String getType() {
        return this.type;
    }

    public JsonObject getConfig() {
        return this.config;
    }

    @Override
    public String toString() {
        return "Rule{" +
            "type='" + this.type + '\'' +
            ", message='" + this.message + '\'' +
            ", config=" + this.config.encode() +
            '}';
    }
}