org.xins.server.BackpackConstants Maven / Gradle / Ivy
package org.xins.server;
/*
* Properties names used in the backpack.
*
* @version $Revision: 1.1 $ $Date: 2011/02/19 08:48:28 $
* @author Anthony Goubard
*
* @since XINS 3.0
*/
public interface BackpackConstants {
/**
* The key used to store the name of the function in the backpack.
*/
String FUNCTION_NAME = "_functionName";
/**
* The key used to store the request IP address in the backpack.
* The value is added by XINS Engine, so it's always available in the function.
*/
String IP = "_ip";
/**
* The key used to indicating whether the function should be skipped or not.
* Default is function not skipped.
* If set, the value should be a Boolean.
*/
String SKIP_FUNCTION_CALL = "_skipFunctionCall";
}