123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- package com.rdlze.radializebase.interfaces;
- import java.io.Serializable;
- import java.rmi.Remote;
- import java.rmi.RemoteException;
- import com.rdlze.radializeutils.objects.BigTitleResp;
- import com.rdlze.radializeutils.objects.IndexResponse;
- public interface InterfaceIdFinder extends Remote, Serializable {
-
- public IndexResponse search(String artist, String music) throws RemoteException;
-
-
- public IndexResponse search(String artist, String music, boolean useMBHTTP) throws RemoteException;
-
-
- public int searchMusic(String music) throws RemoteException;
-
-
-
- public int searchArtist(String artist) throws RemoteException;
-
-
- public int searchArtistAlias(String artist) throws RemoteException;
-
-
- public int searchGenres(String genre) throws RemoteException;
-
-
- public int searchRadio(String radio) throws RemoteException;
-
-
- public int searchTags(String tags) throws RemoteException;
-
-
- public boolean insertMedia(String name, int idMedia, int idArtist, int idMusic, String mbidArtist, String mbidMusic) throws RemoteException;
-
- public boolean insertArtist(String name, int idArtist, String mbidArtist) throws RemoteException;
-
- public boolean insertMusic(String name, int idMusic, int artistId, String mbidMusic) throws RemoteException;
-
-
- public BigTitleResp searchBigTitle(String bigTitle, int numResultsToBeAnalysed, boolean shallContainResp) throws RemoteException;
-
- public Boolean isSynching() throws RemoteException, Exception;
-
- public void SynchonizeTableAndIndexes() throws RemoteException;
-
- public int getUpdaterQueueSize() throws RemoteException;
-
- }
|