Void factory method

2011-02-22 Thread Ɓukasz Dywicki
Hello, I have small problem with Aries. I try to configure jetty with blueprint. Jetty requires to register some objects using void methods, for example: Server.addConnector(Connector). I try to use blueprint XML: bean id=server class=org.eclipse.jetty.server.Server init-method=start

RE: Void factory method

2011-02-22 Thread Timothy Ward
Hi, Just a query, but I'm assuming that we can't just new up an instance of the Server and inject into the static methods as if they were instance methods on a normal bean? I don't believe we do any checking to see whether property setters are static or not. This seems like it would be the