1 23 package com.lutris.appserver.server.sql.oracle; 24 25 import com.lutris.appserver.server.sql.LogicalDatabase; 26 import com.lutris.appserver.server.sql.standard.StandardObjectIdAllocator; 27 import com.lutris.util.Config; 28 import com.lutris.util.ConfigException; 29 30 39 public class OracleObjectIdAllocator extends StandardObjectIdAllocator { 40 41 53 protected OracleObjectIdAllocator(LogicalDatabase logicalDatabase, 54 Config objIdConfig) 55 throws ConfigException { 56 super(logicalDatabase, objIdConfig); 57 } 58 } 59 | Popular Tags |