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

com.mobius.software.telco.protocols.diameter.primitives.s6t.AESECommunicationPattern Maven / Gradle / Ivy

package com.mobius.software.telco.protocols.diameter.primitives.s6t;
/*
 * 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.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.exceptions.MissingAvpException;
import com.mobius.software.telco.protocols.diameter.primitives.DiameterGroupedAvp;

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

/*
 * 	8.4.25	AESE-Communication-Pattern
	The AESE-Communication-Pattern AVP is of type Grouped, and it shall contain the details of the Communication-Pattern from the SCEF.
	AVP format

	AESE-Communication-Pattern ::= 
			 [ SCEF-Reference-ID ]
			 [ SCEF-Reference-ID-Ext ]
			 { SCEF-ID }
			*[ SCEF-Reference-ID-for-Deletion ]
			*[ SCEF-Reference-ID-for-Deletion-Ext ]
			*[ Communication-Pattern-Set ]
			 [ MTC-Provider-Info ]
			*[ AVP ]

	At least one reference ID (either in SCEF-Reference-ID or in SCEF-Reference-ID-Ext) or a reference ID for deletion (either in SCEF-Reference-ID-for-Deletion or in SCEF-Reference-ID-for-Deletion-Ext) shall be present.
	When the "Extended Reference IDs" feature is supported by the HSS and SCEF, the SCEF-Reference-ID-Ext and SCEF-Reference-ID-for-Deletion-Ext AVPs shall be used insted of SCEF-Reference-ID and SCEF-Reference-ID-for-Deletion respectively.
 */
@DiameterAvpDefinition(code = TgppAvpCodes.AES_COMMUNICATION_PATTERN, vendorId = VendorIDs.TGPP_ID, name = "AESE-Communication-Pattern")
public interface AESECommunicationPattern extends DiameterGroupedAvp
{
	Long getSCEFReferenceID();
	
	void setSCEFReferenceID(Long value);
	
	Long getSCEFReferenceIDExt();
	
	void setSCEFReferenceIDExt(Long value);
	
	String getSCEFID();
	
	void setSCEFID(String value) throws MissingAvpException;	
	
	List getSCEFReferenceIDForDeletion();
	
	void setSCEFReferenceIDForDeletion(List value);
	
	List getSCEFReferenceIDForDeletionExt();
	
	void setSCEFReferenceIDForDeletionExt(List value);
	
	MTCProviderInfo getMTCProviderInfo();
	
	void setMTCProviderInfo(MTCProviderInfo value);
	
	List getCommunicationPatternSet();
	
	void setCommunicationPatternSet(List value);		
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy