All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.loom.addons.servlet.names.RequestParameterNames Maven / Gradle / Ivy

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