example2/Constants.java
package example2;
public interface Constants {
// MI Application Name ** is also used by the MDK developer plug-in to define the correct archive name
String MI_APPLICATION_NAME = "MDK_configExampleEventJSP";
// Events
String EVENT_NAME = "name";
// General text
String WELCOME_MESSAGE = "Hello. I am a Mobile Infrastructure Client application. Who are you ?";
String WELCOME_MESSAGE_TRAILER = "Welcome ";
String WELCOME_MESSAGE_END = ". Here is some information about your Mobile Infrastructure Client installation:";
// JSP Names
String INITIAL_JSP = "/jsp/welcome.jsp";
String TABLEVIEW_JSP = "/jsp/tableView.jsp";
// Context attributes
String CONTEXT_BEAN = "dataBean";
}