Package com.ibm.xsp.extlib.social

Examples of com.ibm.xsp.extlib.social.PeopleService


            break;
          case FCT_IDENTITYFROMID: {
                        if (args.size() >= 2) {
                            String target = args.get(0).stringValue();
                            String id = args.get(1).stringValue();
                            PeopleService svc = SocialServicesFactory.getInstance().getPeopleService();
                            return FBSUtility.wrap(context.getJSContext(),svc.getUserIdentityFromId(target, id));
                        }
          }
              break;
                    case FCT_IDFROMIDENTITY: {
                        if (args.size() >= 2) {
                            String target = args.get(0).stringValue();
                            String id = args.get(1).stringValue();
                            PeopleService svc = SocialServicesFactory.getInstance().getPeopleService();
                            return FBSUtility.wrap(context.getJSContext(),svc.getUserIdFromIdentity(target, id));
                        }
                    }
                        break;
                    case FCT_PROXYURL: {
                        if (args.size() >= 2) {
View Full Code Here

TOP

Related Classes of com.ibm.xsp.extlib.social.PeopleService

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.