blob: 95fb9bbb1d7a0717f56e821b5040cf8fe69c5582 [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
Shankara-Huaweibdf24bb2016-08-02 18:13:13 +053018import org.onosproject.yangutils.datamodel.javadatamodel.YangToJavaNamingConflictUtil;
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053019import org.onosproject.yangutils.translator.tojava.JavaQualifiedTypeInfoContainer;
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 */
Bharat saraswal2d90b0c2016-08-04 02:00:03 +053024interface JavaQualifiedTypeResolver
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053025 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.
Bharat saraswal33dfa012016-05-17 19:59:16 +053029 *
Shankara-Huaweibdf24bb2016-08-02 18:13:13 +053030 * @param conflictResolver plugin configurations
Gaurav Agrawal338735b2016-04-18 18:53:11 +053031 */
Shankara-Huaweibdf24bb2016-08-02 18:13:13 +053032 void updateJavaQualifiedInfo(YangToJavaNamingConflictUtil conflictResolver);
Gaurav Agrawal338735b2016-04-18 18:53:11 +053033}