Examples of addItemField()


Examples of com.gadglet.core.GadgletResponse.ContentRecord.addItemField()

        record.addItemKeyField(invitation.getInvitationId());
        record.addItemField(ProfileFields.PROFILE_INVITED_BY.getParamName(), invitation.getInvitedBy());
        UserProfile profile = UserProfilesUtils.getProfileById(invitation.getInvitedBy());
       
        if(profile!=null && !profile.isPrivate()){
          record.addItemField(ProfileFields.PROFILE_NICKNAME.getParamName(), profile.getNickName());
          if( profile.getPhotoUrl()!=null &&  profile.getPhotoUrl().length()>0)
            record.addItemField(ProfileFields.PROFILE_THUMBNAILURL.getParamName(), profile.getPhotoUrl());

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