To support different databases alternative BasicSeriesGenerators to handle database specific sequence are required.
The BasicSeriesGenerator is no longer instantiated by calling its constructor. Now an instance of type BasicSeriesGenerator is created by calling the method of the corresponding BasicSeriesGeneratorFactory.
import com.google.inject.Inject; import com.intershop.beehive.core.capi.series.BasicSeriesGenerator; import com.intershop.beehive.core.capi.series.BasicSeriesGeneratorFactory; public class BasicSeriesGeneratorTest { @Inject private BasicSeriesGeneratorFactory generatorFactory; private BasicSeriesGenerator obtainSeriesGenerator(String identifier) { BasicSeriesGenerator generator = null; // ... if (generator == null) { generator = generatorFactory.createGenerator(identifier); } return generator; } }
The information provided in the Knowledge Base may not be applicable to all systems and situations. Intershop Communications will not be liable to any party for any direct or indirect damages resulting from the use of the Customer Support section of the Intershop Corporate Web site, including, without limitation, any lost profits, business interruption, loss of programs or other data on your information handling system.