Commit 50502aac authored by nshinde's avatar nshinde

Added By Manoj dtd 05/11/2012 implement abstract method


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@92142 ce508802-f39f-4f6c-b175-0d175dae99d5
parent c68a4ccc
......@@ -26,7 +26,11 @@ import org.w3c.dom.*;
public class DownloadCSVBatchBean implements Schedule
{
protected ibase.utility.UserInfoBean userInfo = null;
//Added By Manoj dtd 05/11/2012 implement abstract method
public String schedulePriority( String wrkflwPriority )throws Exception
{
return "";
}
public void downloadTransaction( String objName, String downloadLoc, String entityCode,
String entityType, String siteCodeDnld, String custCodeDnld ) throws RemoteException, ITMException
{
......
......@@ -27,7 +27,11 @@ public class ExpiryProcess implements Schedule
{
ibase.utility.GenericUtility genericUtility = new ibase.utility.GenericUtility();
Object[] aobj = new Object[4];
//Added By Manoj dtd 05/11/2012 implement abstract method
public String schedulePriority( String wrkflwPriority )throws Exception
{
return "";
}
public String schedule( HashMap map )throws RemoteException, ITMException
{
return "";
......
......@@ -25,6 +25,11 @@ import java.text.SimpleDateFormat;
public class FinChargeCalcPrc implements Schedule
{
ibase.utility.GenericUtility genericUtility = new ibase.utility.GenericUtility();
//Added By Manoj dtd 05/11/2012 implement abstract method
public String schedulePriority( String wrkflwPriority )throws Exception
{
return "";
}
public String schedule( HashMap map )throws RemoteException, ITMException
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment