1 /*2 3 Derby - Class org.apache.derby.impl.store.access.btree.index.B2ITableLocking34 5 Licensed to the Apache Software Foundation (ASF) under one or more6 contributor license agreements. See the NOTICE file distributed with7 this work for additional information regarding copyright ownership.8 The ASF licenses this file to you under the Apache License, Version 2.09 (the "License"); you may not use this file except in compliance with10 the License. You may obtain a copy of the License at11 12 http://www.apache.org/licenses/LICENSE-2.013 14 Unless required by applicable law or agreed to in writing, software15 distributed under the License is distributed on an "AS IS" BASIS,16 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.17 See the License for the specific language governing permissions and18 limitations under the License.19 20 */21 22 package org.apache.derby.impl.store.access.btree.index;23 24 import org.apache.derby.iapi.services.sanity.SanityManager;25 26 import org.apache.derby.iapi.error.StandardException; 27 28 import org.apache.derby.iapi.store.access.ConglomerateController;29 import org.apache.derby.iapi.types.RowLocation;30 import org.apache.derby.iapi.store.access.TransactionController;31 32 import org.apache.derby.iapi.store.raw.LockingPolicy;33 import org.apache.derby.iapi.store.raw.Page;34 import org.apache.derby.iapi.store.raw.RecordHandle;35 import org.apache.derby.iapi.store.raw.Transaction;36 37 import org.apache.derby.impl.store.access.btree.BTree;38 import org.apache.derby.impl.store.access.btree.BTreeLockingPolicy;39 import org.apache.derby.impl.store.access.btree.ControlRow;40 import org.apache.derby.impl.store.access.btree.LeafControlRow;41 import org.apache.derby.impl.store.access.btree.OpenBTree;42 import org.apache.derby.impl.store.access.btree.WaitError;43 44 /**45 46 **/47 48 class B2ITableLocking3 extends B2INoLocking49 {50 /**************************************************************************51 * Constructors for This class:52 **************************************************************************53 */54 public B2ITableLocking3(55 Transaction rawtran,56 int lock_level,57 LockingPolicy locking_policy,58 ConglomerateController base_cc,59 OpenBTree open_btree)60 {61 }62 63 private B2ITableLocking3()64 {65 }66 }67