(Advanced) Bean Configuration
I would like to use the BeanFactory for a class implementing this interface (I know it wouldn't be a Bean):
interface MyInterface {
public void setName(String name) ;
public void add(DataSource datasource);
public String put(String key, String value);
}
The first one is a property and is no problem.
But what about the method 2 and 3.
Is it even possible to do it with a BeanFactory?
Kindest regards,
Victor
The technical we do immediately, the political takes *forever*.