1 /* 2 * SPDX-FileCopyrightText: none 3 * SPDX-License-Identifier: CC0-1.0 4 */ 5 6 package gov.nist.secauto.metaschema.core.model.xml; 7 8 import gov.nist.secauto.metaschema.core.model.IMetaschemaModule; 9 10 /** 11 * A Metaschema module represented in XML. 12 */ 13 public interface IXmlMetaschemaModule 14 extends IMetaschemaModule<IXmlMetaschemaModule> { 15 // no additional methods 16 }