blob: 353d025381a13962d7d91745457693d57078c5eb [file] [log] [blame]
janani bde4ffab2016-04-15 16:18:30 +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 */
16
Shankara-Huaweibdf24bb2016-08-02 18:13:13 +053017package org.onosproject.yangutils.datamodel.javadatamodel;
janani bde4ffab2016-04-15 16:18:30 +053018
19/**
20 * Representation of plugin configurations required for YANG utils.
21 */
22public final class YangPluginConfig {
23
24 /**
janani bde4ffab2016-04-15 16:18:30 +053025 * Contains the code generation directory.
26 */
27 private String codeGenDir;
28
29 /**
30 * Contains information of naming conflicts that can be resolved.
31 */
32 private YangToJavaNamingConflictUtil conflictResolver;
33
34 /**
Bharat saraswal2d90b0c2016-08-04 02:00:03 +053035 * Java code generation is for sbi.
36 */
37 private String codeGenerateForsbi;
38
39 /**
Vidyashree Rama7142d9c2016-04-26 15:06:06 +053040 * Creates an object for YANG plugin config.
41 */
42 public YangPluginConfig() {
43 }
44
45 /**
Shankara-Huaweib9999eb2016-07-14 16:53:09 +053046 * Returns the string for code generation.
47 *
48 * @return returns the string for code generation.
49 */
50 public String getCodeGenerateForsbi() {
51 return codeGenerateForsbi;
52 }
53
54 /**
55 * Sets the string sbi or nbi for code generation.
56 *
Vidyashree Rama1b499062016-07-12 20:52:48 +053057 * @param codeGenerateForsbi generation is for sbi
Shankara-Huaweib9999eb2016-07-14 16:53:09 +053058 */
59 public void setCodeGenerateForsbi(String codeGenerateForsbi) {
60 this.codeGenerateForsbi = codeGenerateForsbi;
61 }
62
63 /**
janani bde4ffab2016-04-15 16:18:30 +053064 * Sets the path of the java code where it has to be generated.
65 *
66 * @param codeGenDir path of the directory
67 */
68 public void setCodeGenDir(String codeGenDir) {
69 this.codeGenDir = codeGenDir;
70 }
71
72 /**
73 * Returns the code generation directory path.
74 *
75 * @return code generation directory
76 */
77 public String getCodeGenDir() {
78 return codeGenDir;
79 }
80
81 /**
82 * Sets the object.
83 *
84 * @param conflictResolver object of the class
85 */
86 public void setConflictResolver(YangToJavaNamingConflictUtil conflictResolver) {
87 this.conflictResolver = conflictResolver;
88 }
89
90 /**
91 * Returns the object.
92 *
93 * @return object of the class
94 */
95 public YangToJavaNamingConflictUtil getConflictResolver() {
96 return conflictResolver;
97 }
Bharat saraswalb1170bd2016-07-14 13:26:18 +053098
janani bde4ffab2016-04-15 16:18:30 +053099}