1 /*******************************************************************************
2 * Copyright (c) 2017 Association for Decentralized Information Management
4 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the Eclipse Public License v1.0
6 * which accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
10 * Semamtum Oy - initial API and implementation
11 *******************************************************************************/
12 package org.simantics.graph.db;
17 * @author Tuukka Lehtonen
20 public class ImportResult {
23 * This lists externals that the import was missing and has created in the
24 * database as L0.ExternalEntity place-holders for now.
26 public final Set<String> missingExternals;
28 public ImportResult(Set<String> missingExternals) {
29 this.missingExternals = missingExternals;
32 public boolean hasMissingExternals() {
33 return !missingExternals.isEmpty();