Update release in docs/conf.yaml
[transportpce.git] / common / src / main / java / org / opendaylight / transportpce / common / NetworkUtils.java
1 /*
2  * Copyright © 2016 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.common;
9
10 public final class NetworkUtils {
11
12     private NetworkUtils() {
13     }
14
15     public static final String CLLI_NETWORK_ID = "clli-network";
16
17     public static final String UNDERLAY_NETWORK_ID = "openroadm-network";
18
19     public static final String OVERLAY_NETWORK_ID = "openroadm-topology";
20
21     public static final String OTN_NETWORK_ID = "otn-topology";
22
23     public enum Operation {
24         CREATE,
25         DELETE
26     }
27
28 }