blob: 1f52da68606551d1a65641371b43145f97e43a6a [file] [log] [blame]
Shankara-Huaweid5823ab2016-11-22 10:14:52 +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
17package org.onosproject.yms.app.ymsm;
18
19import org.onosproject.yms.ych.YangCompositeEncoding;
20import org.onosproject.yms.ych.YangResourceIdentifierType;
21
22/**
23 * Represents implementation of YangCompositeEncoding interfaces.
24 */
25public class MockYangCompositeEncoding implements YangCompositeEncoding {
26 /**
27 * Resource identifier for composite encoding.
28 */
29 private String resourceIdentifier;
30
31 /**
32 * Resource information for composite encoding.
33 */
34 private String resourceInformation;
35
36 /**
37 * Resource identifier type.
38 */
39 private YangResourceIdentifierType resourceIdentifierType;
40
41 /**
42 * Sets resource identifier.
43 *
44 * @param resIdentifier resource identifier
45 */
46 public void setResourceIdentifier(String resIdentifier) {
47 resourceIdentifier = resIdentifier;
48 }
49
50 /**
51 * Sets the resource information.
52 *
53 * @param resInformation resource information
54 */
55 public void setResourceInformation(String resInformation) {
56 resourceInformation = resInformation;
57 }
58
59 /**
60 * Sets the resource identifier type.
61 *
62 * @param resIdent resource identifier
63 */
64 public void setResourceIdentifierType(YangResourceIdentifierType resIdent) {
65 resourceIdentifierType = resIdent;
66 }
67
68 @Override
69 public String getResourceIdentifier() {
70 return resourceIdentifier;
71 }
72
73 @Override
74 public YangResourceIdentifierType getResourceIdentifierType() {
75 return resourceIdentifierType;
76 }
77
78 @Override
79 public String getResourceInformation() {
80 return resourceInformation;
81 }
82}