The type of the J2EEManagedObject as specified by JSR77. The class that implements a specific type must override this method and return the appropriate type string.
Set s = findNames("j2eeType=JDBCDataSource,JDBCResource="+getname());
Iterator it = s.iterator();
String [] ret = new String[s.size()];
int i =0;
while(it.hasNext()) {
ret[i++] = ((ObjectName)it.next()).toString();
}
return ret;