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

io.quarkus.vertx.http.runtime.devmode.HasDevServicesSupplier Maven / Gradle / Ivy

The newest version!
package io.quarkus.vertx.http.runtime.devmode;

import java.util.function.Supplier;

public class HasDevServicesSupplier implements Supplier {

    private boolean hasDevServices = false;

    public HasDevServicesSupplier() {
    }

    public HasDevServicesSupplier(final boolean hasDevServices) {
        this.hasDevServices = hasDevServices;
    }

    public boolean isHasDevServices() {
        return hasDevServices;
    }

    public void setHasDevServices(boolean hasDevServices) {
        this.hasDevServices = hasDevServices;
    }

    @Override
    public Boolean get() {
        return this.hasDevServices;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy