Revision 43056 trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.fmap.dal/org.gvsig.fmap.dal.api/src/main/java/org/gvsig/fmap/dal/DataManager.java

View differences:

DataManager.java
409 409
     * @return the ExpressionBuilder
410 410
     */
411 411
    public ExpressionBuilder createExpressionBuilder();
412
    
413
    /**
414
	 * Returns a list of String containing the names of the available cache providers.
415
	 *
416
	 * @return
417
	 * 		list of strings with the names of the available cache providers
418
	 */    
419
    public List getFeatureCacheProviders();
420

  
421
	/**
422
	 * Returns an instance of {@link DataServerExplorerParameters} corresponding
423
	 * to the given name used by the cache to create a store to save the
424
	 * retrieved data.
425
	 * 
426
	 * @param name
427
	 *            name of a registered feature cache provider
428
	 * 
429
	 * @throws InitializeException
430
	 *             if parameter initialization causes an error.
431
	 * 
432
	 * @throws ProviderNotRegisteredException
433
	 *             if could not find a cache provider by the given name.
434
	 * 
435
	 */
436
	public DynObject createCacheParameters(String name)
437
			throws InitializeException, ProviderNotRegisteredException;
438
    
412 439
}

Also available in: Unified diff