blob: 22970a9ed9030f17686c6105ce74a1b1f621472d [file] [log] [blame]
Gaurav Agrawal338735b2016-04-18 18:53:11 +05301/*
2 * Copyright 2016-present Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053016package org.onosproject.yangutils.translator.tojava.javamodel;
Gaurav Agrawal338735b2016-04-18 18:53:11 +053017
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053018import org.onosproject.yangutils.translator.tojava.JavaQualifiedTypeInfoContainer;
Gaurav Agrawal338735b2016-04-18 18:53:11 +053019
Gaurav Agrawal338735b2016-04-18 18:53:11 +053020
21/**
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053022 * Represent java based identification of the YANG leaves.
Gaurav Agrawal338735b2016-04-18 18:53:11 +053023 */
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053024public interface JavaQualifiedTypeResolver
25 extends JavaQualifiedTypeInfoContainer {
Gaurav Agrawal338735b2016-04-18 18:53:11 +053026
27 /**
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053028 * updates the qualified access details of the type.
Gaurav Agrawal338735b2016-04-18 18:53:11 +053029 */
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053030 void updateJavaQualifiedInfo();
Gaurav Agrawal338735b2016-04-18 18:53:11 +053031}