Class ProcessRequestOT

java.lang.Object
org.compiere.process.SvrProcess
org.maintenance.process.ProcessRequestOT
All Implemented Interfaces:
ProcessCall

public class ProcessRequestOT extends SvrProcess
Version:
$Id: ProcessOT.java,v 1.2 2008/06/12 00:51:01 $
Author:
Fabian Aguilar faaguilar
  • Constructor Details

    • ProcessRequestOT

      public ProcessRequestOT()
  • Method Details

    • prepare

      protected void prepare()
      Description copied from class: SvrProcess
      Prepare - e.g., get Parameters.
      
      		ProcessInfoParameter[] para = getParameter();
      		for (int i = 0; i < para.length; i++)
      		{
      			String name = para[i].getParameterName();
      			if (para[i].getParameter() == null)
      				;
      			else if (name.equals("A_Asset_Group_ID"))
      				p_A_Asset_Group_ID = para[i].getParameterAsInt();
      			else if (name.equals("GuaranteeDate"))
      				p_GuaranteeDate = (Timestamp)para[i].getParameter();
      			else if (name.equals("AttachAsset"))
      				p_AttachAsset = "Y".equals(para[i].getParameter());
      			else
      				log.log(Level.SEVERE, "Unknown Parameter: " + name);
      		}
        
      Specified by:
      prepare in class SvrProcess
    • doIt

      protected String doIt() throws Exception
      Perrform process.
      Specified by:
      doIt in class SvrProcess
      Returns:
      Message (clear text)
      Throws:
      Exception - if not successful