Coverage Report - org.jtheque.films.services.able.IAutoImportService
 
Classes in this File Line Coverage Branch Coverage Complexity
IAutoImportService
N/A
N/A
1
 
 1  
 package org.jtheque.films.services.able;
 2  
 
 3  
 /*
 4  
  * This file is part of JTheque.
 5  
  *
 6  
  * JTheque is free software: you can redistribute it and/or modify
 7  
  * it under the terms of the GNU General Public License as published by
 8  
  * the Free Software Foundation, either version 3 of the License.
 9  
  *
 10  
  * JTheque is distributed in the hope that it will be useful,
 11  
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 12  
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 13  
  * GNU General Public License for more details.
 14  
  *
 15  
  * You should have received a copy of the GNU General Public License
 16  
  * along with JTheque.  If not, see <http://www.gnu.org/licenses/>.
 17  
  */
 18  
 
 19  
 import org.jtheque.films.persistence.od.able.Film;
 20  
 import org.jtheque.films.utils.Constants.Site;
 21  
 
 22  
 import java.io.File;
 23  
 import java.util.Collection;
 24  
 
 25  
 /**
 26  
  * A service for the auto import of films from a folder.
 27  
  *
 28  
  * @author Baptiste Wicht
 29  
  */
 30  
 public interface IAutoImportService {
 31  
     /**
 32  
      * Return the titles of the film from a folder.
 33  
      *
 34  
      * @param folder   The folder to search in.
 35  
      * @param fileMode The fileMode. If true, we search for filename, else for directory name.
 36  
      * @return A List containing all the titles found in the folder.
 37  
      */
 38  
     Collection<String> getFilmTitles(File folder, boolean fileMode);
 39  
 
 40  
     /**
 41  
      * Import the films titles.
 42  
      *
 43  
      * @param titles  All the titles to search.
 44  
      * @param webMode The mode. If true, all the informations are extracted from internet, else the film are simply created but not filled.
 45  
      * @param site    The site to search in.
 46  
      * @return A List containing all the films.
 47  
      */
 48  
     Collection<Film> importFilms(Collection<String> titles, boolean webMode, Site site);
 49  
 }