Java BigInteger Calculate getCreateLocalNextHopJobKey(Long vpnId, BigInteger dpnId, String prefix)

Here you can find the source of getCreateLocalNextHopJobKey(Long vpnId, BigInteger dpnId, String prefix)

Description

get Create Local Next Hop Job Key

License

Open Source License

Declaration

public static String getCreateLocalNextHopJobKey(Long vpnId,
            BigInteger dpnId, String prefix) 

Method Source Code

//package com.java2s;
/*// w w  w  . j  av a  2s. c  om
 * Copyright ? 2016, 2017 Ericsson India Global Services Pvt Ltd. 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
 */

import java.math.BigInteger;

public class Main {
    public static String getCreateLocalNextHopJobKey(Long vpnId,
            BigInteger dpnId, String prefix) {
        return "FIB-" + vpnId.toString() + "-" + dpnId.toString() + "-"
                + prefix;
    }
}

Related

  1. getByteArrayFromBigIntegerArray(Object value)
  2. getBytes(BigInteger bi, int minLen)
  3. getBytes(BigInteger big, int bitlen)
  4. getBytesWithoutSign(BigInteger arg)
  5. getClearExpPipe(BigInteger M)
  6. getDateOf(BigInteger fileTime)
  7. getDateOf(final BigInteger fileTime)
  8. getDigitCount(BigInteger number)
  9. getHexString(BigInteger bigInt)