001    /**
002     * Copyright 2005-2012 The Kuali Foundation
003     *
004     * Licensed under the Educational Community License, Version 2.0 (the "License");
005     * you may not use this file except in compliance with the License.
006     * You may obtain a copy of the License at
007     *
008     * http://www.opensource.org/licenses/ecl2.php
009     *
010     * Unless required by applicable law or agreed to in writing, software
011     * distributed under the License is distributed on an "AS IS" BASIS,
012     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013     * See the License for the specific language governing permissions and
014     * limitations under the License.
015     */
016    package org.kuali.rice.krad.rules.rule.event;
017    
018    import org.kuali.rice.krad.document.Document;
019    import org.kuali.rice.krad.rules.rule.BusinessRule;
020    import org.kuali.rice.krad.rules.rule.DocumentAuditRule;
021    
022    /**
023     * Event class for document audit  
024     * 
025     * @author Kuali Rice Team (rice.collab@kuali.org)
026     *
027     */
028    public class DocumentAuditEvent extends KualiDocumentEventBase {
029        
030        /**
031         * Constructs a RunAuditEvent with the given errorPathPrefix and document.
032         * 
033         * @param errorPathPrefix
034         * @param document
035         * @param accountingLine
036         */
037        public DocumentAuditEvent(String errorPathPrefix, Document document) {
038            super("Running audit on " + KualiDocumentEventBase.getDocumentId(document), errorPathPrefix, document);
039        }
040    
041        /**
042         * Constructs a RunAuditEvent with the given document.
043         * 
044         * @param errorPathPrefix
045         * @param document
046         * @param accountingLine
047         */
048        public DocumentAuditEvent(Document document) {
049            this("", document);
050        }
051    
052        /**
053         * @see org.kuali.rice.krad.rules.rule.event.KualiDocumentEvent#getRuleInterfaceClass()
054         */
055        public Class<? extends BusinessRule> getRuleInterfaceClass() {
056            return DocumentAuditRule.class;
057        }
058    
059        /**
060         * @see org.kuali.rice.krad.rules.rule.event.KualiDocumentEvent#invokeRuleMethod(org.kuali.rice.krad.rules.rule.BusinessRule)
061         */
062        public boolean invokeRuleMethod(BusinessRule rule) {
063            return ((DocumentAuditRule) rule).processRunAuditBusinessRules(getDocument());
064        }
065    }
066