public AlertSystem() {
this.initAlerts();
}
public void addAlert(AlertType type, String luggageCode, String message){
Alert alert = new Alert(type, luggageCode, message);
System.out.println("Alert created: "+ alert);
this.alerts.get(type).add(alert);
}