Add yang-xpath-impl
[yangtools.git] / yang / yang-xpath-impl / src / main / java / org / opendaylight / yangtools / yang / xpath / impl / InstanceIdentifierLiteralExpr.java
1 /*
2  * Copyright (c) 2018 Pantheon Technologies, s.r.o.  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.xpath.impl;
9
10 import com.google.common.collect.ImmutableList;
11 import java.util.List;
12 import org.opendaylight.yangtools.yang.xpath.api.YangLiteralExpr;
13 import org.opendaylight.yangtools.yang.xpath.api.YangLocationPath.Step;
14
15 final class InstanceIdentifierLiteralExpr extends YangLiteralExpr {
16     private static final long serialVersionUID = 1L;
17
18     private final List<Step> steps;
19
20     InstanceIdentifierLiteralExpr(final String str, final List<Step> steps) {
21         super(str);
22         this.steps = ImmutableList.copyOf(steps);
23     }
24
25     List<Step> getSteps() {
26         return steps;
27     }
28 }