• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

The Big 6 Patterns

 
Ranch Hand
Posts: 177
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
why there is only 6 patterns are included in the Exam? If after finishing SCWCD, if my interviewer asked me about a situation and design a pattern, i need to know other patterns also...

why DAO and value object are not in the big 6?

Is those thing not important?





 
NDP Prasad
Ranch Hand
Posts: 177
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Can anyone working in the J2ee project please clarify this...
 
NDP Prasad
Ranch Hand
Posts: 177
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
please also tell me what are other patterns important
 
pie sneak
Posts: 4727
Mac VI Editor Ruby
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
DAO used to be on the SCWCD but it was removed because it's actually in the business tier.

Value Object was changed to Transfer Object for the exam because, well, what the exam described was really a Transfer Object and not a Value Object. The two terms get used interchangeably a lot. But a Value Object really only holds (by Martin Fowler's description in the book UML Distilled) one value. A Date object would be a Value Object; it has one value. A Transfer Object, on the other hand, is meant to hold multiple objects/values to pass them all together in a method's return type so you don't have to call a separate method for every value you need returned.

In the ScwcdLinks link in my signature, you'll find PeabodyOnScwcdPatterns under Rancher Notes. That should give you good direction for both the Big 6 and where to go next for learning more.
 
NDP Prasad
Ranch Hand
Posts: 177
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Marc.
 
reply
    Bookmark Topic Watch Topic
  • New Topic