Examples of PeopleService


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
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.