| 88 | The BookService class does not make sense anymore (a Book is a Resource), but it could be useful for resource management. BookService will be renamed to ResourceService (it tests, too). It also needs some changes : |
| 89 | * deleteBook can accept EntityID as argument, not a resource. |
| 90 | * getAllResources must return List of ResourceRefs, not list of Resources. |
| 91 | * the same for searchBook. |
| 92 | * we also need getResource(entityId); |
| 93 | The BookDao must also be refacored to be ResourceDao. It must also have getResource(..) and getResourceList(). [[BR]] |
| 94 | The Web Services need also ResourceWebService. It will be a very-proto-revision and currently will persist a particular resource, making it available for download. Also, will use the XMLManagementService to pass the list of ResourceRefs for getResourceList() method. |
| 95 | |