01: /**
02: * Objective Database Abstraction Layer (ODAL)
03: * Copyright (c) 2004, The ODAL Development Group
04: * All rights reserved.
05: * For definition of the ODAL Development Group please refer to LICENCE.txt file
06: *
07: * Distributable under LGPL license.
08: * See terms of license at gnu.org.
09: */package com.completex.objective.components.persistency.key.impl;
10:
11: /**
12: * Sequence Key Generator based on TableSequenceKeyGeneratorImpl using
13: * empty prefix & "_SEQ" as sufffix for deriving sequence name
14: *
15: * @see TableSequenceKeyGeneratorImpl
16: *
17: * @author Gennady Krizhevsky
18: */
19: public class SimpleTableSequenceKeyGeneratorImpl extends
20: TableSequenceKeyGeneratorImpl {
21:
22: public SimpleTableSequenceKeyGeneratorImpl() {
23: super ("", "_SEQ");
24: }
25:
26: }
|