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

com.solidstategroup.bullettrain.CrudStore Maven / Gradle / Ivy

package com.solidstategroup.bullettrain;

/**
 * Interface for a basic store to support persistence for Flags
 *
 * Created by Pavlo Maksymchuk.
 */
public interface CrudStore {

    T create(Flag flag);

    Flag read(String id);

    Flag update(Flag flag);

    void delete(String id);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy