• 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

value objects and data objects

 
Ranch Hand
Posts: 87
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
from where can i get more information on value objects and data objects
[ January 28, 2004: Message edited by: feroz muhamed ]
 
Ranch Hand
Posts: 185
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by feroz muhamed:
from where can i get more information on value objects and data objects
[ January 28, 2004: Message edited by: feroz muhamed ]


Could be the same thing. Objects that contain just data have no behavior. You might also be referring to J2EE design patterns: DAO and Value List Handlers.
See:
http://java.sun.com/blueprints/patterns/catalog.html
 
Trailboss
Posts: 23780
IntelliJ IDE Firefox Browser Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The term "Value Objects Pattern" was accidentally re-coined by the blueprints folks. It was already being used! The proper term is "Data Transfer Objects Pattern" although when some folks implement it, they use stuff like "EmployeeDTO" which I think is klunky and cryptic. I prefer saying "EmployeeData"
 
reply
    Bookmark Topic Watch Topic
  • New Topic