)>}]
شركة التطبيقات المتكاملة لتصميم وبرمجة البرمجيات الخاصة ش.ش.و.
Integrated Applications Programming Company
Home » Code Library » AgcfGatewayTable (Ia.Ftn.Cl.Models.Business.Nokia)

Public general use code classes and xml files that we've compiled and used over the years:

AGCF Gateway Table support class for Nokia's Fixed Telecommunications Network (FTN) business model.

    1: namespace Ia.Ftn.Cl.Models.Business.Nokia
    2: {
    3:     ////////////////////////////////////////////////////////////////////////////
    4:  
    5:     /// <summary publish="true">
    6:     /// AGCF Gateway Table support class for Nokia's Fixed Telecommunications Network (FTN) business model.
    7:     /// </summary>
    8:     /// 
    9:     /// <remarks> 
   10:     /// Copyright � 2014-2017 Jasem Y. Al-Shamlan (info@ia.com.kw), Integrated Applications - Kuwait. All Rights Reserved.
   11:     /// </remarks> 
   12:     public class AgcfGatewayTable
   13:     {
   14:         /// <summary>
   15:         /// 1360 COM WebAPI User Guide 255-400-419R3.X
   16:         /// ngfs-agcfgatewaytable-v2(rtrv,ent,ed,dlt)
   17:         /// 
   18:         /// </summary>
   19:         public AgcfGatewayTable() { }
   20:  
   21:         /*
   22:          * OMC-P Web API Tester:
   23:          * 
   24:          * rtrv-ngfs-agcfgatewaytable-v2:
   25:          * 
   26:          * Always 6
   27: 
   28: <?xml version="1.0" encoding="UTF-8"?>
   29: <soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
   30:  <soap-env:Header />
   31:  <soap-env:Body>
   32:   <PlexViewRequest Command="rtrv-ngfs-agcfgatewaytable-v2" SwitchName="TECICS01" RequestId="" SessionId="ngnAPI:1946199540" MaxRows="-1">
   33:    <NgfsAgcfGatewayTableAid></NgfsAgcfGatewayTableAid>
   34:   </PlexViewRequest>
   35:  </soap-env:Body>
   36: </soap-env:Envelope>
   37: 
   38: 
   39: <?xml version="1.0" encoding="UTF-8"?>
   40: <soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
   41:  <soap-env:Header />
   42:  <soap-env:Body>
   43:   <PlexViewResponse Command="rtrv-ngfs-agcfgatewaytable-v2" SwitchName="TECICS01" RequestId="" SessionId="ngnAPI:1946199540" CongestionIndicator="false" Status="SUCCESS">
   44:    <ngfs-agcfgatewaytable-v2>
   45:     <NgfsAgcfGatewayTableAid>6</NgfsAgcfGatewayTableAid>
   46:     <TableName>AGCF Gateway 6</TableName>
   47:    </ngfs-agcfgatewaytable-v2>
   48:   </PlexViewResponse>
   49:  </soap-env:Body>
   50: </soap-env:Envelope>
   51:          * 
   52:          */
   53:  
   54:         /// <summary>
   55:         /// NgfsAgcfGatewayTableAid (req for ent,req for ed). LCP-CTS R6.0 The AID of Agcf Gateway Table. Integer (0-99), where 0 will auto select the table number D. LCP Command. 229 Only 1 table can be supported LCP-ISC R22.1 Support 0-1000, 0 means auto select
   56:         /// Fixed in MOC IMS at 6
   57:         /// </summary>
   58:         public static int NgfsAgcfGatewayTableAid { get { return 6; } }
   59:  
   60:         /// <summary>
   61:         /// TableName (req for ent,req for ed). LCP-CTS R6.0 The name of Agcf Gateway Variant Table. If NgfsAgcfGWVariantTableAid set to 0 for auto selected, the TableName must be empty. String (0-20) [\S]|[\S][a-zA-Z0-9\*#\.,\-+'~`!@$%^:;=(){}\[\]?&quot;&apos;&amp;&gt;&lt;/_|\\ ]*[\S]
   62:         /// Fixed "AGCF Gateway 6" in MOC IMS
   63:         /// </summary>
   64:         public static string TableName { get { return "AGCF Gateway 6"; } }
   65:  
   66:         ////////////////////////////////////////////////////////////////////////////
   67:         ////////////////////////////////////////////////////////////////////////////
   68:     }
   69:  
   70:     ////////////////////////////////////////////////////////////////////////////
   71:     ////////////////////////////////////////////////////////////////////////////
   72: }