public boolean equals()

in src/main/java/org/apache/nifi/registry/flow/FlowVersionLocation.java [49:61]


    public boolean equals(final Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }
        final FlowVersionLocation that = (FlowVersionLocation) o;
        return Objects.equals(getBranch(), that.getBranch())
                && Objects.equals(getBucketId(), that.getBucketId())
                && Objects.equals(getFlowId(), that.getFlowId())
                && Objects.equals(version, that.version);
    }