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

com.mobius.software.telco.protocols.diameter.primitives.accounting.ProSeDirectCommunicationReceptionDataContainer Maven / Gradle / Ivy

package com.mobius.software.telco.protocols.diameter.primitives.accounting;
/*
 * Mobius Software LTD
 * 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 
 */

import java.util.Date;

import com.mobius.software.telco.protocols.diameter.TgppAvpCodes;
import com.mobius.software.telco.protocols.diameter.VendorIDs;
import com.mobius.software.telco.protocols.diameter.annotations.DiameterAvpDefinition;
import com.mobius.software.telco.protocols.diameter.primitives.DiameterAvp;

import io.netty.buffer.ByteBuf;

/**
*
* @author yulian oifa
*
*/

/*
 * 	7.2.154Aa	ProSe-Direct-Communication-Reception-Data-Container AVP
	The ProSe-Direct-Communication-Reception-Data-Container AVP (AVP code 3461) is of type Grouped. Its purpose is to allow the transmission of the container to be reported for ProSe Charging. On encountering change on ProSe charging condition, this container  identifies the volume count for receiving within a ProSe group communication.
	It has the following ABNF grammar:
            
    ProSe-Direct-Communication-Reception-Data-Container :: =  < AVP Header: 3461>
		[ Local-Sequence-Number ]
		[ Coverage-Status ]
		[ 3GPP-User-Location-Info ]
		[ Accounting-Input-Octets ]
		[ Change-Time ]
		[ Change-Condition ]
		[ Visited-PLMN-Id ]
		[ Usage-Information-Report-Sequence-Number ]
		[ Radio-Resources-Indicator]
		[ Radio-Frequency ]
 */
@DiameterAvpDefinition(code = TgppAvpCodes.PROSE_DIRECT_COMMUNICATION_RECEPTION_DATA_CONTAINER, vendorId = VendorIDs.TGPP_ID, name = "ProSe-Direct-Communication-Reception-Data-Container")
public interface ProSeDirectCommunicationReceptionDataContainer extends DiameterAvp
{
	Long getLocalSequenceNumber();
	
	void setLocalSequenceNumber(Long value);
	
	CoverageStatusEnum getCoverageStatus();
	
	void setCoverageStatus(CoverageStatusEnum value);
	
	ByteBuf getTGPPUserLocationInfo();
	
	void setTGPPUserLocationInfo(ByteBuf value);
	
	Long getAccountingInputOctets();
	
	void setAccountingInputOctets(Long value);
	
	Date getChangeTime();
	
	void setChangeTime(Date value);
	
	Long getChangeCondition();
	
	void setChangeCondition(Long value);
	
	ByteBuf getVisitedPLMNId();
	
	void setVisitedPLMNId(ByteBuf value);
	
	Integer getUsageInformationReportSequenceNumber();
	
	void setUsageInformationReportSequenceNumber(Integer value);
	
	RadioResourcesIndicatorEnum getRadioResourcesIndicator();
	
	void setRadioResourcesIndicator(RadioResourcesIndicatorEnum value);
	
	ByteBuf getRadioFrequency();
	
	void setRadioFrequency(ByteBuf value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy