1 /*2 3 Derby - Class org.apache.derby.impl.sql.execute.GenericConstantAction4 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.sql.execute;23 24 import org.apache.derby.iapi.services.monitor.ModuleFactory;25 import org.apache.derby.iapi.services.monitor.Monitor;26 27 import org.apache.derby.iapi.services.context.ContextManager;28 29 import org.apache.derby.iapi.services.loader.ClassFactory;30 31 import org.apache.derby.iapi.services.sanity.SanityManager;32 33 import org.apache.derby.catalog.UUID;34 import org.apache.derby.iapi.services.uuid.UUIDFactory;35 36 import org.apache.derby.iapi.error.StandardException;37 38 import org.apache.derby.iapi.sql.conn.LanguageConnectionContext;39 40 41 import org.apache.derby.iapi.sql.execute.ConstantAction;42 43 import org.apache.derby.iapi.store.access.TransactionController;44 45 import org.apache.derby.iapi.sql.dictionary.DataDictionary;46 import org.apache.derby.iapi.sql.dictionary.DataDictionaryContext;47 48 import org.apache.derby.iapi.services.monitor.Monitor;49 import org.apache.derby.catalog.UUID;50 51 /**52 * Utilities for constant actions53 */54 abstract class GenericConstantAction implements ConstantAction55 {56 public final void readExternal(java.io.ObjectInput in ) {}57 public final void writeExternal(java.io.ObjectOutput out) {}58 }59