1 // Copyright (c) 2003-2007, Jodd Team (jodd.sf.net). All Rights Reserved. 2 3 package jodd.petite.scope; 4 5 /** 6 * Prototype scope doesn't pool any beans, so each time bean is requested, 7 * new instance will be created. 8 */ 9 public class ProtoScope implements Scope { 10 11 public Object lookup(String name) { 12 return null; 13 } 14 15 public void register(String name, Object object) { 16 } 17 } 18