PropertyChangeEvents are fired for the following properties:
889890891892893894895896897898
return queueEntryImpl; } void setQueueEntry(AsteriskQueueEntryImpl queueEntry) { final AsteriskQueueEntry oldQueueEntry = this.queueEntryImpl; this.queueEntryImpl = queueEntry; firePropertyChange(PROPERTY_QUEUE_ENTRY, oldQueueEntry, queueEntry); }
850851852853854855856857858859