private void IsAllLunsSelectedChanged() { if (!getIsGrouppedByTarget()) { java.util.List<LunModel> items = (java.util.List<LunModel>) getItems(); for (LunModel lun : items) { if (!lun.getIsIncluded() && lun.getIsAccessible()) { lun.setIsSelected(getIsAllLunsSelected()); } } } }
/** Creates model items from the provided list of business entities. */ public void ApplyData(java.util.List<LUNs> source, boolean isIncluded) { java.util.ArrayList<LunModel> newItems = new java.util.ArrayList<LunModel>(); for (LUNs a : source) { if (a.getLunType() == getType() || a.getLunType() == StorageType.UNKNOWN) { java.util.ArrayList<SanTargetModel> targets = new java.util.ArrayList<SanTargetModel>(); for (storage_server_connections b : a.getLunConnections()) { SanTargetModel tempVar = new SanTargetModel(); tempVar.setAddress(b.getconnection()); tempVar.setPort(b.getport()); tempVar.setName(b.getiqn()); tempVar.setIsSelected(true); tempVar.setIsLoggedIn(true); tempVar.setLuns(new ObservableCollection<LunModel>()); SanTargetModel model = tempVar; model.getLoginCommand().setIsExecutionAllowed(false); targets.add(model); } LunModel tempVar2 = new LunModel(); tempVar2.setLunId(a.getLUN_id()); tempVar2.setVendorId(a.getVendorId()); tempVar2.setProductId(a.getProductId()); tempVar2.setSerial(a.getSerial()); tempVar2.setMultipathing(a.getPathCount()); tempVar2.setTargets(targets); tempVar2.setSize(a.getDeviceSize()); tempVar2.setIsAccessible(a.getAccessible()); tempVar2.setIsIncluded(isIncluded); tempVar2.setIsSelected(isIncluded); LunModel lun = tempVar2; newItems.add(lun); // Remember included LUNs to prevent their removal while updating items. if (isIncluded) { includedLUNs.add(lun); } } } InitializeItems(newItems, null); ProposeDiscover(); }