public boolean equals()

in src/main/java/org/apache/nifi/flow/ControllerServiceAPI.java [47:58]


    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }

        if (o == null || getClass() != o.getClass()) {
            return false;
        }

        final ControllerServiceAPI other = (ControllerServiceAPI) o;
        return Objects.equals(type, other.type) && Objects.equals(bundle, other.bundle);
    }