рефакторинг адресатов баг репортов
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
package _VisualDVM.ComponentsServer.BugReportRecipient;
|
||||
import Common.Database.Objects.DBObject;
|
||||
import Common.Database.Objects.iDBObject;
|
||||
import _VisualDVM.ComponentsServer.BugReport.BugReport;
|
||||
public class BugReportRecipient extends iDBObject {
|
||||
public String bugreport_id = "";
|
||||
public String email ="";
|
||||
@Override
|
||||
public void SynchronizeFields(DBObject src) {
|
||||
super.SynchronizeFields(src);
|
||||
BugReportRecipient src_= (BugReportRecipient) src;
|
||||
bugreport_id = src_.bugreport_id;
|
||||
email = src_.email;
|
||||
}
|
||||
public BugReportRecipient(){
|
||||
|
||||
}
|
||||
public BugReportRecipient(BugReport bugReport, String email_in){
|
||||
bugreport_id = bugReport.id;
|
||||
email = email_in;
|
||||
}
|
||||
public BugReportRecipient(String email_in){
|
||||
email = email_in;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user