Hi all,
I have typical implementation scenario like,
1. I have serveral components like UserProfile, ApplicationManagement etc in my application
2. For each such component I have,
-
Servlet e.g. UserProfileManagerServlet, ApplicationManagerServlet etc..
3. For each component I have "Persistence Manager"(PM) interface + implemnetation e.g. UserProfilePM, ApplicationPM etc
4. Factory of those PMs that given a name returns a particular PM
5. Servlets communicate with a particular PM via "Data transfer object" (DTO) and those PMs does the persistence for those DTO (probably similar to JDO architecutre you know)
I want to model it in UML. Do I need to use "Component Diagram"? If not how to model this in UML? I don't think "Use case diagram" would help OR will it?
Regards
Maulin