1   /*
2    * SPDX-FileCopyrightText: none
3    * SPDX-License-Identifier: CC0-1.0
4    */
5   
6   package gov.nist.secauto.metaschema.core.model;
7   
8   public enum ModuleScopeEnum {
9     // TODO: consider naming these PRIVATE and PUBLIC in a 2.0
10    /**
11     * The definition is scoped to only the defining module.
12     */
13    LOCAL,
14    /**
15     * The definition is scoped to its defining module and any importing module.
16     */
17    INHERITED;
18  }