blob: c4091a985d829d40a34ece402cbe2ad91fff63d9 [file] [log] [blame]
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +05301/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +05303 *
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 */
16
Bharat saraswal96dfef02016-06-16 00:29:12 +053017package org.onosproject.yangutils.datamodel;
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +053018
Gaurav Agrawal95b416c2016-06-07 14:00:26 +053019import org.onosproject.yangutils.datamodel.exceptions.DataModelException;
Bharat saraswal96dfef02016-06-16 00:29:12 +053020import org.onosproject.yangutils.datamodel.utils.ResolvableStatus;
Vinod Kumar S427d2932016-04-20 13:02:58 +053021
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +053022/**
23 * Abstraction of YANG resolvable information. Abstracted to obtain the
24 * information required for linking resolution.
janani b23ccc312016-07-14 19:35:22 +053025 *
26 * @param <T> YANG resolvable info
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +053027 */
janani b23ccc312016-07-14 19:35:22 +053028public interface Resolvable<T> {
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +053029
30 /**
31 * Returns the status of resolution. If completely resolved returns enum
32 * value "RESOLVED", if not returns "UNRESOLVED", in case reference of
33 * grouping/typedef is added to uses/type but it's not resolved
Vinod Kumar Sd4deb062016-04-15 18:08:57 +053034 * "INTRA_FILE_RESOLVED" is returned.
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +053035 *
36 * @return status of resolution
37 */
38 ResolvableStatus getResolvableStatus();
39
40 /**
41 * Set the status of type/uses resolution. If completely resolved set enum
42 * value "RESOLVED", if not set it to "UNRESOLVED", in case reference of
43 * grouping/typedef is added to uses/type but it's not resolved
Vinod Kumar Sd4deb062016-04-15 18:08:57 +053044 * "INTRA_FILE_RESOLVED" should be set.
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +053045 *
46 * @param resolvableStatus status of resolution
47 */
48 void setResolvableStatus(ResolvableStatus resolvableStatus);
49
50 /**
51 * Resolves the linking.
Vinod Kumar S427d2932016-04-20 13:02:58 +053052 *
janani b23ccc312016-07-14 19:35:22 +053053 * @return list of entities to be added for resolution
Gaurav Agrawal95b416c2016-06-07 14:00:26 +053054 * @throws DataModelException data model exception
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +053055 */
janani b23ccc312016-07-14 19:35:22 +053056 T resolve()
Gaurav Agrawal95b416c2016-06-07 14:00:26 +053057 throws DataModelException;
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +053058}