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

com.danidemi.jlubricant.embeddable.h2.H2Storage Maven / Gradle / Ivy

There is a newer version: 0.0.15
Show newest version
package com.danidemi.jlubricant.embeddable.h2;

/**
 * Implementations define how H2 can store database data. 
 * 
 * @author Daniele Demichelis
 */
public abstract class H2Storage {

    /** Implementations should return the storage specifier as expected by H2. */
    public abstract String getStorageSpecifier();
    
    /** Implementations should return whether this is a memory only mode, or not. */
    public abstract boolean isMemoryMode();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy