Retrieves a list of mobile business objects for a package.
Collection<String> getMobileBusinessObjects() throws SUPAdminException;
If successful, returns an object of the specified type (can be null). If unsuccessful, returns SUPAdminException.
//Retrieve a list of MBOs
for (String mboName : suppkg.getMobileBusinessObjects()) {
System.out.println(mboName);
}