* javax.servlet.http.HttpServletResponse)
*/
public ActionForward unspecified(ActionMapping mapping, ActionForm form, HttpServletRequest request,
HttpServletResponse response) throws Exception {
ActionForward fwd = super.unspecified(mapping, form, request, response);
SamplesForm samplesForm = (SamplesForm) form;
// TODO get the samples and initialise the Form with the Items.
List samples = getSessionInfo(request).getNavigationContext() == SessionInfo.MANAGEMENT_CONSOLE_CONTEXT ? ResourceUtil
.filterManageableResources(SamplePlugin.getDatabase().getSamples(), getSessionInfo(request).getUser())
: ResourceUtil.getGrantedResource(getSessionInfo(request), getResourceType());
samplesForm.initialise(samples, getSessionInfo(request), ".name");
return fwd;
}