blob: 21314ef8b889b1ef1365b499afb6b1e89e7b8bfc [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
Gaurav Agrawal8a5af142016-06-15 13:58:01 +053017package org.onosproject.yangutils.utils.io.impl;
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 /**
Vidyashree Rama7142d9c2016-04-26 15:06:06 +053035 * Creates an object for YANG plugin config.
36 */
37 public YangPluginConfig() {
38 }
39
40 /**
janani bde4ffab2016-04-15 16:18:30 +053041 * Sets the path of the java code where it has to be generated.
42 *
43 * @param codeGenDir path of the directory
44 */
45 public void setCodeGenDir(String codeGenDir) {
46 this.codeGenDir = codeGenDir;
47 }
48
49 /**
50 * Returns the code generation directory path.
51 *
52 * @return code generation directory
53 */
54 public String getCodeGenDir() {
55 return codeGenDir;
56 }
57
58 /**
59 * Sets the object.
60 *
61 * @param conflictResolver object of the class
62 */
63 public void setConflictResolver(YangToJavaNamingConflictUtil conflictResolver) {
64 this.conflictResolver = conflictResolver;
65 }
66
67 /**
68 * Returns the object.
69 *
70 * @return object of the class
71 */
72 public YangToJavaNamingConflictUtil getConflictResolver() {
73 return conflictResolver;
74 }
75}