org.loom.addons.servlet.names.RequestParameterNames Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of loom-addons Show documentation
Show all versions of loom-addons Show documentation
Uploads all artifacts belonging to configuration ':archives'.
The newest version!
package org.loom.addons.servlet.names;
import static org.loom.servlet.names.RequestParameterNames.LOOM_PREFIX;
public interface RequestParameterNames {
/** prefix of the http GET parameters with the autosave uploaded file keys */
public static final String UPLOADED_FILES_PREFIX = LOOM_PREFIX + "uploaded-";
/** prefix of confirmation/disclaimer acceptance param */
public static final String CONFIRMATION_PREFIX = LOOM_PREFIX + "confirmation-";
/** name of the CAPTCHA parameter */
public static final String CAPTCHA = LOOM_PREFIX + "captcha";
/** the ID of a captcha validated previously in this form, to avoid asking again for the same thing */
public static final String VALIDATED_CAPTCHA_ID = LOOM_PREFIX + "validated-captcha-id";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy