819b401837352a8d49ed37dc5a5f80d9963f0377
[yangtools.git] / yang / yang-parser-spi / src / main / java / org / opendaylight / yangtools / yang / parser / spi / meta / AbstractInternedStringStatementSupport.java
1 /*
2  * Copyright (c) 2021 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.yang.parser.spi.meta;
9
10 import com.google.common.annotations.Beta;
11 import org.opendaylight.yangtools.yang.model.api.meta.DeclaredStatement;
12 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
13 import org.opendaylight.yangtools.yang.model.api.meta.StatementDefinition;
14 import org.opendaylight.yangtools.yang.parser.api.YangParserConfiguration;
15
16 /**
17  * A specialization of {@link AbstractInternedStatementSupport} for {@link String} arguments.
18  *
19  * @param <D> Declared Statement representation
20  * @param <E> Effective Statement representation
21  */
22 @Beta
23 public abstract class AbstractInternedStringStatementSupport<D extends DeclaredStatement<String>,
24         E extends EffectiveStatement<String, D>> extends AbstractInternedStatementSupport<String, D, E> {
25     protected AbstractInternedStringStatementSupport(final StatementDefinition publicDefinition,
26             final StatementPolicy<String, D> policy, final YangParserConfiguration config) {
27         super(publicDefinition, policy, config);
28     }
29
30     @Override
31     public final String parseArgumentValue(final StmtContext<?, ?, ?> ctx, final String value) {
32         return value;
33     }
34 }