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

io.quarkiverse.googlecloudservices.common.GcpConfigHolder Maven / Gradle / Ivy

There is a newer version: 2.13.0
Show newest version
package io.quarkiverse.googlecloudservices.common;

import javax.inject.Singleton;

import io.quarkus.arc.Unremovable;

@Singleton
@Unremovable
public class GcpConfigHolder {
    private GcpBootstrapConfiguration bootstrapConfig;

    public GcpBootstrapConfiguration getBootstrapConfig() {
        return bootstrapConfig;
    }

    GcpConfigHolder setBootstrapConfig(GcpBootstrapConfiguration bootstrapConfig) {
        this.bootstrapConfig = bootstrapConfig;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy