All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.streamthoughts.jikkou.extension.aiven.api.data.CompatibilityCheckResponse Maven / Gradle / Ivy

The newest version!
/*
 * SPDX-License-Identifier: Apache-2.0
 * Copyright (c) The original authors
 *
 * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
 */
package io.streamthoughts.jikkou.extension.aiven.api.data;

import io.streamthoughts.jikkou.core.annotation.Reflectable;
import java.beans.ConstructorProperties;
import java.util.Collections;
import java.util.List;
import java.util.Optional;
import org.jetbrains.annotations.Nullable;

/**
 * POST/ Check compatibility of schema in Schema Registry - HTTP-response
 *
 * @param isCompatible Compatibility
 * @param errors       List of errors occurred during request processing
 * @param message      Printable result of the request
 */
@Reflectable
public record CompatibilityCheckResponse(boolean isCompatible,
                                         @Nullable List errors,
                                         @Nullable String message
) {

    @ConstructorProperties({
            "is_compatible",
            "errors",
            "message",
    })
    public CompatibilityCheckResponse {}

    /**
     * {@inheritDoc}
     **/
    @Override
    public List errors() {
        return Optional.ofNullable(errors).orElseGet(Collections::emptyList);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy