first commit

This commit is contained in:
2025-07-28 13:56:49 +05:30
commit e9eb805edb
3438 changed files with 520990 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
package wenrgise.common.utility;
public class ReportReader {
String parameter;
String parameterValue;
public String getAppServerName() {
return "reportserver";
}
public String getAppServerPortNumber() {
return "8888";
}
public String getAppServerReportPathAlias() {
return "reports";
}
public String getStatsRep() {
return "statusKey";
}
public String getParameter() {
return this.parameter;
}
public void setParameter(String newParameter) {
this.parameter = newParameter;
}
public String getParameterValue() {
return this.parameterValue;
}
public void setParameterValue(String newParameterValue) {
this.parameterValue = newParameterValue;
}
}