All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mobius.software.telco.protocols.diameter.primitives.rx.FlowStatusEnum Maven / Gradle / Ivy

package com.mobius.software.telco.protocols.diameter.primitives.rx;

import java.util.HashMap;
import java.util.Map;

import com.mobius.software.telco.protocols.diameter.primitives.IntegerEnum;

/*
 * Mobius Software LTD, Open Source Cloud Communications
 * Copyright 2023, Mobius Software LTD and individual contributors
 * by the @authors tag.
 *
 * This program is free software: you can redistribute it and/or modify
 * under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation; either version 3 of
 * the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see 
 */
/**
*
* @author yulian oifa
*
*/

/*
 * 	5.3.11	Flow-Status AVP
	The Flow-Status AVP (AVP code 511) is of type Enumerated, and describes whether the IP flow(s) are enabled or disabled. The following values are defined:

	ENABLED-UPLINK (0)
		This value shall be used to enable associated uplink IP flow(s) and to disable associated downlink IP flow(s).
	
	ENABLED-DOWNLINK (1)
		This value shall be used to enable associated downlink IP flow(s) and to disable associated uplink IP flow(s).

	ENABLED (2)
		This value shall be used to enable all associated IP flow(s) in both directions.
	
	DISABLED (3)
		This value shall be used to disable all associated IP flow(s) in both directions.

	REMOVED (4)
		This value shall be used to remove all associated IP flow(s). The IP Filters for the associated IP flow(s) shall be removed. The associated IP flows shall not be taken into account when deriving the authorized QoS.

	NOTE 1:	The interpretation of values for the RTCP flows in the Rx interface is described within the procedures in clause 4.4.3.

	NOTE 2: The interpretation of values for IMS flows when SIP Forking is supported is described within the procedures in Annex A.3.1.
 */
public enum FlowStatusEnum implements IntegerEnum
{
	ENABLED_UPLINK(0),ENABLED_DOWNLINK(1),ENABLED(2),DISABLED(3),REMOVED(4);

	private static final Map intToTypeMap = new HashMap();
	static
	{
	    for (FlowStatusEnum type : FlowStatusEnum.values()) 
	    {
	    	intToTypeMap.put(type.value, type);
	    }
	}

	public static FlowStatusEnum fromInt(Integer value) 
	{
		FlowStatusEnum type = intToTypeMap.get(value);
	    return type;
	}
	
	private int value;
	
	private FlowStatusEnum(int value)
	{
		this.value=value;
	}
	
	public int getValue()
	{
		return value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy