1 /*
2 * SPDX-FileCopyrightText: none
3 * SPDX-License-Identifier: CC0-1.0
4 */
5
6 package gov.nist.secauto.metaschema.databind.model;
7
8 import gov.nist.secauto.metaschema.core.model.IFlagDefinition;
9
10 /**
11 * Represents a flag definition/instance bound to Java field.
12 */
13 public interface IBoundDefinitionFlag
14 extends IFlagDefinition, IBoundModelObject<Object>, IBoundDefinition {
15 // no additional methods
16 }