blob: 01541e47ba5eb6c88e7d6b5f7e042b9b7e97062e [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.openjpa.jdbc.schema;
import org.apache.openjpa.lib.meta.MetaDataSerializer;
/**
* Interface for schema serializers. Serializers work at the fine-grained
* fine-grained table level to allow you to split schemas among multiple files.
*
* @author Abe White
*/
public interface SchemaSerializer
extends MetaDataSerializer {
/**
* Return the set of tables that will be serialized.
*/
Table[] getTables();
/**
* Add the given table to the set of tables that will be serialized.
*/
void addTable(Table table);
/**
* Remove the given table from the set to be serialized.
*
* @return true if table was removed, false if not in set
*/
boolean removeTable(Table table);
/**
* Add the given schema's objects to the set of objects that will be
* serialized.
*/
void addAll(Schema schema);
/**
* Add all the objects in the given group to the set of objects that
* will be serialized.
*/
void addAll(SchemaGroup group);
/**
* Remove the given schema's objects from the set to be serialized.
*
* @return true if any objects in schema removed, false if none in set
*/
boolean removeAll(Schema schema);
/**
* Remove all schemas in the given group from the set to be serialized.
*
* @return true if any objects in the group were removed, false if
* none in set
*/
boolean removeAll(SchemaGroup group);
/**
* Clear the set of objects to be serialized.
*/
void clear();
}