. */ /** * Doctrine_Identifier * * @author Konsta Vesterinen * @package Doctrine * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @category Object Relational Mapping * @link www.phpdoctrine.com * @since 1.0 * @version $Revision$ */ class Doctrine_Identifier { /** * constant for auto_increment identifier */ const AUTO_INCREMENT = 1; /** * constant for sequence identifier */ const SEQUENCE = 2; /** * constant for normal identifier */ const NORMAL = 3; /** * constant for composite identifier */ const COMPOSITE = 4; }