d3f98f5d75f9bca80f90ea33a5f20db2321f69c7
[transportpce.git] / common / src / main / java / org / opendaylight / transportpce / common / fixedflex / GridConstant.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.fixedflex;
10
11 /**
12  * Constant class common to fixed grid and flex grid.
13  *
14  */
15 public final class GridConstant {
16
17     public static final String C_BAND = "cband";
18     public static final int AVAILABLE_SLOT_VALUE = 255;
19     public static final int USED_SLOT_VALUE = 0;
20     public static final double GRANULARITY = 6.25;
21     public static final int EFFECTIVE_BITS = 768;
22     public static final double START_EDGE_FREQUENCY = 191.325;
23     public static final int NB_OCTECTS = 96;
24
25     private GridConstant() {
26     }
27 }