List of usage examples for com.amazonaws.services.devicefarm.model Radios setGps
public void setGps(Boolean gps)
True if GPS is enabled at the beginning of the test; otherwise, false.
From source file:org.jenkinsci.plugins.awsdevicefarm.AWSDeviceFarmRecorder.java
License:Open Source License
private Radios getScheduleRunConfigurationRadio(Boolean radioDetails) { Radios radio = new Radios(); if (radioDetails != null && radioDetails) { radio.setBluetooth(ifBluetooth); radio.setGps(ifGPS); radio.setNfc(ifNfc);//from w w w. j a v a 2s . c o m radio.setWifi(ifWifi); } else { radio.setBluetooth(true); radio.setGps(true); radio.setNfc(true); radio.setWifi(true); } return radio; }