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;
10:
11: /**
12: * Provides interface that is combination of AutoKeyGenerator and KeyGenerator
13: * interfaces. Classes implementing it can be used both as stand-alone and auto
14: * key generators.
15: *
16: * @see AutoKeyGenerator
17: * @see KeyGenerator
18: *
19: * @author Gennady Krizhevsky
20: */
21: public interface ComplexKeyGenerator extends AutoKeyGenerator,
22: KeyGenerator {
23: }
|