8c2bd6a3a944358685567c6804cf1a2466a24aed
[transportpce.git] / renderer / src / main / java / org / opendaylight / transportpce / renderer / ServicePathInputData.java
1 /*
2  * Copyright © 2017 AT&T and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.transportpce.renderer;
9
10 import org.opendaylight.yang.gen.v1.http.org.opendaylight.transportpce.device.renderer.rev210618.ServicePathInput;
11
12 public class ServicePathInputData {
13
14     private ServicePathInput servicePathInput;
15     private NodeLists nodeLists;
16
17     public ServicePathInputData(ServicePathInput servicePathInput, NodeLists nodeLists) {
18         this.servicePathInput = servicePathInput;
19         this.nodeLists = nodeLists;
20     }
21
22     public ServicePathInput getServicePathInput() {
23         return servicePathInput;
24     }
25
26     public NodeLists getNodeLists() {
27         return nodeLists;
28     }
29
30 }