Refactor to remove useless wavelength reference
[transportpce.git] / common / src / main / java / org / opendaylight / transportpce / common / fixedflex / FixedFlexImpl.java
diff --git a/common/src/main/java/org/opendaylight/transportpce/common/fixedflex/FixedFlexImpl.java b/common/src/main/java/org/opendaylight/transportpce/common/fixedflex/FixedFlexImpl.java
deleted file mode 100644 (file)
index 0059747..0000000
+++ /dev/null
@@ -1,92 +0,0 @@
-/*
- * Copyright © 2017 Orange, Inc. 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.common.fixedflex;
-
-public final class FixedFlexImpl implements FixedFlexInterface {
-    private long index;
-    private double centerFrequency;
-    private double start;
-    private double stop;
-    private double wavelength;
-    // wavelengthSpacing is in GHz
-    float wavelengthSpacing = 50;
-    // BEGIN_WAVELENGTH is in nm: f or F is appended to treat it explicitly as simple float (and not double float)
-    static final float BEGIN_WAVELENGTH = 1528.77f;
-    // java double is double float - d or D is appended to treat it explicitly as double float
-    static final double PRECISION = 10000d;
-
-    public FixedFlexImpl(Long index, double centreFrequency, double start, double stop, double wavelength) {
-        this.index = index;
-        this.centerFrequency = centreFrequency;
-        this.start = start;
-        this.stop = stop;
-        this.wavelength = wavelength;
-    }
-
-    public FixedFlexImpl() {
-        this.index = 0L;
-        this.centerFrequency = 0;
-        this.start = 0;
-        this.stop = 0;
-        this.wavelength = 0;
-    }
-
-    public FixedFlexImpl(long wlIndex) {
-        this.centerFrequency = 196.1 - (wlIndex - 1) * wavelengthSpacing / 1000;
-        // Truncate the value to the two decimal places
-        this.centerFrequency = Math.round(this.centerFrequency * PRECISION) / PRECISION;
-        this.start = this.centerFrequency - (wavelengthSpacing / 2) / 1000;
-        this.start = Math.round(this.start * PRECISION) / PRECISION;
-        this.stop = this.centerFrequency + (wavelengthSpacing / 2) / 1000;
-        this.stop = Math.round(this.stop * PRECISION) / PRECISION;
-        this.wavelength = BEGIN_WAVELENGTH + ((wlIndex - 1) * 0.40);
-        this.wavelength = Math.round(this.wavelength * PRECISION) / PRECISION;
-    }
-
-    @Override
-    /**
-     * @param index Wavelength number
-     * @return Returns FixedFlexImp object with the calculated result.
-     **/
-    public FixedFlexImpl getFixedFlexWaveMapping(long wlIndex) {
-        // In Flex grid  -35 <= n <= 60
-        long mappedWL = 61 - wlIndex;
-        FixedFlexImpl fixedFlex = new FixedFlexImpl();
-        fixedFlex.centerFrequency = 193.1 + (50.0 / 1000.0) * mappedWL;
-        fixedFlex.centerFrequency = Math.round(fixedFlex.centerFrequency * PRECISION) / PRECISION;
-        fixedFlex.wavelength = BEGIN_WAVELENGTH + ((wlIndex - 1) * 0.40);
-        fixedFlex.wavelength = Math.round(fixedFlex.wavelength * PRECISION) / PRECISION;
-        fixedFlex.start = 193.1 + (50.0 * mappedWL - 25) / 1000.0;
-        fixedFlex.start = Math.round(fixedFlex.start * PRECISION) / PRECISION;
-        fixedFlex.stop = 193.1 + (50.0 * mappedWL + 25) / 1000.0;
-        fixedFlex.stop = Math.round(fixedFlex.stop * PRECISION) / PRECISION;
-        fixedFlex.index = wlIndex;
-        return fixedFlex;
-    }
-
-    public double getCenterFrequency() {
-        return centerFrequency;
-    }
-
-    public double getStart() {
-        return start;
-    }
-
-    public long getIndex() {
-        return index;
-    }
-
-    public double getStop() {
-        return stop;
-    }
-
-    public double getWavelength() {
-        return wavelength;
-    }
-}