
com.github.mhewedy.convo.store.StoreRepository Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of convo Show documentation
Show all versions of convo Show documentation
Convo conversation manager
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