GuideFileUpload.java 809 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  org.apache.commons.lang3.StringUtils
 *  org.apache.sling.api.resource.ValueMap
 */
package com.adobe.aemds.guide.common;

import com.adobe.aemds.guide.common.GuideField;
import org.apache.commons.lang3.StringUtils;
import org.apache.sling.api.resource.ValueMap;

public class GuideFileUpload
extends GuideField {
    public String getMimeType() {
        Object[] arr = (String[])this.resourceProps.get("mimeType", (Object)new String[0]);
        return StringUtils.join((Object[])arr, (String)",");
    }

    public String getButtonText() {
        return this.externalize((String)this.resourceProps.get("buttonText", String.class));
    }

    public String getGuideFieldType() {
        return "guideFileUpload";
    }
}