super(finder);
}
public void process(JBossServiceBeanMetaData metaData, Class<?> type)
{
Management annotation = finder.getAnnotation(type, Management.class);
if(annotation == null)
return;
if(annotation.value() != Object.class)
{
metaData.setManagement(annotation.value().getName());
}
else
{
Class<?> managementInterface = getDefaultInterface(type);
metaData.setManagement(managementInterface.getName());