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

dev.galasa.elasticlog.internal.properties.ElasticLogPropertiesSingleton Maven / Gradle / Ivy

The newest version!
/*
 * Copyright contributors to the Galasa project
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package dev.galasa.elasticlog.internal.properties;

import org.osgi.service.component.annotations.Activate;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.Deactivate;

import dev.galasa.framework.spi.IConfigurationPropertyStoreService;
import dev.galasa.elasticlog.internal.ElasticLogManagerException;

@Component(service = ElasticLogPropertiesSingleton.class, immediate = true)
public class ElasticLogPropertiesSingleton {

    private static ElasticLogPropertiesSingleton  INSTANCE;

    private IConfigurationPropertyStoreService cps;

    @Activate
    public void activate() {
        INSTANCE = this;
    }

    @Deactivate
    public void deacivate() {
        INSTANCE = null;
    }

    public static IConfigurationPropertyStoreService cps() throws ElasticLogManagerException {
        if (INSTANCE != null) {
            return INSTANCE.cps;
        }

        throw new ElasticLogManagerException("Attempt to access manager CPS before it has been initialised");
    }

    public static void setCps(IConfigurationPropertyStoreService cps) throws ElasticLogManagerException {
        if (INSTANCE != null) {
            INSTANCE.cps = cps;
            return;
        }

        throw new ElasticLogManagerException("Attempt to set manager CPS before instance created");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy