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

io.quarkiverse.operatorsdk.it.ADRConfiguration Maven / Gradle / Ivy

There is a newer version: 6.9.1
Show newest version
package io.quarkiverse.operatorsdk.it;

import io.quarkus.runtime.annotations.RecordableConstructor;

public class ADRConfiguration {
    private final int value;

    @RecordableConstructor
    public ADRConfiguration(int value) {
        this.value = value;
    }

    @SuppressWarnings("unused")
    public int getValue() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy