2025-03-27 15:12:09 +03:00
|
|
|
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 = "";
|
2025-03-27 15:31:26 +03:00
|
|
|
public String email = "";
|
|
|
|
|
public BugReportRecipient() {
|
2025-03-27 15:12:09 +03:00
|
|
|
}
|
2025-03-27 15:31:26 +03:00
|
|
|
public BugReportRecipient(BugReport bugReport, String email_in) {
|
2025-03-27 15:12:09 +03:00
|
|
|
bugreport_id = bugReport.id;
|
|
|
|
|
email = email_in;
|
|
|
|
|
}
|
2025-03-27 15:31:26 +03:00
|
|
|
public BugReportRecipient(String email_in) {
|
2025-03-27 15:12:09 +03:00
|
|
|
email = email_in;
|
|
|
|
|
}
|
2025-03-27 15:31:26 +03:00
|
|
|
@Override
|
|
|
|
|
public void SynchronizeFields(DBObject src) {
|
|
|
|
|
super.SynchronizeFields(src);
|
|
|
|
|
BugReportRecipient src_ = (BugReportRecipient) src;
|
|
|
|
|
bugreport_id = src_.bugreport_id;
|
|
|
|
|
email = src_.email;
|
|
|
|
|
}
|
2025-03-27 15:12:09 +03:00
|
|
|
}
|