1 /*
2 * SPDX-FileCopyrightText: none
3 * SPDX-License-Identifier: CC0-1.0
4 */
5
6 package gov.nist.secauto.metaschema.core.model;
7
8 /**
9 * Represents a loaded Metaschema module.
10 *
11 * @param <SELF>
12 * the Java type of the module
13 */
14 public interface IMetaschemaModule<SELF extends IMetaschemaModule<SELF>>
15 extends IModuleExtended<
16 SELF,
17 IModelDefinition,
18 IFlagDefinition,
19 IFieldDefinition,
20 IAssemblyDefinition> {
21 // No additional methods
22 }