/* * Copyright © 2017 AT&T and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.transportpce.renderer; import java.util.List; import org.opendaylight.yang.gen.v1.http.org.transportpce.common.types.rev200615.olm.renderer.input.Nodes; public class NodeLists { private List olmList; private List list; public NodeLists(List olmList, List list) { this.olmList = olmList; this.list = list; } public List getOlmList() { return olmList; } public List getList() { return list; } }