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

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

package com.microsoft.kiota.store;

import jakarta.annotation.Nonnull;

/** Defines the contract for a factory that creates backing stores. */
public interface BackingStoreFactory {
    /**
     * Creates a new instance of the backing store.
     * @return a new instance of the backing store.
     */
    @Nonnull BackingStore createBackingStore();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy