com.mobius.software.telco.protocols.diameter.primitives.s6c.SRRFlags Maven / Gradle / Ivy
package com.mobius.software.telco.protocols.diameter.primitives.s6c;
/*
* 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 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.DiameterBitmask32;
/**
*
* @author yulian oifa
*
*/
/*
5.3.3.4 SRR-Flags
The SRR-Flags AVP is of type Unsigned32 and it shall contain a bit mask. The meaning of the bits shall be as defined in table 5.3.3.4./1:
Table 5.3.3.4/1: SRR-Flags
Bit Name
Description
0 GPRS-Indicator
This bit shall be set if the SMS-GMSC supports receiving of two serving nodes addresses from the HSS.
1 SM-RP-PRI
This bit shall be set if the delivery of the short message shall be attempted when a service centre address is already contained in the Message Waiting Data file
2 Single-Attempt-Delivery
This bit if set indicates that only one delivery attempt shall be performed for this particular SM.
NOTE 1: Bits not defined in this table shall be cleared by the sending entity and discarded by the receiving entity.
*/
@DiameterAvpDefinition(code = TgppAvpCodes.SRR_FLAGS, vendorId = VendorIDs.TGPP_ID, name = "SRR-Flags")
public interface SRRFlags extends DiameterBitmask32
{
public static final int GPRS_INDICATOR_BIT = 0;
public static final int SM_RP_PRI_BIT = 1;
public static final int SINGLE_ATTEMPT_DELIVERY_BIT = 2;
public void setGPRSIndicatorBit(boolean isOn);
public boolean isGPRSIndicatorBitSet();
public void setSMRPPRIBit(boolean isOn);
public boolean isSMRPPRIBitSet();
public void setSingleAttemptDeliveryBit(boolean isOn);
public boolean isSingleAttemptDeliveryBitSet();
}