Clover Coverage Report - krad-web-framework 2.0.0-SNAPSHOT
Coverage timestamp: Wed Dec 31 1969 19:00:00 EST
../../../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
2   46   2   1
0   10   1   2
2     1  
1    
 
  BlanketApproveDocumentEvent       Line # 27 2 0% 2 4 0% 0.0
 
No Tests
 
1    /*
2    * Copyright 2006-2008 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.kns.rule.event;
17   
18    import org.kuali.rice.kns.document.Document;
19   
20    /**
21    * This class represents the blanketApprove event that is part of an eDoc in Kuali. This could be triggered when a user presses the
22    * blanketApprove button for a given document enroute or it could happen when another piece of code calls the blanketApprove method
23    * in the document service.
24    *
25    *
26    */
 
27    public final class BlanketApproveDocumentEvent extends ApproveDocumentEvent {
28    /**
29    * Constructs an BlanketApproveDocumentEvent with the specified errorPathPrefix and document
30    *
31    * @param errorPathPrefix
32    * @param document
33    */
 
34  0 toggle public BlanketApproveDocumentEvent(String errorPathPrefix, Document document) {
35  0 super("blanketApprove", errorPathPrefix, document);
36    }
37   
38    /**
39    * Constructs a BlanketApproveDocumentEvent with the given document
40    *
41    * @param document
42    */
 
43  0 toggle public BlanketApproveDocumentEvent(Document document) {
44  0 super("blanketApprove", "", document);
45    }
46    }