Update docs conf.yaml version to Sulfur
[transportpce.git] / common / src / main / java / org / opendaylight / transportpce / common / ServiceRateConstant.java
1 /*
2  * Copyright © 2020 Orange, Inc. 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
9 package org.opendaylight.transportpce.common;
10
11 import org.opendaylight.yangtools.yang.common.Uint32;
12
13 /**
14  * Constant class for service rate.
15  *
16  */
17 public final class ServiceRateConstant {
18
19     public static final Uint32 RATE_100 = Uint32.valueOf(100);
20     public static final Uint32 RATE_200 = Uint32.valueOf(200);
21     public static final Uint32 RATE_300 = Uint32.valueOf(300);
22     public static final Uint32 RATE_400 = Uint32.valueOf(400);
23
24     private ServiceRateConstant() {
25     }
26 }