| | |
| | | private QueueSequenceService queueSequenceService; |
| | | |
| | | List<LocalTime> timeslotList = null; |
| | | Integer timeslotLength = 0; |
| | | |
| | | ScheduledTask startBizTask = null; |
| | | ScheduledTask closeBizTask = null; |
| | |
| | | @Override |
| | | public void readTimeSlotConfig() { |
| | | String strBookTimeslotLength = configApi.getConfigValueByKey(BOOK_TIMESLOT_LENGTH); |
| | | timeslotLength = Integer.valueOf(strBookTimeslotLength); |
| | | //String strBookTimeslotList = configApi.getConfigValueByKey(BOOK_TIMESLOT_LIST); |
| | | //timeslotList = Utils.parseTimeSlotList(strBookTimeslotList, Integer.valueOf(strBookTimeslotLength)); |
| | | } |
| | |
| | | return timeslotList; |
| | | } |
| | | |
| | | @Override |
| | | public Integer getTimeslotLength() { |
| | | return timeslotLength; |
| | | } |
| | | |
| | | } |