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
{
private String jobID = "", objName = "", statusDetail = "", transactionCreatedBy = "", inetCreatedBy = "", logFileCreatedBy = "",userId ="",
currentProcess = "", activity = "", processId = "", errorCode = "", LogLocationType ="",LogServerAddress ="", statusType = "",
rowsRejected = "", rowsProcessed = "" , rowsIgnored = "" , totalRows = "" , jobTerminateRequested = "", returnUpdError = "",
logFileName = "",wsrLogFileName = "",fileNameStartWith = "";
jobTerminateRequested = "", returnUpdError = "",logFileName = "",wsrLogFileName = "",fileNameStartWith = "";
int rowsRejected = 0,rowsIgnored = 0,rowsProcessed = 0,totalRows = 0;
FileOutputStream fileWriterLog = null;
......@@ -28,8 +29,8 @@ public class LogWriterDatabase
public String getJobID() {
return jobID;
}
public String setJobID(String jobID) {
return this.jobID = jobID;
public void setJobID(String jobID) {
this.jobID = jobID;
}
public String getErrorCode() {
return errorCode;
......@@ -133,28 +134,28 @@ public class LogWriterDatabase
public void setUserId(String userId) {
this.userId = userId;
}
public String getRowsProcessed() {
public int getRowsProcessed() {
return rowsProcessed;
}
public void setRowsProcessed(String rowsProcessed) {
public void setRowsProcessed(int rowsProcessed) {
this.rowsProcessed = rowsProcessed;
}
public String getRowsRejected() {
public int getRowsRejected() {
return rowsRejected;
}
public void setRowsRejected(String rowsRejected) {
public void setRowsRejected(int rowsRejected) {
this.rowsRejected = rowsRejected;
}
public String getRowsIgnored() {
public int getRowsIgnored() {
return rowsIgnored;
}
public void setRowsIgnored(String rowsIgnored) {
public void setRowsIgnored(int rowsIgnored) {
this.rowsIgnored = rowsIgnored;
}
public String getTotalRows() {
public int getTotalRows() {
return totalRows;
}
public void setTotalRows(String totalRows) {
public void setTotalRows(int 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