Assign image keyname and pubkey at vnf level
[ccsdk/apps.git] / sdnr / wireless-transport / code-Carbon-SR1 / apps / route / impl / src / main / java / com / highstreet / technologies / odl / app / impl / delegates / Path.java
1 /*
2  * Copyright © 2015 ZTE 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 com.highstreet.technologies.odl.app.impl.delegates;
9
10 import java.util.Arrays;
11
12 /**
13  * Created by odl on 17-6-5.
14  */
15 public class Path
16 {
17     public FC[] main_ltps;
18     public FC[] backup_ltps;
19
20     @Override
21     public String toString()
22     {
23         return "Path{" +
24                 "main_ltps=" + Arrays.toString(main_ltps) +
25                 ", backup_ltps=" + Arrays.toString(backup_ltps) +
26                 '}';
27     }
28 }