example3/Constants.java
package example3;
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_configExampleEventJSPResB";
// Events
String EVENT_NAME = "name"; //$NON-NLS-1$
/// General text
String WELCOME_MESSAGE = Messages.getString("res_WELCOME_MESSAGE"); //$NON-NLS-1$
String WELCOME_MESSAGE_TRAILER = Messages.getString("res_WELCOME_MESSAGE_TRAILER"); //$NON-NLS-1$
String WELCOME_MESSAGE_END = Messages.getString("res_WELCOME_MESSAGE_END"); //$NON-NLS-1$
/// JSP Names
String INITIAL_JSP = "/jsp/welcome.jsp"; //$NON-NLS-1$
String TABLEVIEW_JSP = "/jsp/tableView.jsp"; //$NON-NLS-1$
/// Context attributes
String CONTEXT_BEAN = "dataBean"; //$NON-NLS-1$
String RESBUNDLE_BEAN = "resBundle"; //$NON-NLS-1$
}