123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- package com.rdlze.radializebase.interfaces;
-
- import java.rmi.RemoteException;
- import java.util.List;
-
- import com.idealizeframework.irf.base.facade.RemoteFacade;
- import com.rdlze.radializebase.utils.AIRecommendedItem;
- import com.rdlze.radializebase.utils.FilterBean;
-
-
- public interface RemoteRadializeCacheFacade extends RemoteFacade {
-
-
-
- public List<AIRecommendedItem> searchByArtistReturnArtists(long userId,
- List<Integer> artistsIds, int howMany, FilterBean filters) throws RemoteException;
-
-
- public List<AIRecommendedItem> searchByArtistReturnSongs(long userId,
- List<Integer> artistsIds, int howMany, FilterBean filters) throws RemoteException;
-
-
- public List<AIRecommendedItem> searchByArtistReturnRadios(long userId,
- List<Integer> artistsIds, int howMany, FilterBean filters) throws RemoteException;
-
-
- public List<AIRecommendedItem> searchByArtistReturnTags(long userId,
- List<Integer> artistsIds, int howMany, FilterBean filters) throws RemoteException;
-
-
-
- public List<AIRecommendedItem> searchBySongReturnArtists(long userId,
- List<Integer> songsIds, int howMany, FilterBean filters) throws RemoteException;
-
-
- public List<AIRecommendedItem> searchBySongReturnSongs(long userId,
- List<Integer> songsIds, int howMany, FilterBean filters) throws RemoteException;
-
-
- public List<AIRecommendedItem> searchBySongReturnRadios(long userId,
- List<Integer> songsIds, int howMany, FilterBean filters) throws RemoteException;
-
-
- public List<AIRecommendedItem> searchBySongReturnTags(long userId,
- List<Integer> songsIds, int howMany, FilterBean filters) throws RemoteException;
-
-
-
- public List<AIRecommendedItem> searchByRadioReturnArtists(long userId,
- List<Integer> radiosIds, int howMany, FilterBean filters) throws RemoteException;
-
-
- public List<AIRecommendedItem> searchByRadioReturnSongs(long userId,
- List<Integer> radiosIds, int howMany, FilterBean filters) throws RemoteException;
-
-
- public List<AIRecommendedItem> searchByRadioReturnRadios(long userId,
- List<Integer> radiosIds, int howMany, FilterBean filters) throws RemoteException;
-
-
- public List<AIRecommendedItem> searchByRadioReturnTags(long userId,
- List<Integer> radiosIds, int howMany, FilterBean filters) throws RemoteException;
-
-
-
- public List<AIRecommendedItem> searchByTagReturnArtists(long userId,
- List<Integer> tagsIds, int howMany, FilterBean filters) throws RemoteException;
-
-
- public List<AIRecommendedItem> searchByTagReturnSongs(long userId,
- List<Integer> tagsIds, int howMany, FilterBean filters) throws RemoteException;
-
-
- public List<AIRecommendedItem> searchByTagReturnRadios(long userId,
- List<Integer> tagsIds, int howMany, FilterBean filters) throws RemoteException;
-
-
- public List<AIRecommendedItem> searchByTagReturnTags(long userId,
- List<Integer> tagsIds, int howMany,FilterBean filters) throws RemoteException;
-
-
-
- public List<AIRecommendedItem> getRecommendationsArtists(long userId,
- int howMany, List<Integer> momentsIds, FilterBean filters) throws RemoteException;
-
-
- public List<AIRecommendedItem> getRecommendationsSongs(long userId,
- int howMany, List<Integer> momentsIds, FilterBean filters) throws RemoteException;
-
-
- public List<AIRecommendedItem> getRecommendationsRadios(long userId,
- int howMany, List<Integer> momentsIds, FilterBean filters) throws RemoteException;
-
-
- public List<AIRecommendedItem> getRecommendationsTags(long userId,
- int howMany, List<Integer> momentsIds, FilterBean filters) throws RemoteException;
-
-
- public List<AIRecommendedItem> getRecommendationsFriends(long userId,
- int howMany, List<Integer> momentsIds, FilterBean filters) throws RemoteException;
-
- }
|