new WLanCtlCommand().execute(args);
}
public void execute() throws ApiNotFoundException, NetworkException {
final Device dev = argDevice.getValue();
final WirelessNetDeviceAPI api;
api = dev.getAPI(WirelessNetDeviceAPI.class);
// Perform the selected operation
if (argSetEssid.isSet()) {
final String essid = argValue.getValue();
getOutput().getPrintWriter().format(fmt_set, dev.getId(), essid);
api.setESSID(essid);
}
}