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

com.mobius.software.telco.protocols.diameter.commands.sy.SpendingStatusNotificationRequest Maven / Gradle / Ivy

There is a newer version: 10.0.0-17-java11
Show newest version
package com.mobius.software.telco.protocols.diameter.commands.sy;
/*
 * 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.List;

import com.mobius.software.telco.protocols.diameter.ApplicationIDs;
import com.mobius.software.telco.protocols.diameter.CommandCodes;
import com.mobius.software.telco.protocols.diameter.annotations.DiameterCommandDefinition;
import com.mobius.software.telco.protocols.diameter.primitives.sy.PolicyCounterStatusReport;
import com.mobius.software.telco.protocols.diameter.primitives.sy.SNRequestType;

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

/*
 * 	5.6.4	Spending-Status-Notification-Request (SNR) command
	The SNR command, indicated by the Command-Code field set to 8388636 and the 'R' bit set in the Command Flags field, is sent by the OCS to the PCRF as part of the Spending Limit Report procedure.
	Message Format:
	 ::= < Diameter Header: 8388636, REQ, PXY >
                 < Session-Id >
                 [ DRMP ]
                 { Origin-Host }
                 { Origin-Realm }
                 { Destination-Realm }
                 { Destination-Host }
                 { Auth-Application-Id }
                 [ Origin-State-Id ]
                 [ OC-Supported-Features ]
                *[ Policy-Counter-Status-Report ]
                 [ SN-Request-Type ]
                *[ Proxy-Info ]
                *[ Route-Record ]
                *[ AVP ]
 */
@DiameterCommandDefinition(applicationId = ApplicationIDs.SY, commandCode = CommandCodes.SPENDING_STATUS, request = true, proxyable = true, name="SL-Request")
public interface SpendingStatusNotificationRequest extends SyRequest
{	
	public List getPolicyCounterStatusReport();
	 
	void setPolicyCounterStatusReport(List value);
	
	public SNRequestType getSNRequestType();
	
	void setSNRequestType(SNRequestType value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy