1 //2 // JahiaIncrementorsDBService3 // EV 02.11.20004 //5 // autoIncrement()6 //7 8 package org.jahia.services.database;9 10 import org.jahia.data.JahiaDOMObject;11 import org.jahia.exceptions.JahiaException;12 import org.jahia.services.JahiaService;13 14 15 public abstract class JahiaIncrementorsDBService extends JahiaService {16 17 18 /***19 * autoIncrement20 * EV 02.11.200021 *22 */23 public abstract int autoIncrement( String tableName ) throws JahiaException;24 25 /***26 * returns a DOM representation of the auto ids table27 * NK 13.08.200128 *29 */30 public abstract JahiaDOMObject getAutoIdsAsDOM()31 throws JahiaException;32 33 34 } // end JahiaIncrementorsDBService35