Examples of PPreferredServiceHeader


Examples of gov.nist.javax.sip.header.ims.PPreferredServiceHeader

    System.out.println("***********************************************");
   
   
    HeaderFactoryImpl himpl = new HeaderFactoryImpl();
   
    PPreferredServiceHeader ppsh = himpl.createPPreferredServiceHeader();

    // This is a 3gpp-service type:
    ppsh.setSubserviceIdentifiers("chatroom.presenceenabled.photoshareservice");

    System.out.println("The encoded header is-----> "+ppsh.toString());
    System.out.println("The sub-service defined is---->"+ppsh.getSubserviceIdentifiers());
   
  }
View Full Code Here

Examples of gov.nist.javax.sip.header.ims.PPreferredServiceHeader

        System.out.println("***********************************************");


        HeaderFactoryImpl himpl = new HeaderFactoryImpl();

        PPreferredServiceHeader ppsh = himpl.createPPreferredServiceHeader();

        // This is a 3gpp-service type:
        ppsh.setSubserviceIdentifiers("chatroom.presenceenabled.photoshareservice");

        System.out.println("The encoded header is-----> "+ppsh.toString());
        System.out.println("The sub-service defined is---->"+ppsh.getSubserviceIdentifiers());

    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.