/** * Constructor to create a UnitsTypeRateRcFindNoOpRequest * * @param id Unique request name * @param noOpIn Simulated response object */ public UnitsTypeRateRcFindNoOpRequest(String id, UnitsTypeRcObjectDataList noOpIn) { super(id, "UnitsTypeRateRcFindNoOpRequest"); if (noOpIn != null) { Map mapList = new HashMap(); Map[] mapArray = null; mapList.put("Count", noOpIn.getLength()); mapList.put("TotalCount", noOpIn.getTotalCount()); mapList.put("Index", noOpIn.getIndex()); mapArray = new HashMap[noOpIn.getLength()]; for (int i = 0; i < noOpIn.getLength(); i++) { mapArray[i] = UnitsTypeRcObjectHelper.toMap(noOpIn.getArray()[i], null); addInput("UnitsType", noOpIn); } addInput("UnitsType", mapList); } }
/** * Retrieves the UnitsTypeRcObjectDataList passed into the constructor * * @return Simulated response */ public UnitsTypeRcObjectDataList getOutput() { return UnitsTypeRcObjectHelper.fromMapList(outputMap, "UnitsTypeList"); }