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

com.github.mhewedy.convo.store.StoreRepository Maven / Gradle / Ivy

There is a newer version: 0.1.6
Show newest version
package com.github.mhewedy.convo.store;

import com.github.mhewedy.convo.AbstractConversationHolder;

import java.util.Optional;

public interface StoreRepository {

     void update(T t);

     Optional findById(String id, Class clazz);

     void remove(T it);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy