com.vwo.userprofile.UserProfileUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vwo-java-sdk Show documentation
Show all versions of vwo-java-sdk Show documentation
Java library to initiate VWo instance for server side a/b testing
package com.vwo.userprofile;
import java.util.Map;
public class UserProfileUtils {
public static boolean isValidUserProfileMap(Map map) {
return map.containsKey(UserProfileService.userId)
&& map.containsKey(UserProfileService.campaignKey)
&& map.containsKey(UserProfileService.variationKey);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy