return md;
ConfigPropertyMetaData cfgMeta = new ConfigPropertyMetaData();
cfgMeta.setName(getConfigPropertyName(annotation));
if (configProperty.defaultValue() != null && !configProperty.defaultValue().equals(""))
cfgMeta.setValue(configProperty.defaultValue());
if (!Object.class.equals(configProperty.type()))
{
cfgMeta.setType(configProperty.type().getName());