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

com.microsoft.kiota.store.BackingStoreFactorySingleton Maven / Gradle / Ivy

The newest version!
package com.microsoft.kiota.store;

import jakarta.annotation.Nonnull;

/** This class is used to register the backing store factory. */
public class BackingStoreFactorySingleton {
    /** Default constructor */
    public BackingStoreFactorySingleton() {
        // default constructor
    }

    /** The backing store factory singleton instance. */
    @Nonnull public static BackingStoreFactory instance = new InMemoryBackingStoreFactory();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy