- Timestamp:
- 07/15/13 16:46:11 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/branches/coolemall/src/simulator/workload/writer/xmlJob/QcgXmlJobWriter.java
r477 r1131 12 12 import simulator.workload.fileFilters.QcgJobFileNameFilter; 13 13 14 import org.qcg.broker.schemas.jobdesc.QcgJob;15 14 16 15 /** … … 20 19 */ 21 20 22 public class QcgXmlJobWriter implements XMLJobWriter< QcgJob>{21 public class QcgXmlJobWriter implements XMLJobWriter<org.qcg.broker.schemas.jobdesc.Job>{ 23 22 24 23 private Log log = LogFactory.getLog(QcgXmlJobWriter.class); … … 37 36 } 38 37 39 public boolean write( QcgJob job) throws IOException{40 String fileName = QcgJobFileNameFilter.FILE_NAME_PREFIX+"_"+job.get AppId()+".xml";38 public boolean write(org.qcg.broker.schemas.jobdesc.Job job) throws IOException{ 39 String fileName = QcgJobFileNameFilter.FILE_NAME_PREFIX+"_"+job.getId()+".xml"; 41 40 42 41 File file = new File(directory, fileName);
Note: See TracChangeset
for help on using the changeset viewer.