Clover Coverage Report - Implementation 2.0.0-SNAPSHOT
Coverage timestamp: Wed Dec 31 1969 19:00:00 EST
../../../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
14   66   9   2.8
4   39   0.64   5
5     1.8  
1    
 
  ExtractServiceImpl       Line # 25 14 0% 9 23 0% 0.0
 
No Tests
 
1    /*
2    * Copyright 2007-2009 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10    * Unless required by applicable law or agreed to in writing, software
11    * distributed under the License is distributed on an "AS IS" BASIS,
12    * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13    * See the License for the specific language governing permissions and
14    * limitations under the License.
15    */
16    package org.kuali.rice.edl.impl.extract;
17   
18    import java.util.Iterator;
19   
20    import org.kuali.rice.edl.framework.extract.DumpDTO;
21    import org.kuali.rice.edl.framework.extract.ExtractService;
22    import org.kuali.rice.edl.impl.extract.dao.ExtractDAO;
23   
24   
 
25    public class ExtractServiceImpl implements ExtractService {
26   
27    private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(ExtractServiceImpl.class);
28   
29    private ExtractDAO extractDAO;
30   
 
31  0 toggle public DumpDTO getDumpByDocumentId(Long noteId) {
32  0 return Dump.to(getExtractDAO().getDumpByRouteHeaderId(noteId));
33    }
34   
 
35  0 toggle public void saveDump(DumpDTO dumpDTO) {
36  0 try {
37  0 Dump dump = Dump.from(dumpDTO);
38  0 getExtractDAO().saveDump(dump);
39  0 if (! dump.getFields().isEmpty()){
40  0 for (Iterator iter = dump.getFields().iterator(); iter.hasNext();) {
41  0 Fields field = (Fields) iter.next();
42  0 getExtractDAO().saveField(field);
43    }
44    }
45    } catch (Exception e) {
46  0 throw new RuntimeException(e);
47    }
48    }
49   
 
50  0 toggle public void setExtractDAO(ExtractDAO extractDAO) {
51  0 this.extractDAO = extractDAO;
52    }
53   
54   
 
55  0 toggle public void deleteDump(Long docId) {
56  0 try {
57  0 getExtractDAO().deleteDump(docId);
58    } catch (Exception e) {
59  0 throw new RuntimeException(e);
60    }
61    }
62   
 
63  0 toggle public ExtractDAO getExtractDAO() {
64  0 return extractDAO;
65    }
66    }