1 /*
2 * SPDX-FileCopyrightText: none
3 * SPDX-License-Identifier: CC0-1.0
4 */
5
6 package gov.nist.secauto.metaschema.core.model;
7
8 import edu.umd.cs.findbugs.annotations.NonNull;
9
10 /**
11 * Represents a Metaschema instance that has an associated value (i.e., field or
12 * flag instance).
13 */
14 public interface IValuedInstance extends INamedInstance {
15 @Override
16 @NonNull
17 IValuedDefinition getDefinition();
18 }