001/* 002 * Copyright 2008 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 */ 016package org.kuali.ole.sys.document.service; 017 018import java.util.List; 019 020import org.kuali.ole.sys.businessobject.AccountingLine; 021import org.kuali.ole.sys.document.AccountingDocument; 022import org.kuali.ole.sys.document.authorization.AccountingLineAuthorizer; 023import org.kuali.ole.sys.document.web.TableJoining; 024 025 026public interface AccountingLineAuthorizationTransformer { 027 028 /** 029 * Performs transformations to the element rendering tree based on the authorization's reactions to the accounting line 030 * @param elements the element rendering tree 031 * @param accountingLine the accounting line to be rendered 032 * @param document the document that accounting line lives on 033 * @param lineAuthorizer the authorizer for the accounting line 034 * @param newLine is this line a new line or a line already on a document? 035 * @param accountingLinePropertyName the property path to this accounting line 036 */ 037 public abstract void transformElements(List<TableJoining> elements, AccountingLine accountingLine, AccountingDocument document, AccountingLineAuthorizer lineAuthorizer, boolean newLine, String accountingLinePropertyName); 038 039}