Introduce model.util.type package
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / type / RestrictedInstanceIdentifierType.java
1 /*
2  * Copyright (c) 2015 Pantheon Technologies 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.yang.model.util.type;
9
10 import java.util.Collection;
11 import org.opendaylight.yangtools.yang.model.api.RevisionAwareXPath;
12 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
13 import org.opendaylight.yangtools.yang.model.api.UnknownSchemaNode;
14 import org.opendaylight.yangtools.yang.model.api.type.InstanceIdentifierTypeDefinition;
15
16 final class RestrictedInstanceIdentifierType extends AbstractRestrictedType<InstanceIdentifierTypeDefinition>
17         implements InstanceIdentifierTypeDefinition {
18     private final boolean requireInstance;
19
20     RestrictedInstanceIdentifierType(final InstanceIdentifierTypeDefinition baseType, final SchemaPath path,
21         final Collection<UnknownSchemaNode> unknownSchemaNodes, final boolean requireInstance) {
22         super(baseType, path, unknownSchemaNodes);
23         this.requireInstance = requireInstance;
24     }
25
26     @Deprecated
27     @Override
28     public RevisionAwareXPath getPathStatement() {
29         throw new UnsupportedOperationException("API design mistake");
30     }
31
32     @Override
33     public boolean requireInstance() {
34         return requireInstance;
35     }
36 }