Commit 62cf3e6b authored by dpawar's avatar dpawar

change access modifiers of methods


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@95999 ce508802-f39f-4f6c-b175-0d175dae99d5
parent fd82e1e8
...@@ -29,6 +29,9 @@ public class ProofOfDeliveryDefault extends ActionHandlerEJB implements ProofOfD ...@@ -29,6 +29,9 @@ public class ProofOfDeliveryDefault extends ActionHandlerEJB implements ProofOfD
{ {
return ""; return "";
} }
public static ProofOfDeliveryDefault getInstance(){
return new ProofOfDeliveryDefault();
}
public String actionHandler(String actionType, String xmlString, String objContext, String xtraParams) throws RemoteException, ITMException public String actionHandler(String actionType, String xmlString, String objContext, String xtraParams) throws RemoteException, ITMException
{ {
System.out.println("--------- ProofOfDeliveryDefault111-----------------actionType"+actionType); System.out.println("--------- ProofOfDeliveryDefault111-----------------actionType"+actionType);
...@@ -280,7 +283,7 @@ public class ProofOfDeliveryDefault extends ActionHandlerEJB implements ProofOfD ...@@ -280,7 +283,7 @@ public class ProofOfDeliveryDefault extends ActionHandlerEJB implements ProofOfD
return retString; return retString;
} }
private String getApprovedRate(Connection conn,String itemCode,double invRate) protected String getApprovedRate(Connection conn,String itemCode,double invRate)
{ {
String regPrice="",varValue="",varName="",apprRateS=""; String regPrice="",varValue="",varName="",apprRateS="";
double varValueD=0.0,apprRate=0.0; double varValueD=0.0,apprRate=0.0;
...@@ -379,7 +382,7 @@ public class ProofOfDeliveryDefault extends ActionHandlerEJB implements ProofOfD ...@@ -379,7 +382,7 @@ public class ProofOfDeliveryDefault extends ActionHandlerEJB implements ProofOfD
return descr; return descr;
} }
// Return Pending Quantity for Proof of Delivery // Return Pending Quantity for Proof of Delivery
private double getPendingQty(Connection conn,HashMap<String,String> detailDom) protected double getPendingQty(Connection conn,HashMap<String,String> detailDom)
{ {
ResultSet rs=null; ResultSet rs=null;
PreparedStatement pstmt=null; PreparedStatement pstmt=null;
......
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