Examples of PrivacyFieldDTO


Examples of org.wso2.carbon.dashboard.social.common.PrivacyFieldDTO

            org.wso2.carbon.dashboard.social.stub.types.carbon.PrivacyFieldDTO[] result =
                    stub.getUserProfile(userId, profileName, claimValues);
            PrivacyFieldDTO[] profileData = new PrivacyFieldDTO[result.length];
            int index = 0;
            for (org.wso2.carbon.dashboard.social.stub.types.carbon.PrivacyFieldDTO data : result) {
                PrivacyFieldDTO obj = new PrivacyFieldDTO();
                obj.setFieldName(data.getFieldName());
                obj.setVisibilityValue(data.getVisibilityValue());
                profileData[index++] = obj;
            }
            return profileData;
        }
        catch (RemoteException e) {
View Full Code Here

Examples of org.wso2.carbon.dashboard.social.common.PrivacyFieldDTO

                fullProfileDataPath = profileDataPath + claimValues[i];
                Resource profileDataResource;
                // try {
                if (registry.resourceExists(fullProfileDataPath)) {
                    profileDataResource = registry.get(fullProfileDataPath);
                    profileData[i] = new PrivacyFieldDTO();
                    profileData[i].setFieldName(claimValues[i]);
                    if (profileDataResource.getProperty(SocialUtils.USER_PROFILE_FIELD_VISIBILITY) != null) {
                        profileData[i].setVisibilityValue((profileDataResource.getProperty
                                (SocialUtils.USER_PROFILE_FIELD_VISIBILITY)));
                    } else {
                        profileData[i].setVisibilityValue((SocialUtils.VISIBILITY_NONE));
                    }

                } else {
                    profileData[i] = new PrivacyFieldDTO();
                    profileData[i].setFieldName(claimValues[i]);
                    profileData[i].setVisibilityValue(SocialUtils.VISIBILITY_NONE);
                }
                //}
                //catch (RegistryException e) {
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.