What is the best practice for retrieving an object from a collection within a domain object with a specified property?
For example, we have a car insurance application which has two classes: a Person with a list of Cars. If I always needed to retrieve a Car from a Person with the specified VIN, what is the best way to implement the method? I've provided a few examples below - others are welcome
Example 1
Add a new method within the Person entity to retrieve the VIN
public class Person
{
private HashSet<Car> cars = new HashSet<Car>();
public Set<Car> getCars()
{
return this.cars;
}
public Car getCarByVin(VIN vin)
{
//loop over cars and retrieve the car with the VIN
}
}
So from an application the process would be...
VIN vin = new VIN(...);
Person person = personDao.getPerson();
Car personCar = person.getCarByVin(vin);
**Example 2** Create a new list collection within the Person entity and add the retrieve by VIN method to the collection
public class Person
{
private CarSet cars = new CarSet();
public CarSet getCars()
{
return this.cars;
}
}
public class CarSet
implements Set<Car>
{
//implement required methods for Set
public Car byVin(VIN vin)
{
//loop over set and retrieve the car with the VIN
}
}
So from an application the process would be...
VIN vin = new VIN(...);
Person person = personDao.getPerson();
Car personCar = person.getCars().byVin(vin);