Ignore:
Timestamp:
07/15/13 16:46:11 (12 years ago)
Author:
wojtekp
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • DCWoRMS/branches/coolemall/src/simulator/workload/reader/xmlJob/QcgXmlJobReader.java

    r477 r1131  
    1212 
    1313 
    14 import org.qcg.broker.schemas.jobdesc.QcgJob; 
    1514 
    1615/** 
     
    2019 */ 
    2120 
    22 public class QcgXmlJobReader implements XMLJobReader<QcgJob> { 
     21public class QcgXmlJobReader implements XMLJobReader<org.qcg.broker.schemas.jobdesc.Job> { 
    2322 
    2423        protected static Unmarshaller unmarshaller; 
     
    6564        } 
    6665 
    67         public QcgJob read() throws IOException { 
     66        public org.qcg.broker.schemas.jobdesc.Job read() throws IOException { 
    6867 
    6968                String s = readRaw(); 
    7069                StringReader reader = new StringReader(s); 
    71                 QcgJob job = null; 
     70                org.qcg.broker.schemas.jobdesc.Job job = null; 
    7271                 
    7372                try { 
    7473                 
    75                         job = (QcgJob) unmarshaller.unmarshal(reader); 
     74                        job = (org.qcg.broker.schemas.jobdesc.Job) unmarshaller.unmarshal(reader); 
    7675                 
    7776                } catch (MarshalException e) { 
Note: See TracChangeset for help on using the changeset viewer.