Interface StoreFactory

  • All Superinterfaces:
    Provider
    All Known Subinterfaces:
    CachedStoreFactoryProvider

    public interface StoreFactory
    extends Provider

    A factory for the different types of storages that manage the persistence of the domain model types.

    Implementations of this interface are usually related with the creation of those storage types accordingly with a specific persistence mechanism such as relational and NoSQL databases, filesystem, etc.

    Author:
    Pedro Igor
    • Method Detail

      • setReadOnly

        void setReadOnly​(boolean readOnly)
        Sets whether or not changes to instances returned from this factory are supported. Once marked as read-only, any attempt to change state will throw an IllegalStateException.
        Parameters:
        readOnly - if true, changes are not supported
      • isReadOnly

        boolean isReadOnly()
        Indicates if instances returned from storage are read-only.
        Returns:
        if true, instances only support reads.