Changes between Version 6 and Version 7 of S2S_WEB_BOOK_MANAGEMENT_R0


Ignore:
Timestamp:
12/18/08 16:14:09 (16 years ago)
Author:
kyli
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • S2S_WEB_BOOK_MANAGEMENT_R0

    v6 v7  
    3535= Design = 
    3636Create a "books.jsp" file, which lists all the persisted books on the server: 
    37  * Use the !BookService class to retrieve a list with the books, and the Book class to iterate through the list, displaying each book in appropriate format. These two require importing the classes in the jsp (use <%@page import=".."%>). 
     37 * Use the !BookService class to retrieve a list with the books, and the Book class to iterate through the list, displaying each book in appropriate format(thumbnail,name,author,description, download button). These two require importing the classes in the jsp (use <%@page import=".."%>). 
    3838 * Keep in mind that the list can be very long. This means we have to display a certain number of books per page (for example 10), a link to the previous/next page. It will be best to be done using the GET method (this way copying/saving the URL will be easy). 
    3939 * Access for non-logged users must be denied ( using response.sendRedirect(..); return;).