boolean autoDelete = (lifetimePolicy != LifetimePolicy.PERMANENT) ? true : false;
// In the Java Broker exclusivity may be NONE, SESSION, CONNECTION, CONTAINER, PRINCIPAL, LINK
// We map these to a boolean value to be consistent with the C++ Broker QMF value.
// TODO The C++ and Java Brokers should really return consistent information.
ExclusivityPolicy exclusivityPolicy = (ExclusivityPolicy)_queue.getAttribute("exclusive");
boolean exclusive = (exclusivityPolicy != ExclusivityPolicy.NONE) ? true : false;
// TODO vhostRef - currently just use its name to try and get things working with standard command line tools.
setValue("name", name);