public Object getInstance()

in src/java/org/apache/fulcrum/pool/DefaultPoolService.java [104:115]


	public Object getInstance(String className, ClassLoader loader) throws PoolException 
	{
		try 
		{
			Object instance = pollInstance(className, null, null);
			return instance == null ? getFactory().getInstance(className, loader) : instance;
		} 
		catch (FactoryException fe) 
		{
			throw new PoolException(fe);
		}
	}