what is use of business objects?
Answers were Sorted based on User's Feedback
Answer / nidhi
business objects are used to handle business logic like
complex computations. They accept the request from the tier
handing client side and process computations using resources
available at server side and send some material/instructions
to server side if required to be stored, modified etc in DB
for example. After that return the response to the tier
which is handling generation of response to client side i.e
back to the tier from where it received the request. Example
of such business object components are EJB, hibernate.
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / bharat singh
Generally the Business Object Layer encapsulate your Domain
Specific objects.So that you do not expose your domain
specific objects and hide them.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / aravind
In bussiness object we will write the Bussiness Logic.
ie.,ex:- Transfering money,Bussiness transactions
| Is This Answer Correct ? | 2 Yes | 3 No |
What is the functionability stubs and skeletons?
Difference between concurrent hashmap and hashtable and collections
What is “try and catch” in java
What is a Presistent Object?
0 Answers InfoAxon Technologies,
How can you read content from file in java?
When finally clause is executed?
when we write class.forName("any one class"); what happens actually?what it will return?explain stepwise?
What is space character in java?
string is immutable? right every one knows that, my question is it advantage or disadvantage making string immutable?
If I don't provide any arguments on the command line, then what will the value stored in the string array passed into the main() method, empty or null?
What is string literal in java?
If two threads call a static method at the same point of time, what will happen?