TempStorageUtils.java 323 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.forms.common.utils;

public class TempStorageUtils {
    public static boolean isPreviewDisabled(String tempStorageConfig, Boolean isAnonymous) {
        return "none".equals(tempStorageConfig) || "loggedIn".equals(tempStorageConfig) && isAnonymous != false;
    }
}