/* */ public static AspectManager getAspectManager(MetaData md)
/* */ {
/* 46 */ AspectManager manager = AspectManager.instance();
/* 47 */ if (md != null)
/* */ {
/* 49 */ ApplicationScope app = (ApplicationScope)md.getMetaData(ApplicationScope.class);
/* 50 */ DeploymentScope dep = (DeploymentScope)md.getMetaData(DeploymentScope.class);
/* 51 */ if ((app != null) && (dep != null))
/* */ {
/* 53 */ JBossStringBuilder fqn = new JBossStringBuilder("/");
/* 54 */ AspectManager sub = null;
/* 55 */ if (app != null)
/* */ {
/* 57 */ String name = "APPLICATION=" + app.value();
/* 58 */ fqn.append(name);
/* 59 */ fqn.append("/");
/* 60 */ sub = manager.findManagerByName(fqn.toString());
/* 61 */ if (sub == null)
/* */ {