I have this code:
abstract class Entity
{
// blah-blah-blah
}
abstract class BaseCollection
{
public void add(Entity entity);
}
And I derive from the Entity and BaseCollection classes:
class User extends Entity
{
}
class UserCollection extends BaseCollection
{
public void add(User user) { // blah-blah-blah }
}
Is this an example of Liskov Substitution Principle violation? If it is, how can I solve the issue?