Package org.cipango.diameter.sh.data

Examples of org.cipango.diameter.sh.data.ShDataDocument


  {
    try
    {
      TShData data = TShData.Factory.parse(new ByteArrayInputStream(message.get(Sh.USER_DATA)));
      System.out.println(data.getShIMSData());
      ShDataDocument doc =  ShDataDocument.Factory.parse(new ByteArrayInputStream(message.get(Sh.USER_DATA)));
      TShData data2 = doc.getShData();
     
      System.out.println(data2.getShIMSData());
    }
    catch (Exception e)
    {
View Full Code Here

TOP

Related Classes of org.cipango.diameter.sh.data.ShDataDocument

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.