attributes = new HashMap<String, Object>(attributes);
if (attributes.containsKey(Queue.TYPE))
{
String typeAttribute = MapValueConverter.getStringAttribute(Queue.TYPE, attributes, null);
QueueType queueType = null;
try
{
queueType = QueueType.valueOf(typeAttribute.toUpperCase());
}
catch(Exception e)