Java Doc for IndirectCostAdjustmentDocumentRule.java in  » ERP-CRM-Financial » Kuali-Financial-System » org » kuali » module » financial » rules » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » ERP CRM Financial » Kuali Financial System » org.kuali.module.financial.rules 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.kuali.kfs.rules.AccountingDocumentRuleBase
   org.kuali.module.financial.rules.IndirectCostAdjustmentDocumentRule

IndirectCostAdjustmentDocumentRule
public class IndirectCostAdjustmentDocumentRule extends AccountingDocumentRuleBase implements IndirectCostAdjustmentDocumentRuleConstants(Code)
Business rule(s) applicable to IndirectCostAdjustment documents.




Method Summary
public  booleanisAmountValid(AccountingDocument document, AccountingLine accountingLine)
     Overrides to only disallow zero.
public  booleanisDebit(AccountingDocument transactionalDocument, AccountingLine accountingLine)
     Same logic as IsDebitUtils#isDebitConsideringType(FinancialDocumentRuleBase, FinancialDocument, AccountingLine) but has the following accounting line restrictions: for grant lines(source):
  1. only allow expense object type codes
for receipt lines(target):
  1. only allow income object type codes

Parameters:
  transactionDocument - The document associated with the accounting line being reviewed to determine if it's a debit.
Parameters:
  accountingLine - The accounting line being reviewed to determine if it's a debit line.
public  booleanprocessAddAccountingLineBusinessRules(AccountingDocument transactionalDocument, AccountingLine accountingLine)
     This method is overridden to modify the order of the business rule checks performed when adding an accounting line, to influence the order of any corresponding error messages.
protected  booleanprocessCommonCustomAccountingLineBusinessRules(AccountingLine accountingLine)
     This method provides a centralized entry point to perform custom common accounting line validation.
Parameters:
  accountingLine - The accounting line to run the business rule checks against.
public  booleanprocessReviewAccountingLineBusinessRules(AccountingDocument transactionalDocument, AccountingLine accountingLine)
     This method is overridden to modify the order of the business rule checks performed when reviewing an accounting line, to influence the order of any corresponding error messages.
public  booleanprocessUpdateAccountingLineBusinessRules(AccountingDocument transactionalDocument, AccountingLine accountingLine, AccountingLine updatedAccountingLine)
     This method is overridden to modify the order of the business rule checks performed when updating an accounting line, to influence the order of any corresponding error messages.



Method Detail
isAmountValid
public boolean isAmountValid(AccountingDocument document, AccountingLine accountingLine)(Code)
Overrides to only disallow zero. Indirect Cost Adjustment documents can contain accounting lines with positive and negative amounts, but cannot contains lines with amounts of zero.
Parameters:
  document - The document associated with the accounting line being validated.
Parameters:
  accountingLine - The accounting line whose amount is being validated. True if the amount is non zero, false otherwise.
See Also:   org.kuali.module.financial.rules.FinancialDocumentRuleBase.isAmountValid(FinancialDocumentAccountingLine)



isDebit
public boolean isDebit(AccountingDocument transactionalDocument, AccountingLine accountingLine) throws IllegalStateException(Code)
Same logic as IsDebitUtils#isDebitConsideringType(FinancialDocumentRuleBase, FinancialDocument, AccountingLine) but has the following accounting line restrictions: for grant lines(source):
  1. only allow expense object type codes
for receipt lines(target):
  1. only allow income object type codes

Parameters:
  transactionDocument - The document associated with the accounting line being reviewed to determine if it's a debit.
Parameters:
  accountingLine - The accounting line being reviewed to determine if it's a debit line. True if the accounting line is a debit. See IsDebitUtils.isDebitConsideringType().
throws:
  IllegalStateException - Thrown if the accounting line given is a source accounting line representing an expenseor is a target accounting line representing an income.
See Also:   IsDebitUtils.isDebitConsideringType(FinancialDocumentRuleBaseFinancialDocumentAccountingLine)
See Also:   org.kuali.core.rule.AccountingLineRule.isDebit(org.kuali.core.document.FinancialDocumentorg.kuali.core.bo.AccountingLine)



processAddAccountingLineBusinessRules
public boolean processAddAccountingLineBusinessRules(AccountingDocument transactionalDocument, AccountingLine accountingLine)(Code)
This method is overridden to modify the order of the business rule checks performed when adding an accounting line, to influence the order of any corresponding error messages. This is accomplished by calling a custom accounting line rule method prior to calling the general rule checks in the parent. KULEDOCS-1406: show "account not allowed" error message before "account is expired" error message
Parameters:
  transactionalDocument - The document the new accounting line will be added to.
Parameters:
  accountingLine - The new accounting line to add. True if all the business rules passed, false otherwise.
See Also:   org.kuali.module.financial.rules.FinancialDocumentRuleBase.processAddAccountingLineBusinessRules(org.kuali.core.document.FinancialDocumentorg.kuali.core.bo.AccountingLine)
See Also:   IndirectCostAdjustmentDocumentRule.processCommonCustomAccountingLineBusinessRules(AccountingLine)
See Also:   IndirectCostAdjustmentDocumentRule.isChartOfAccountsAllowed(AccountingLine)
See Also:   IndirectCostAdjustmentDocumentRule.isAccountAllowed(AccountingLine)



processCommonCustomAccountingLineBusinessRules
protected boolean processCommonCustomAccountingLineBusinessRules(AccountingLine accountingLine)(Code)
This method provides a centralized entry point to perform custom common accounting line validation.
Parameters:
  accountingLine - The accounting line to run the business rule checks against. True if all the custom business rules pass, false otherwise.



processReviewAccountingLineBusinessRules
public boolean processReviewAccountingLineBusinessRules(AccountingDocument transactionalDocument, AccountingLine accountingLine)(Code)
This method is overridden to modify the order of the business rule checks performed when reviewing an accounting line, to influence the order of any corresponding error messages. This is accomplished by calling a custom accounting line rule method prior to calling the general rule checks in the parent. KULEDOCS-1406: show "account not allowed" error message before "account is expired" error message
Parameters:
  transactionalDocument - The document containing the accounting line to be reviewed.
Parameters:
  accountingLine - The accounting line being reviewed. True if all the business rules passed, false otherwise.
See Also:   org.kuali.module.financial.rules.FinancialDocumentRuleBase.processReviewAccountingLineBusinessRules(org.kuali.core.document.FinancialDocumentorg.kuali.core.bo.AccountingLine)
See Also:   IndirectCostAdjustmentDocumentRule.processCommonCustomAccountingLineBusinessRules(AccountingLine)
See Also:   IndirectCostAdjustmentDocumentRule.isChartOfAccountsAllowed(AccountingLine)
See Also:   IndirectCostAdjustmentDocumentRule.isAccountAllowed(AccountingLine)



processUpdateAccountingLineBusinessRules
public boolean processUpdateAccountingLineBusinessRules(AccountingDocument transactionalDocument, AccountingLine accountingLine, AccountingLine updatedAccountingLine)(Code)
This method is overridden to modify the order of the business rule checks performed when updating an accounting line, to influence the order of any corresponding error messages. This is accomplished by calling a custom accounting line rule method prior to calling the general rule checks in the parent. KULEDOCS-1406: show "account not allowed" error message before "account is expired" error message
Parameters:
  transactionalDocument - The document containing the accounting line to be updated.
Parameters:
  accountingLine - The accounting line being updated. True if all the business rules passed, false otherwise.
See Also:   org.kuali.module.financial.rules.FinancialDocumentRuleBase.processUpdateAccountingLineBusinessRules(org.kuali.core.document.FinancialDocumentorg.kuali.core.bo.AccountingLineorg.kuali.core.bo.AccountingLine)
See Also:   IndirectCostAdjustmentDocumentRule.processCommonCustomAccountingLineBusinessRules(AccountingLine)
See Also:   IndirectCostAdjustmentDocumentRule.isChartOfAccountsAllowed(AccountingLine)
See Also:   IndirectCostAdjustmentDocumentRule.isAccountAllowed(AccountingLine)



Fields inherited from org.kuali.kfs.rules.AccountingDocumentRuleBase
protected static org.apache.log4j.Logger LOG(Code)(Java Doc)

Methods inherited from org.kuali.kfs.rules.AccountingDocumentRuleBase
protected boolean accountIsAccessible(AccountingDocument financialDocument, AccountingLine accountingLine)(Code)(Java Doc)
protected void buildTotalChangeErrorMessage(String propertyName, KualiDecimal persistedSourceLineTotal, KualiDecimal currentSourceLineTotal)(Code)(Java Doc)
protected boolean checkAccountingLineAccountAccessibility(AccountingDocument financialDocument, AccountingLine accountingLine, AccountingLineAction action)(Code)(Java Doc)
protected void customizeExplicitGeneralLedgerPendingEntry(AccountingDocument accountingDocument, AccountingLine accountingLine, GeneralLedgerPendingEntry explicitEntry)(Code)(Java Doc)
protected boolean customizeOffsetGeneralLedgerPendingEntry(AccountingDocument accountingDocument, AccountingLine accountingLine, GeneralLedgerPendingEntry explicitEntry, GeneralLedgerPendingEntry offsetEntry)(Code)(Java Doc)
protected Class getAccountingLineDocumentClass(AccountingDocument financialDocument)(Code)(Java Doc)
protected KualiDecimal getGeneralLedgerPendingEntryAmountForAccountingLine(AccountingLine accountingLine)(Code)(Java Doc)
protected ParameterService getParameterService()(Code)(Java Doc)
final protected void handleNonExistentDocumentWhenApproving(AccountingDocument accountingDocument)(Code)(Java Doc)
protected boolean hasAccessibleAccountingLines(AccountingDocument financialDocument, int min)(Code)(Java Doc)
protected boolean isAccountingLineTotalsUnchanged(AccountingDocument accountingDocument)(Code)(Java Doc)
protected boolean isAccountingLinesRequiredNumberForRoutingMet(AccountingDocument accountingDocument)(Code)(Java Doc)
public boolean isAmountValid(AccountingDocument document, AccountingLine accountingLine)(Code)(Java Doc)
final public boolean isAsset(AccountingLine accountingLine)(Code)(Java Doc)
final public boolean isAssetTypeCode(String objectTypeCode)(Code)(Java Doc)
final public boolean isBudgetOnlyCodesSubType(String objectCode)(Code)(Java Doc)
final public boolean isCashSubType(String objectCode)(Code)(Java Doc)
final public boolean isCostRecoveryExpenseSubType(String objectCode)(Code)(Java Doc)
public boolean isCredit(AccountingLine accountingLine, AccountingDocument financialDocument) throws IllegalStateException(Code)(Java Doc)
protected boolean isDocumentBalanceValid(AccountingDocument accountingDocument)(Code)(Java Doc)
protected boolean isDocumentBalanceValidConsideringDebitsAndCredits(AccountingDocument accountingDocument)(Code)(Java Doc)
protected boolean isErrorCorrection(AccountingDocument accountingDocument)(Code)(Java Doc)
public boolean isExpense(AccountingLine accountingLine)(Code)(Java Doc)
final public boolean isExpenseOrAsset(AccountingLine line)(Code)(Java Doc)
final public boolean isFringeBenefitsSubType(String objectCode)(Code)(Java Doc)
final public boolean isFundBalanceCode(String objectCode)(Code)(Java Doc)
final public boolean isFundBalanceSubType(String objectCode)(Code)(Java Doc)
public boolean isFundGroupAllowed(Class documentClass, AccountingLine accountingLine)(Code)(Java Doc)
protected boolean isFundGroupSetBalanceValid(AccountingDocument tranDoc, Class componentClass, String parameterName)(Code)(Java Doc)
final public boolean isHourlyWagesSubType(String objectCode)(Code)(Java Doc)
final public boolean isIncome(AccountingLine accountingLine)(Code)(Java Doc)
final public boolean isIncomeOrLiability(AccountingLine line)(Code)(Java Doc)
final public boolean isLiability(AccountingLine accountingLine)(Code)(Java Doc)
final public boolean isLiabilityTypeCode(String objectTypeCode)(Code)(Java Doc)
final public boolean isMandatoryTransfersSubType(String objectSubTypeCode)(Code)(Java Doc)
final public boolean isNonMandatoryTransfersSubType(String objectSubTypeCode)(Code)(Java Doc)
public boolean isObjectCodeAllowed(Class documentClass, AccountingLine accountingLine)(Code)(Java Doc)
public boolean isObjectConsolidationAllowed(Class documentClass, AccountingLine accountingLine)(Code)(Java Doc)
public boolean isObjectLevelAllowed(Class documentClass, AccountingLine accountingLine)(Code)(Java Doc)
public boolean isObjectSubTypeAllowed(Class documentClass, AccountingLine accountingLine)(Code)(Java Doc)
public boolean isObjectTypeAllowed(Class documentClass, AccountingLine accountingLine)(Code)(Java Doc)
protected boolean isOptionalOneSidedDocumentAccountingLinesRequiredNumberForRoutingMet(AccountingDocument accountingDocument)(Code)(Java Doc)
final public boolean isRevenue(AccountingLine line)(Code)(Java Doc)
final public boolean isSalariesSubType(String objectCode)(Code)(Java Doc)
protected boolean isSourceAccountingLinesRequiredNumberForRoutingMet(AccountingDocument accountingDocument)(Code)(Java Doc)
public boolean isSubFundGroupAllowed(Class documentClass, AccountingLine accountingLine)(Code)(Java Doc)
protected boolean isTargetAccountingLinesRequiredNumberForRoutingMet(AccountingDocument accountingDocument)(Code)(Java Doc)
final public boolean isValuationsAndAdjustmentsSubType(String objectSubTypeCode)(Code)(Java Doc)
protected void populateExplicitGeneralLedgerPendingEntry(AccountingDocument accountingDocument, AccountingLine accountingLine, GeneralLedgerPendingEntrySequenceHelper sequenceHelper, GeneralLedgerPendingEntry explicitEntry)(Code)(Java Doc)
public boolean processAddAccountingLineBusinessRules(AccountingDocument financialDocument, AccountingLine accountingLine)(Code)(Java Doc)
protected boolean processCustomAddAccountingLineBusinessRules(AccountingDocument financialDocument, AccountingLine accountingLine)(Code)(Java Doc)
protected boolean processCustomApproveDocumentBusinessRules(ApproveDocumentEvent approveEvent)(Code)(Java Doc)
protected boolean processCustomDeleteAccountingLineBusinessRules(AccountingDocument financialDocument, AccountingLine accountingLine, boolean lineWasAlreadyDeletedFromDocument)(Code)(Java Doc)
protected boolean processCustomReviewAccountingLineBusinessRules(AccountingDocument financialDocument, AccountingLine accountingLine)(Code)(Java Doc)
protected boolean processCustomRouteDocumentBusinessRules(Document document)(Code)(Java Doc)
protected boolean processCustomUpdateAccountingLineBusinessRules(AccountingDocument accountingDocument, AccountingLine originalAccountingLine, AccountingLine updatedAccountingLine)(Code)(Java Doc)
public boolean processDeleteAccountingLineBusinessRules(AccountingDocument financialDocument, AccountingLine accountingLine, boolean lineWasAlreadyDeletedFromDocument)(Code)(Java Doc)
protected boolean processExplicitGeneralLedgerPendingEntry(AccountingDocument accountingDocument, GeneralLedgerPendingEntrySequenceHelper sequenceHelper, AccountingLine accountingLine, GeneralLedgerPendingEntry explicitEntry)(Code)(Java Doc)
public boolean processGenerateGeneralLedgerPendingEntries(AccountingDocument accountingDocument, AccountingLine accountingLine, GeneralLedgerPendingEntrySequenceHelper sequenceHelper)(Code)(Java Doc)
protected boolean processOffsetGeneralLedgerPendingEntry(AccountingDocument accountingDocument, GeneralLedgerPendingEntrySequenceHelper sequenceHelper, AccountingLine accountingLine, GeneralLedgerPendingEntry explicitEntry, GeneralLedgerPendingEntry offsetEntry)(Code)(Java Doc)
public boolean processReviewAccountingLineBusinessRules(AccountingDocument financialDocument, AccountingLine accountingLine)(Code)(Java Doc)
public boolean processUpdateAccountingLineBusinessRules(AccountingDocument financialDocument, AccountingLine accountingLine, AccountingLine updatedAccountingLine)(Code)(Java Doc)
public static void putRequiredPropertyError(BusinessObjectEntry boe, String propertyName)(Code)(Java Doc)
protected void reportError(String propertyName, String errorKey, String... errorParams)(Code)(Java Doc)
protected AccountingDocument retrievePersistedDocument(AccountingDocument accountingDocument)(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.