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 an instance with an absolute path and an associated value.
10   * <p>
11   * Combines instance characteristics with value semantics for use in absolute
12   * positioning contexts within a Metaschema model.
13   */
14  public interface IInstanceAbsolute extends IInstance, IValued {
15    // no additional methods
16  }