Help coderanch get a
new server
by contributing to the fundraiser
  • Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

Assignment question - integration tier within component diagram

 
Ranch Hand
Posts: 51
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi

If the integration tier within the component diagram illustrates how we interface with external systems I am wondering what level of detail we should show in this tier.

In Cade's example he keeps it pretty abstract - Pricing DAO, Inventory DAO, LDAP DAO etc. If you need to interface with an external system called X via JMS, should you just put X DAO in the integration tier or should you reference JMS in the integration layer?

Thanks
Joe
 
Ranch Hand
Posts: 38
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Both DAO and JMS will come under integration tier. Depending on the design decision can use DAO or/and JMS
 
Ranch Hand
Posts: 180
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can put the level of detail that you want in the component diagram, it is totally up to you and there is no real wrong or right level of detail.
Just a level a detail which is appropriate to pass your ideas across (to examiner in that case).

I used the Cade's way in my assignemnt with only high level components (X DAO ) in the integration layer>.
I suited the design of my solution.
I then described in more detail these integration components in the class diagram.
 
Joe O'Toole
Ranch Hand
Posts: 51
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks for the responses folks.

So if the SuD receives or sends data to/from an external system, e.g. inventory information via a web service call to an inventory system, in the integration tier I could represent this by Inventory DAO or Inventory Web Service. If I mention Web Service(rather than DAO) should it read Inventory Web Service Client or Inventory Web Service.

Similarily, if I interact with an external system(SYSTEM_A) via messaging, I could represent this as SYSTEM_A DAO or SYSTEM_A JMS Client(or SYSTEM_A JMS)

Thanks
Joe
 
Ranch Hand
Posts: 497
2
Spring Java Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Would it be better to mention these architecture techniques in "architecture document" instead of put notes in the diagrams?
Regards.
reply
    Bookmark Topic Watch Topic
  • New Topic