Skip to content
Snippets Groups Projects
Commit 0647dc7b authored by srosse's avatar srosse
Browse files

OO-3071: remove final in getter and setter methods of some hibernate mapping class

parent 6953a390
No related branches found
No related tags found
No related merge requests found
...@@ -84,7 +84,7 @@ public class DailyStat implements Persistable { ...@@ -84,7 +84,7 @@ public class DailyStat implements Persistable {
return key; return key;
} }
public final long getResId() { public long getResId() {
return resId; return resId;
} }
...@@ -92,27 +92,27 @@ public class DailyStat implements Persistable { ...@@ -92,27 +92,27 @@ public class DailyStat implements Persistable {
this.resId = resId; this.resId = resId;
} }
public final String getBusinessPath() { public String getBusinessPath() {
return businessPath; return businessPath;
} }
public final void setBusinessPath(String businessPath) { public void setBusinessPath(String businessPath) {
this.businessPath = businessPath; this.businessPath = businessPath;
} }
public final Date getDay() { public Date getDay() {
return day; return day;
} }
public final void setDay(Date day) { public void setDay(Date day) {
this.day = day; this.day = day;
} }
public final int getValue() { public int getValue() {
return value; return value;
} }
public final void setValue(int value) { public void setValue(int value) {
this.value = value; this.value = value;
} }
......
...@@ -79,7 +79,7 @@ public class DayOfWeekStat implements Persistable { ...@@ -79,7 +79,7 @@ public class DayOfWeekStat implements Persistable {
return key; return key;
} }
public final long getResId() { public long getResId() {
return resId; return resId;
} }
...@@ -87,27 +87,27 @@ public class DayOfWeekStat implements Persistable { ...@@ -87,27 +87,27 @@ public class DayOfWeekStat implements Persistable {
this.resId = resId; this.resId = resId;
} }
public final String getBusinessPath() { public String getBusinessPath() {
return businessPath; return businessPath;
} }
public final void setBusinessPath(String businessPath) { public void setBusinessPath(String businessPath) {
this.businessPath = businessPath; this.businessPath = businessPath;
} }
public final int getDay() { public int getDay() {
return day; return day;
} }
public final void setDay(int day) { public void setDay(int day) {
this.day = day; this.day = day;
} }
public final int getValue() { public int getValue() {
return value; return value;
} }
public final void setValue(int value) { public void setValue(int value) {
this.value = value; this.value = value;
} }
......
...@@ -79,7 +79,7 @@ public class HomeOrgStat extends PersistentObject { ...@@ -79,7 +79,7 @@ public class HomeOrgStat extends PersistentObject {
return key; return key;
} }
public final long getResId() { public long getResId() {
return resId; return resId;
} }
...@@ -87,27 +87,27 @@ public class HomeOrgStat extends PersistentObject { ...@@ -87,27 +87,27 @@ public class HomeOrgStat extends PersistentObject {
this.resId = resId; this.resId = resId;
} }
public final String getBusinessPath() { public String getBusinessPath() {
return businessPath; return businessPath;
} }
public final void setBusinessPath(String businessPath) { public void setBusinessPath(String businessPath) {
this.businessPath = businessPath; this.businessPath = businessPath;
} }
public final String getHomeOrg() { public String getHomeOrg() {
return homeOrg; return homeOrg;
} }
public final void setHomeOrg(String homeOrg) { public void setHomeOrg(String homeOrg) {
this.homeOrg = homeOrg; this.homeOrg = homeOrg;
} }
public final int getValue() { public int getValue() {
return value; return value;
} }
public final void setValue(int value) { public void setValue(int value) {
this.value = value; this.value = value;
} }
......
...@@ -75,7 +75,7 @@ public class HourOfDayStat extends PersistentObject { ...@@ -75,7 +75,7 @@ public class HourOfDayStat extends PersistentObject {
// for hibernate // for hibernate
} }
public final long getResId() { public long getResId() {
return resId; return resId;
} }
...@@ -83,27 +83,27 @@ public class HourOfDayStat extends PersistentObject { ...@@ -83,27 +83,27 @@ public class HourOfDayStat extends PersistentObject {
this.resId = resId; this.resId = resId;
} }
public final String getBusinessPath() { public String getBusinessPath() {
return businessPath; return businessPath;
} }
public final void setBusinessPath(String businessPath) { public void setBusinessPath(String businessPath) {
this.businessPath = businessPath; this.businessPath = businessPath;
} }
public final int getHour() { public int getHour() {
return hour; return hour;
} }
public final void setHour(int hour) { public void setHour(int hour) {
this.hour = hour; this.hour = hour;
} }
public final int getValue() { public int getValue() {
return value; return value;
} }
public final void setValue(int value) { public void setValue(int value) {
this.value = value; this.value = value;
} }
......
...@@ -78,7 +78,7 @@ public class OrgTypeStat implements Persistable { ...@@ -78,7 +78,7 @@ public class OrgTypeStat implements Persistable {
return key; return key;
} }
public final long getResId() { public long getResId() {
return resId; return resId;
} }
...@@ -86,27 +86,27 @@ public class OrgTypeStat implements Persistable { ...@@ -86,27 +86,27 @@ public class OrgTypeStat implements Persistable {
this.resId = resId; this.resId = resId;
} }
public final String getBusinessPath() { public String getBusinessPath() {
return businessPath; return businessPath;
} }
public final void setBusinessPath(String businessPath) { public void setBusinessPath(String businessPath) {
this.businessPath = businessPath; this.businessPath = businessPath;
} }
public final String getOrgType() { public String getOrgType() {
return orgType; return orgType;
} }
public final void setOrgType(String orgType) { public void setOrgType(String orgType) {
this.orgType = orgType; this.orgType = orgType;
} }
public final int getValue() { public int getValue() {
return value; return value;
} }
public final void setValue(int value) { public void setValue(int value) {
this.value = value; this.value = value;
} }
......
...@@ -78,7 +78,7 @@ public class StudyBranch3Stat implements Persistable { ...@@ -78,7 +78,7 @@ public class StudyBranch3Stat implements Persistable {
return key; return key;
} }
public final long getResId() { public long getResId() {
return resId; return resId;
} }
...@@ -86,27 +86,27 @@ public class StudyBranch3Stat implements Persistable { ...@@ -86,27 +86,27 @@ public class StudyBranch3Stat implements Persistable {
this.resId = resId; this.resId = resId;
} }
public final String getBusinessPath() { public String getBusinessPath() {
return businessPath; return businessPath;
} }
public final void setBusinessPath(String businessPath) { public void setBusinessPath(String businessPath) {
this.businessPath = businessPath; this.businessPath = businessPath;
} }
public final String getStudyBranch3() { public String getStudyBranch3() {
return studyBranch3; return studyBranch3;
} }
public final void setStudyBranch3(String studyBranch3) { public void setStudyBranch3(String studyBranch3) {
this.studyBranch3 = studyBranch3; this.studyBranch3 = studyBranch3;
} }
public final int getValue() { public int getValue() {
return value; return value;
} }
public final void setValue(int value) { public void setValue(int value) {
this.value = value; this.value = value;
} }
......
...@@ -78,7 +78,7 @@ public class StudyLevelStat implements Persistable { ...@@ -78,7 +78,7 @@ public class StudyLevelStat implements Persistable {
return key; return key;
} }
public final long getResId() { public long getResId() {
return resId; return resId;
} }
...@@ -86,27 +86,27 @@ public class StudyLevelStat implements Persistable { ...@@ -86,27 +86,27 @@ public class StudyLevelStat implements Persistable {
this.resId = resId; this.resId = resId;
} }
public final String getBusinessPath() { public String getBusinessPath() {
return businessPath; return businessPath;
} }
public final void setBusinessPath(String businessPath) { public void setBusinessPath(String businessPath) {
this.businessPath = businessPath; this.businessPath = businessPath;
} }
public final String getStudyLevel() { public String getStudyLevel() {
return studyLevel; return studyLevel;
} }
public final void setStudyLevel(String studyLevel) { public void setStudyLevel(String studyLevel) {
this.studyLevel = studyLevel; this.studyLevel = studyLevel;
} }
public final int getValue() { public int getValue() {
return value; return value;
} }
public final void setValue(int value) { public void setValue(int value) {
this.value = value; this.value = value;
} }
......
...@@ -78,7 +78,7 @@ public class WeeklyStat implements Persistable { ...@@ -78,7 +78,7 @@ public class WeeklyStat implements Persistable {
return key; return key;
} }
public final long getResId() { public long getResId() {
return resId; return resId;
} }
...@@ -86,27 +86,27 @@ public class WeeklyStat implements Persistable { ...@@ -86,27 +86,27 @@ public class WeeklyStat implements Persistable {
this.resId = resId; this.resId = resId;
} }
public final String getBusinessPath() { public String getBusinessPath() {
return businessPath; return businessPath;
} }
public final void setBusinessPath(String businessPath) { public void setBusinessPath(String businessPath) {
this.businessPath = businessPath; this.businessPath = businessPath;
} }
public final String getWeek() { public String getWeek() {
return week; return week;
} }
public final void setWeek(String week) { public void setWeek(String week) {
this.week = week; this.week = week;
} }
public final int getValue() { public int getValue() {
return value; return value;
} }
public final void setValue(int value) { public void setValue(int value) {
this.value = value; this.value = value;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment