org.superbiz.moviefun
Interface Movies

All Known Implementing Classes:
MoviesImpl

public interface Movies


Method Summary
 void addMovie(Movie movie)
           
 void deleteMovie(Movie movie)
           
 void deleteMovieId(long id)
           
 List<Movie> findByDirector(String director)
           
 List<Movie> findByGenre(String genre)
           
 List<Movie> findByTitle(String title)
           
 List<Movie> getMovies()
           
 

Method Detail

addMovie

void addMovie(Movie movie)
              throws Exception
Throws:
Exception

deleteMovie

void deleteMovie(Movie movie)
                 throws Exception
Throws:
Exception

deleteMovieId

void deleteMovieId(long id)
                   throws Exception
Throws:
Exception

getMovies

List<Movie> getMovies()
                      throws Exception
Throws:
Exception

findByTitle

List<Movie> findByTitle(String title)
                        throws Exception
Throws:
Exception

findByGenre

List<Movie> findByGenre(String genre)
                        throws Exception
Throws:
Exception

findByDirector

List<Movie> findByDirector(String director)
                           throws Exception
Throws:
Exception


Copyright © 1999-2013 The Apache OpenEJB development community. All Rights Reserved.