com.mobius.software.telco.protocols.diameter.primitives.tsp.DeliveryOutcome Maven / Gradle / Ivy
package com.mobius.software.telco.protocols.diameter.primitives.tsp;
/*
* 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.DiameterEnumerated;
/**
*
* @author yulian oifa
*
*/
/*
* 6.4.10 Delivery-Outcome AVP
The Delivery-Outcome AVP (AVP code 3009) is of type Enumerated, and informs the SCS of the outcome of the device action request. The Delivery-Outcome AVP can be included in Device-Notification-Request command.
The following values are defined:
SUCCESS (0)
This value indicates that the device action request was successfully completed. The value SUCCESSFUL_TRANSFER specified in TS 29.337 [17], clause 6.3.1 shall be mapped to this value.
EXPIRED (1)
This value indicates that the validity period expired before the trigger could be delivered. The value VALIDITY_TIME_EXPIRED specified in TS 29.337 [17], clause 6.3.1 shall be mapped to this value. (Temporary error)
TEMPORARYERROR (2)
This value indicates that this trigger encountered a temporary network error.
UNDELIVERABLE (3)
This value indicates that this trigger encountered a delivery error and is deemed permanently undeliverable. The values ABSENT_SUBSCRIBER and UE_MEMORY_CAPACITY_EXCEEDED specified in TS 29.337 [17], clause 6.3.1 shall be mapped to this value.
UNCONFIRMED (4)
This value indicates that the delivery of the device action request is not confirmed.
NOTE: The Absent-Subscriber-Diagnostic-T4 AVP specified in TS 29.337 [17], clause 6.3.2 is connected with the ABSENT_SUBSCRIBER value in the SM-Delivery-Outcome-T4 AVP. The Absent-Subscriber-Diagnostic-T4 AVP values will not be forwarded via the Tsp interface.
*/
@DiameterAvpDefinition(code = TgppAvpCodes.DELIVERY_OUTCOME, vendorId = VendorIDs.TGPP_ID, name = "Delivery-Outcome")
public interface DeliveryOutcome extends DiameterEnumerated
{
}