Analysis
Overview
The Sophie 2 Server Facade layer provides interface which is the same on both the server and the client sides for manipulating the resources on the server. The Facade layer accesses the Server core logic.
MetaInfo of the resource is:
- The author of the resource
- The date the resource was created
- Version of the resource
- The date the resource was last modified
- Who was the last that modified the resource
- The dimensions of the image (if the target of the resource is an image)
- etc.
Task requirements
Since every resource can be viewed/changed/persisted on the server, its meta information should also be accessible. Currently, there is not functionality in the facade for dealing with meta things, so it must be implemented.
- Create class in the facade, which provides the core functionality for accessing meta.
- Since this task uses the result from S2S_CORE_META_R0, a requirement is it to be implemented before this one.
- Refactor the current jsp and servlet code to use the facade. Currently, there is no such code, but at the time when the task is being implemented, it is possible to have such.
- Write unit tests.
Task result
Source code.
Implementation idea
Implement this task after S2S_CORE_META_R0.
Follow the current structure of the facade, i.e. make an interface in org.sophie2.server.facade and its imlplementation in org.sophie2.server.facade.impl.
Related
S2S_FACADE_RESOURCE_ACCESS_R0
S2S_DEPLOY_TECHNOLOGIES_R0
S2S_FACADE_LARGE_RESOURCE_ACCESS_R0
S2S_FACADE_RESOURCE_CHANGES_R0
How to demo
Show the code, run the tests.
Design
(Describe your design here.)
Implementation
(Describe and link the implementation results here (from the wiki or the repository).)
Testing
(Place the testing results here.)
Comments
(Write comments for this or later revisions here.)