Le domaine

Domain encapsulate Enterprise wide business rules. An entity can be an object with methods, or it can be a set of data structures and functions.

public class Account {
	private String name;

	private AccountType accountType;

	private Balance balance;
}
public class Balance {
	private double amount;
}
public enum AccountType {
	CHEQUE, EPARGNE
}