public code v1

This commit is contained in:
Francisco Jesús Martínez Mimbrera
2026-05-23 00:32:57 +02:00
commit 759a8968a2
4357 changed files with 163763 additions and 0 deletions
@@ -0,0 +1,20 @@
package flintstones.model.ahppreferences.service;
import java.util.HashMap;
import flintstones.entity.ahppreferences.PreferenceCollectionKey;
import flintstones.entity.preferences.preferencecollection.PreferenceCollection;
public interface IProblemPreferencesService {
void addOrUpdate(PreferenceCollection pc);
PreferenceCollection get(PreferenceCollectionKey pck);
PreferenceCollection get(String mainType, String otherType, String leftType, String rightType);
HashMap<PreferenceCollectionKey,PreferenceCollection> getAllPreferences();
void clear();
}