Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
@Entity
public class Order{

     @ManyToOne
     private LocalStore store;
     private OrderStatus status;


     public void acceptOrder(LocalStore store){
        //business logic
     }
}

Is is better to have lifecycle methods in the domain object? Would it better to have this in a different class? (for example..the above would probably force LocalStore to cascade persistence.)

share|improve this question
Personally I try to implement logic like this in a Service or any other handler for that matter. I believe entities (or just objects) are to store data and for that I try to keep it as clean as possible. Sure, you might need to implement a method to convert some value, but to apply logic like accepting orders. That's not really the job of an entity, is it? – Aquillo Feb 11 at 20:10
@Aquillo Is there some kind of design pattern for this? – DD. Feb 11 at 20:12
Well, you could try to search on 'Object oriented design pattern' or something simular. I'm searching too at the moment, will let you know if something interesting turns up. – Aquillo Feb 11 at 20:16
You can read up on Domain Logic Patterns, which mandate, as a best practice, a clear separation of your domain model and your service layer. – Perception Feb 11 at 20:30
Any examples of a Service which manipulates the OrderStatus lifecycle...would be interested to see how people do this. – DD. Feb 11 at 21:45

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.