// We deploy any queues corresponding to pre-existing durable subscriptions
Collection bindings = postOffice.getBindingsForCondition(topicCond);
Iterator iter = bindings.iterator();
while (iter.hasNext())
{
Binding binding = (Binding)iter.next();
PagingFilteredQueue queue = (PagingFilteredQueue)binding.getQueue();
//TODO We need to set the paging params this way since the post office doesn't store them
//instead we should never create queues inside the postoffice - only do it at deploy time
queue.setPagingParams(destination.getFullSize(), destination.getPageSize(), destination.getDownCacheSize());