Package org.cipango.kaleo.presence.policy

Examples of org.cipango.kaleo.presence.policy.XcapPolicy$XcapListenerImpl


   
    JSON.getDefault().addConvertor(XcapPolicy.class, new Convertor()
    {
      public void toJSON(Object obj, Output out)
      {
        XcapPolicy policy = (XcapPolicy) obj;
        out.add("Resource", policy.getResourceUri());
        out.add("XcapResources", policy.getXcapResources());
      }
      public Object fromJSON(Map object)  { return null; }
    });
   
    JSON.getDefault().addConvertor(ResourceHolder.class, new Convertor()
View Full Code Here

TOP

Related Classes of org.cipango.kaleo.presence.policy.XcapPolicy$XcapListenerImpl

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.