OrderInquiryController.java
Home
/
application /
src /
main /
java /
eu /
cloudscale /
showcase /
servlets /
OrderInquiryController.java
package eu.cloudscale.showcase.servlets;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@Controller
@RequestMapping( "/order-inquiry" )
public class OrderInquiryController extends AController
{
@RequestMapping( method = RequestMethod.GET )
public String get(HttpServletRequest request, Model model)
{
HttpSession session = request.getSession( false );
if ( session == null )
session = request.getSession( true );
Integer C_ID = null;
try
{
C_ID = Integer.parseInt(request.getParameter( "C_ID" ));
}
catch(Exception e)
{
}
Integer SHOPPING_ID = null;
try
{
SHOPPING_ID = Integer.parseInt(request.getParameter( "SHOPPING_ID" ));
}
catch(Exception e)
{
}
if ( C_ID != null )
{
model.addAttribute( "customerId", C_ID );
}
if ( SHOPPING_ID != null )
{
model.addAttribute( "shoppingId", SHOPPING_ID );
}
setupFrontend( model, SHOPPING_ID, C_ID );
return "order-inquiry";
}
}