Set appMods = findNames("EJBModule=" + this.ejbModuleName+",J2EEServer=" + getJ2EEServer()+",J2EEApplication="+this.applicationName);
Iterator it = appMods.iterator();
String [] mods = new String[appMods.size()];
int i =0;
while(it.hasNext()) {
mods[i++] = ((ObjectName)it.next()).toString();
}
return mods;