Commit 38d86019 authored by akhokar's avatar akhokar

LogWriterDatabase.java

AdmCommon.java
PayrollPostAccPrc.java

-Final changes of payroll posting after testing at sun uat database

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@198903 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 1ea893ff
...@@ -10,8 +10,9 @@ public class LogWriterDatabase ...@@ -10,8 +10,9 @@ public class LogWriterDatabase
{ {
private String jobID = "", objName = "", statusDetail = "", transactionCreatedBy = "", inetCreatedBy = "", logFileCreatedBy = "",userId ="", private String jobID = "", objName = "", statusDetail = "", transactionCreatedBy = "", inetCreatedBy = "", logFileCreatedBy = "",userId ="",
currentProcess = "", activity = "", processId = "", errorCode = "", LogLocationType ="",LogServerAddress ="", statusType = "", currentProcess = "", activity = "", processId = "", errorCode = "", LogLocationType ="",LogServerAddress ="", statusType = "",
rowsRejected = "", rowsProcessed = "" , rowsIgnored = "" , totalRows = "" , jobTerminateRequested = "", returnUpdError = "", jobTerminateRequested = "", returnUpdError = "",logFileName = "",wsrLogFileName = "",fileNameStartWith = "";
logFileName = "",wsrLogFileName = "",fileNameStartWith = "";
int rowsRejected = 0,rowsIgnored = 0,rowsProcessed = 0,totalRows = 0;
FileOutputStream fileWriterLog = null; FileOutputStream fileWriterLog = null;
...@@ -28,8 +29,8 @@ public class LogWriterDatabase ...@@ -28,8 +29,8 @@ public class LogWriterDatabase
public String getJobID() { public String getJobID() {
return jobID; return jobID;
} }
public String setJobID(String jobID) { public void setJobID(String jobID) {
return this.jobID = jobID; this.jobID = jobID;
} }
public String getErrorCode() { public String getErrorCode() {
return errorCode; return errorCode;
...@@ -133,28 +134,28 @@ public class LogWriterDatabase ...@@ -133,28 +134,28 @@ public class LogWriterDatabase
public void setUserId(String userId) { public void setUserId(String userId) {
this.userId = userId; this.userId = userId;
} }
public String getRowsProcessed() { public int getRowsProcessed() {
return rowsProcessed; return rowsProcessed;
} }
public void setRowsProcessed(String rowsProcessed) { public void setRowsProcessed(int rowsProcessed) {
this.rowsProcessed = rowsProcessed; this.rowsProcessed = rowsProcessed;
} }
public String getRowsRejected() { public int getRowsRejected() {
return rowsRejected; return rowsRejected;
} }
public void setRowsRejected(String rowsRejected) { public void setRowsRejected(int rowsRejected) {
this.rowsRejected = rowsRejected; this.rowsRejected = rowsRejected;
} }
public String getRowsIgnored() { public int getRowsIgnored() {
return rowsIgnored; return rowsIgnored;
} }
public void setRowsIgnored(String rowsIgnored) { public void setRowsIgnored(int rowsIgnored) {
this.rowsIgnored = rowsIgnored; this.rowsIgnored = rowsIgnored;
} }
public String getTotalRows() { public int getTotalRows() {
return totalRows; return totalRows;
} }
public void setTotalRows(String totalRows) { public void setTotalRows(int totalRows) {
this.totalRows = totalRows; this.totalRows = totalRows;
} }
......
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