
com.arcadedb.integration.importer.SourceSchema Maven / Gradle / Ivy
The newest version!
/*
* Copyright © 2021-present Arcade Data Ltd ([email protected])
*
* Licensed 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.
*
* SPDX-FileCopyrightText: 2021-present Arcade Data Ltd ([email protected])
* SPDX-License-Identifier: Apache-2.0
*/
package com.arcadedb.integration.importer;
import com.arcadedb.integration.importer.format.FormatImporter;
import java.util.*;
public class SourceSchema {
private final FormatImporter formatImporter;
private final Source source;
private final AnalyzedSchema schema;
private final Map options = new HashMap<>();
public SourceSchema(final FormatImporter formatImporter, final Source source, final AnalyzedSchema schema) {
this.formatImporter = formatImporter;
this.source = source;
this.schema = schema;
}
public SourceSchema set(final String option, final String value) {
options.put(option, value);
return this;
}
public AnalyzedSchema getSchema() {
return schema;
}
public Source getSource() {
return source;
}
public Map getOptions() {
return options;
}
public FormatImporter getContentImporter() {
return formatImporter;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy