I have a question about how to solve the following scenario using DDD.
I have 2 entities Person and Email with one to many relationship. A person can have zero or more email address(es).
Person is an aggregate root of Email which is a component.
class Person{
Set<Email> emails = new HashSet<Email>
}
Class Email {
String value;
Email(String value){
}
}
I have 2 requirements in the system:
User can send a request to add a new Email to person
User can create a list of emails temporarily and may or may not add them to person.
Does having 3 methods make sense in DDD? Or is there a better way to do meet my requirements above.
To create Email from party but not add it to the emails list (see
createEmail()below).Having a seperate method just to add email to the list (see
setEmail()below).A method to create email for a person and add it to the emails list (see
addEmail()below).
public Class Person{
Set<Email> emails = new HashSet<Email>
public void addEmail(String value){
Email email = createEmail(value);
emails.add(email);
}
public Email createEmail(String value){
return new Email(value);
}
public void setEmail(Email email){
emails.add(email);
}
}