use of com.att.aro.core.mobiledevice.pojo.AroDevices in project VideoOptimzer by attdevsupport.
the class AROController method getAroDevices.
/**
* Builds a list of IAroDevices
*
* @return a list of IAroDevices
*/
public IAroDevices getAroDevices() {
// IDevice[] androidDevices = null;
IAroDevices aroDevices = new AroDevices();
List<IDataCollector> collectors = getAvailableCollectors();
if (Util.isMacOS()) {
getDevices(aroDevices, collectors, DataCollectorType.IOS);
}
if (getDevices(aroDevices, collectors, DataCollectorType.ROOTED_ANDROID) == 0) {
getDevices(aroDevices, collectors, DataCollectorType.NON_ROOTED_ANDROID);
}
return aroDevices;
}
Aggregations