public Object getInstance()

in src/java/org/apache/fulcrum/pool/DefaultPoolService.java [129:140]


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