Here you can find the source of getQosFlowId(short tableId, BigInteger dpId, int lportTag)
public static String getQosFlowId(short tableId, BigInteger dpId, int lportTag)
//package com.java2s; /*/*www. ja v a 2 s .c om*/ * Copyright (c) 2017 Intel Corporation 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 getQosFlowId(short tableId, BigInteger dpId, int lportTag) { return new StringBuffer().append(tableId).append(dpId) .append(lportTag).toString(); } }