Document Properties
Kbid
28G633
Last Modified
04-Feb-2020
Added to KB
05-Jun-2018
Public Access
Everyone
Status
Online
Doc Type
Guidelines
Product
ICM 7.10
Guide - 7.10 Database Sequences

Introduction

To support different databases alternative BasicSeriesGenerators to handle database specific sequence are required.

Using BasicSeriesGenerators to Handle Sequences

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;
    }
    
}
Disclaimer
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.
Home
Knowledge Base
Product Releases
Log on to continue
This Knowledge Base document is reserved for registered customers.
Log on with your Intershop Entra ID to continue.
Write an email to supportadmin@intershop.de if you experience login issues,
or if you want to register as customer.