Index: lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/McMonitoringForm.java =================================================================== diff -u -r5278e8b821815573e997d71fc525480532a2f69e -rce4fe4bfc7718d632a5e2f5d87fe96e543443daa --- lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/McMonitoringForm.java (.../McMonitoringForm.java) (revision 5278e8b821815573e997d71fc525480532a2f69e) +++ lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/McMonitoringForm.java (.../McMonitoringForm.java) (revision ce4fe4bfc7718d632a5e2f5d87fe96e543443daa) @@ -10,23 +10,14 @@ * ActionForm for the Monitoring environment */ public class McMonitoringForm extends ActionForm implements McAppConstants { - // dispatch controls which method is called by the Lookup map */ - protected String dispatch; + // dsp controls which method is called by the Lookup map */ + protected String dsp; + protected String selectedToolSessionId; + protected String isToolSessionChanged; + /** - * @return Returns the dispatch. - */ - public String getDispatch() { - return dispatch; - } - /** - * @param dispatch The dispatch to set. - */ - public void setDispatch(String dispatch) { - this.dispatch = dispatch; - } - /** * @return Returns the isToolSessionChanged. */ public String getIsToolSessionChanged() { @@ -38,4 +29,29 @@ public void setIsToolSessionChanged(String isToolSessionChanged) { this.isToolSessionChanged = isToolSessionChanged; } + /** + * @return Returns the selectedToolSessionId. + */ + public String getSelectedToolSessionId() { + return selectedToolSessionId; + } + /** + * @param selectedToolSessionId The selectedToolSessionId to set. + */ + public void setSelectedToolSessionId(String selectedToolSessionId) { + this.selectedToolSessionId = selectedToolSessionId; + } + + /** + * @return Returns the dsp. + */ + public String getDsp() { + return dsp; + } + /** + * @param dsp The dsp to set. + */ + public void setDsp(String dsp) { + this.dsp = dsp; + } }