Package org.cipango.diameter

Examples of org.cipango.diameter.ResultCode


    return newType(name, IMS_VENDOR_ID, code, format);
  }
 
  protected static ResultCode newImsResultCode(int code, String name)
  {
    return new ResultCode(IMS_VENDOR_ID, code, name);
  }
View Full Code Here


              AVPList expRc = message.get(Common.EXPERIMENTAL_RESULT);
              code = expRc.getValue(Common.EXPERIMENTAL_RESULT_CODE);
              vendorId = expRc.getValue(Common.VENDOR_ID);
            }
           
            ResultCode rc = Dictionary.getInstance().getResultCode(vendorId, code);
            if (rc == null)
              rc = Factory.newResultCode(vendorId, code, "Unknown");
           
            ((DiameterAnswer) message).setResultCode(rc);
          }
View Full Code Here

TOP

Related Classes of org.cipango.diameter.ResultCode

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.