return answer;
}
public ObjectName getSlowConsumerStrategy() throws IOException, MalformedObjectNameException {
ObjectName result = null;
SlowConsumerStrategy strategy = destination.getSlowConsumerStrategy();
if (strategy != null && strategy instanceof AbortSlowConsumerStrategy) {
result = broker.registerSlowConsumerStrategy((AbortSlowConsumerStrategy)strategy);
}
return result;
}