Finish public DataObjectReference class hierarchy
[yangtools.git] / binding / binding-spec / src / main / java / org / opendaylight / yangtools / binding / BindingInstanceIdentifier.java
1 /*
2  * Copyright (c) 2024 PANTHEON.tech, s.r.o. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.binding;
9
10 import java.io.Serializable;
11 import org.opendaylight.yangtools.concepts.Immutable;
12
13 /**
14  * Binding representation of a {@code instance-identifier}.
15  */
16 public sealed interface BindingInstanceIdentifier extends Immutable, Serializable
17         // FIXME: YANGTOOLS-1577: PropertyIdentifier as well
18         permits DataObjectIdentifier {
19     // Nothing else
20 }