/* 1688 */ List propertiesList = consumer.getMessageProperties();
/* 1689 */ if (propertiesList != null)
/* */ {
/* 1691 */ for (MessagePropertiesMetaData properties : propertiesList)
/* */ {
/* 1693 */ MessagePropertiesImpl annotation = new MessagePropertiesImpl();
/* */
/* 1695 */ String delivery = properties.getDelivery();
/* 1696 */ if ((delivery != null) && (delivery.equals("Persistent")))
/* 1697 */ annotation.setDelivery(DeliveryMode.PERSISTENT);
/* */ else {
/* 1699 */ annotation.setDelivery(DeliveryMode.NON_PERSISTENT);
/* */ }
/* 1701 */ Integer priority = properties.getPriority();
/* 1702 */ if (priority != null) {
/* 1703 */ annotation.setDelivery(DeliveryMode.PERSISTENT);
/* */ }
/* 1705 */ String interfac = properties.getClassName();
/* 1706 */ if (interfac != null)
/* */ {
/* 1708 */ Class clazz = this.di.getClassLoader().loadClass(interfac);
/* 1709 */ annotation.setInterface(clazz);
/* */ }
/* */
/* 1712 */ MethodAttributeMetaData method = properties.getMethod();
/* 1713 */ addAnnotations(MessageProperties.class, annotation, container, method);
/* */ }