• 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

buisness object design pattern is not clear to me

 
Ranch Hand
Posts: 182
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,
buisness object is an object design pattern can be Intersect with other patterns so we dont make the implementation of it as a POJO it will be Composite Entity Business Object Strategy .
other question is buisness object could be Transfer object?
im confused please help
 
Ranch Hand
Posts: 196
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I question whether this is the correct forum to post this question.
Still to help you out on this.

What is a Business Object

They describe the business entities used by the business use cases. Within the context of a system they are the same as the domain objects.
Domain objects represent the "things" that exist or events that transpire in the environment in which the system works..

How to separate Transfer Objects from Business Objects

The intent of the Transfer Object is to carry data across the tier and not model the state of a Business Object.
The intent of the Transfer Object is to facilitate a use-case‘s specific data transfer needs and to reflects that use-case’s requirement very closely.
Therefore do not mingle but separate the intention of the Transfer - and Business Objects.
 
reply
    Bookmark Topic Watch Topic
  • New Topic