@Override
public String getAsString(FacesContext arg0, UIComponent arg1, Object arg2) {
if (!(arg2 instanceof FlightSchedule))
return "";
FlightSchedule flightSchedule = (FlightSchedule) arg2;
Long id = flightSchedule.getId();
return String.valueOf(id);
}