/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package controller;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.List;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import model.Chemical;
/**
*
* @author Dell
*/
public class ChemControl extends HttpServlet {
/**
* Processes requests for both HTTP GET and POST
* methods.
*
* @param request servlet request
* @param response servlet response
* @throws ServletException if a servlet-specific error occurs
* @throws IOException if an I/O error occurs
*/
protected void processRequest(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html;charset=UTF-8");
PrintWriter out = response.getWriter();
String chemName = request.getParameter("Chemical");
String labnm=request.getParameter("Lab Name");
String hztp=request.getParameter("Hazard type");
String no=request.getParameter("Serial No.");
long sno=0;
List error=new ArrayList();
try {
sno=Long.parseLong(no);
}catch(Exception e){
error.add("Eneter only numbers !!");
}
if(chemName.isEmpty())
{ error.add("Please enter a chemical name");
}
if(labnm.isEmpty()){
error.add("Enter your lab name ");}
if(hztp.isEmpty()){
error.add("Please enter the hazard type");}
Chemical c= new Chemical(chemName,labnm,hztp,sno);
if(error.isEmpty()){
request.setAttribute("chinfo", c);
RequestDispatcher rd=request.getRequestDispatcher("success.do");
if(rd!=null)
rd.forward(request, response);
}
if(!error.isEmpty())
{ request.setAttribute("ers", error);
RequestDispatcher rs=request.getRequestDispatcher("badInfo.do");
if(rs!=null)
rs.forward(request, response);
}
}
//
/**
* Handles the HTTP GET method.
*
* @param request servlet request
* @param response servlet response
* @throws ServletException if a servlet-specific error occurs
* @throws IOException if an I/O error occurs
*/
@Override
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
processRequest(request, response);
}
/**
* Handles the HTTP POST method.
*
* @param request servlet request
* @param response servlet response
* @throws ServletException if a servlet-specific error occurs
* @throws IOException if an I/O error occurs
*/
@Override
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
processRequest(request, response);
}
/**
* Returns a short description of the servlet.
*
* @return a String containing servlet description
*/
@Override
public String getServletInfo() {
return "Short description";
}//
}