blob: 7ffc91eeb54f6678b7483d09364ac0465f544bda [file] [log] [blame]
Shankara-Huaweid5823ab2016-11-22 10:14:52 +05301/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
Shankara-Huaweid5823ab2016-11-22 10:14:52 +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
17package org.onosproject.yms.app.ych.defaultcodecs.xml;
18
19import org.onosproject.yms.ych.YangCompositeEncoding;
20import org.onosproject.yms.ych.YangResourceIdentifierType;
21
22/**
23 * Represents implementation of YangCompositeEncoding interfaces.
24 */
25class YangCompositeEncodingImpl implements YangCompositeEncoding {
26
27 /**
28 * Resource identifier for composite encoding.
29 */
30 private String resourceIdentifier;
31
32 /**
33 * Resource information for composite encoding.
34 */
35 private String resourceInformation;
36
37 /**
38 * Resource identifier type.
39 */
40 private YangResourceIdentifierType resourceIdentifierType;
41
42 @Override
43 public void setResourceIdentifier(String resourceId) {
44 resourceIdentifier = resourceId;
45 }
46
47 @Override
48 public void setResourceInformation(String resourceInfo) {
49 resourceInformation = resourceInfo;
50 }
51
52 @Override
53 public void setResourceIdentifierType(YangResourceIdentifierType idType) {
54 resourceIdentifierType = idType;
55 }
56
57 @Override
58 public String getResourceIdentifier() {
59 return resourceIdentifier;
60 }
61
62 @Override
63 public YangResourceIdentifierType getResourceIdentifierType() {
64 return resourceIdentifierType;
65 }
66
67 @Override
68 public String getResourceInformation() {
69 return resourceInformation;
70 }
71}
72