Changeset 1163 for DCWoRMS/branches/coolemall/src/simulator
- Timestamp:
- 08/01/13 11:20:03 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/branches/coolemall/src/simulator/workload/reader/archive/QcgWAJobReader.java
r1148 r1163 116 116 } 117 117 118 public String mergeSwfAndXmlProfile(Map<String, JobDescription> jobProfilesMap, String swfJobDesc) throws IOException{118 public String mergeSwfAndXmlProfile(Map<String, JobDescription> applicationProfilesMap, String swfJobDesc) throws IOException{ 119 119 120 120 StringReader reader = new StringReader(swfJobDesc); … … 132 132 for(int i = 0; i < job.getTaskCount(); i++){ 133 133 try { 134 JobDescription xmlJobDescription = jobProfilesMap.get(job.getTask(i).getExecution().getExecutable().getApplication().getAppProperty(0).getContent());134 JobDescription xmlJobDescription = applicationProfilesMap.get(job.getTask(i).getExecution().getExecutable().getApplication().getAppProperty(0).getContent()); 135 135 if(xmlJobDescription != null){ 136 136 for(int j = 0; j < xmlJobDescription.size(); j++){
Note: See TracChangeset
for help on using the changeset viewer.