protected org.apache.struts.action.ActionForward | doExecute(org.apache.struts.action.ActionMapping mapping, org.apache.struts.action.ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
SearchForm frm = ( SearchForm ) form;
String keyword = frm.getKeyword( );
Petstore petstore = getPetstore( );
Collection products = petstore.searchProducts( keyword, 0, Integer.MAX_VALUE ).getList( );
frm.setProductValues( products );
return mapping.findForward( SUCCESS );
|