Java Doc for CollectorReportData.java in  » ERP-CRM-Financial » Kuali-Financial-System » org » kuali » module » gl » util » 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.gl.util 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.kuali.module.gl.util.CollectorReportData

CollectorReportData
public class CollectorReportData (Code)
This class aggregates all of the status information together from all of the collector-related processes. Note: this code assumes that each batch is identified by a different collector batch name.



Constructor Summary
public  CollectorReportData()
    

Method Summary
public  voidaddBatch(CollectorBatch batch)
     Adds a batch to this report data object.
public  Iterator<CollectorBatch>getAddedBatches()
    
public  Set<String>getAllUnparsableBatchNames()
    
public  Set<String>getBatchNamesWithErrorMap()
     Returns a set of batch names that were passed in as parameters into CollectorReportData.getErrorMapForBatchName(String) .
public  Map<Transaction, List<Message>>getBatchOriginEntryScrubberErrors(CollectorBatch batch)
    
public  DemergerReportDatagetDemergerReportData(CollectorBatch batch)
    
public  ErrorMapgetErrorMapForBatchName(String batchName)
     Retrieves an error map instance for a batch name (typically the file name of the batch file).
public  LedgerEntryHoldergetLedgerEntryHolder()
     Gets the ledgerEntryHolder attribute.
public  IntegergetNumDetailAccountValuesChanged(CollectorBatch batch)
    
public  IntegergetNumDetailDeleted(CollectorBatch batch)
    
public  IntegergetNumInputDetails(CollectorBatch batch)
    
public  intgetNumNotPersistedBatches()
     Gets the numNotPersistedBatches attribute.
public  intgetNumPersistedBatches()
     Gets the numPersistedBatches attribute.
public  IntegergetNumSavedDetails(CollectorBatch batch)
    
public  intgetNumberOfAddedBatches()
    
public  OriginEntryTotalsgetOriginEntryTotals(CollectorBatch batch)
    
public  ScrubberReportDatagetScrubberReportData(CollectorBatch batch)
    
public  Map<DocumentGroupData, OriginEntryTotals>getTotalsOnInputOriginEntriesAssociatedWithErrorGroup(CollectorBatch batch)
    
public  voidincrementNumNonPersistedBatches()
    
public  voidincrementNumPersistedBatches()
    
public  booleanisBatchAdded(CollectorBatch batch)
    
public  booleanisBatchValid(CollectorBatch batch)
    
public  voidmarkUnparsableBatchNames(String batchName)
    
public  voidmarkValidationStatus(CollectorBatch batch, boolean validStatus)
    
public  voidsetBatchDetailScrubberErrors(CollectorBatch batch, Map<CollectorDetail, List<Message>> errorsMap)
     Stores the errors encountered trying to scrub the InterDepartmentalBilling records in the given batch.
public  voidsetBatchOriginEntryScrubberErrors(CollectorBatch batch, Map<Transaction, List<Message>> errorsMap)
     Stores the errors encountered trying to scrub the InterDepartmentalBilling records in the given batch.
public  voidsetDemergerReportData(CollectorBatch batch, DemergerReportData demergerReportData)
    
public  voidsetEmailSendingStatusForParsedBatch(CollectorBatch batch, String emailStatus)
    
public  voidsetLedgerEntryHolder(LedgerEntryHolder ledgerEntryHolder)
     Sets the ledgerEntryHolder attribute value.
public  voidsetNumDetailAccountValuesChanged(CollectorBatch batch, Integer numDetailAccountValuesChanged)
    
public  voidsetNumDetailDeleted(CollectorBatch batch, Integer numDetailDeleted)
    
public  voidsetNumInputDetails(CollectorBatch batch)
    
public  voidsetNumSavedDetails(CollectorBatch batch, Integer numSavedDetails)
    
public  voidsetOriginEntryTotals(CollectorBatch batch, OriginEntryTotals totals)
    
public  voidsetScrubberReportData(CollectorBatch batch, ScrubberReportData scrubberReportData)
    
public  voidsetTotalsOnInputOriginEntriesAssociatedWithErrorGroup(CollectorBatch batch, Map<DocumentGroupData, OriginEntryTotals> totals)
    
protected  voidthrowExceptionIfBatchNotAdded(CollectorBatch batch)
    


Constructor Detail
CollectorReportData
public CollectorReportData()(Code)




Method Detail
addBatch
public void addBatch(CollectorBatch batch)(Code)
Adds a batch to this report data object. If the batch (identified using batch.getBatchName()) has already been added, then an exception is thrown.
Parameters:
  batch - collector batch from xml input



getAddedBatches
public Iterator<CollectorBatch> getAddedBatches()(Code)



getAllUnparsableBatchNames
public Set<String> getAllUnparsableBatchNames()(Code)



getBatchNamesWithErrorMap
public Set<String> getBatchNamesWithErrorMap()(Code)
Returns a set of batch names that were passed in as parameters into CollectorReportData.getErrorMapForBatchName(String) . a set of batch names that have an associated error map



getBatchOriginEntryScrubberErrors
public Map<Transaction, List<Message>> getBatchOriginEntryScrubberErrors(CollectorBatch batch)(Code)
Returns the scrubber errors related to a batch
Parameters:
  batch - collector batch from input xml Map returns a map containing a list of error messages for each transaction



getDemergerReportData
public DemergerReportData getDemergerReportData(CollectorBatch batch)(Code)



getErrorMapForBatchName
public ErrorMap getErrorMapForBatchName(String batchName)(Code)
Retrieves an error map instance for a batch name (typically the file name of the batch file). Each instance of this class guarantees that each time this method is called with specific batch name, the same error map instance is returned, and that each that no 2 different batch names will return the same instance
Parameters:
  batchName - a batch name a error map instance specific to this batch name



getLedgerEntryHolder
public LedgerEntryHolder getLedgerEntryHolder()(Code)
Gets the ledgerEntryHolder attribute. Returns the ledgerEntryHolder.



getNumDetailAccountValuesChanged
public Integer getNumDetailAccountValuesChanged(CollectorBatch batch)(Code)



getNumDetailDeleted
public Integer getNumDetailDeleted(CollectorBatch batch)(Code)



getNumInputDetails
public Integer getNumInputDetails(CollectorBatch batch)(Code)



getNumNotPersistedBatches
public int getNumNotPersistedBatches()(Code)
Gets the numNotPersistedBatches attribute. Returns the numNotPersistedBatches.



getNumPersistedBatches
public int getNumPersistedBatches()(Code)
Gets the numPersistedBatches attribute. Returns the numPersistedBatches.



getNumSavedDetails
public Integer getNumSavedDetails(CollectorBatch batch)(Code)



getNumberOfAddedBatches
public int getNumberOfAddedBatches()(Code)
Returns the number of batches that have been added using the CollectorReportData.addBatch(CollectorBatch) method number of added batches



getOriginEntryTotals
public OriginEntryTotals getOriginEntryTotals(CollectorBatch batch)(Code)



getScrubberReportData
public ScrubberReportData getScrubberReportData(CollectorBatch batch)(Code)



getTotalsOnInputOriginEntriesAssociatedWithErrorGroup
public Map<DocumentGroupData, OriginEntryTotals> getTotalsOnInputOriginEntriesAssociatedWithErrorGroup(CollectorBatch batch)(Code)
Returns the totals or all origin entries in the input group that match the document group (doc #, doc type, origination code) of at least one origin entry in the error group, which is generated by the scrubber
Parameters:
  batch - return a map such that the key is a document group (doc #, doc type, origination code) and the value is thetotals of the origin entry of all those



incrementNumNonPersistedBatches
public void incrementNumNonPersistedBatches()(Code)



incrementNumPersistedBatches
public void incrementNumPersistedBatches()(Code)



isBatchAdded
public boolean isBatchAdded(CollectorBatch batch)(Code)
Returns whether a batch has already been added
Parameters:
  batch - collector batch from xml input true if batch has already been added



isBatchValid
public boolean isBatchValid(CollectorBatch batch)(Code)
Returns true if batch is valid; False if invalid
Parameters:
  batch - collector batch from input xml true if batch is valid



markUnparsableBatchNames
public void markUnparsableBatchNames(String batchName)(Code)



markValidationStatus
public void markValidationStatus(CollectorBatch batch, boolean validStatus)(Code)
Marks whether or not a batch is valid or not
Parameters:
  batch - collector batch from input xml
Parameters:
  validStatus - valid status fro batch



setBatchDetailScrubberErrors
public void setBatchDetailScrubberErrors(CollectorBatch batch, Map<CollectorDetail, List<Message>> errorsMap)(Code)
Stores the errors encountered trying to scrub the InterDepartmentalBilling records in the given batch. This method must be called after addBatch has been called with the same batch. Previously saved errors for this batch will be overwritten.
Parameters:
  batch - collector batch from input xml
Parameters:
  errorsMap - contains a map of all errors encountered while trying to scrub InterDepartmentalBilling records



setBatchOriginEntryScrubberErrors
public void setBatchOriginEntryScrubberErrors(CollectorBatch batch, Map<Transaction, List<Message>> errorsMap)(Code)
Stores the errors encountered trying to scrub the InterDepartmentalBilling records in the given batch. This method must be called after addBatch has been called with the same batch. Previously saved errors for this batch will be overwritten.
Parameters:
  batch - collector batch from input xml
Parameters:
  errorsMap -



setDemergerReportData
public void setDemergerReportData(CollectorBatch batch, DemergerReportData demergerReportData)(Code)



setEmailSendingStatusForParsedBatch
public void setEmailSendingStatusForParsedBatch(CollectorBatch batch, String emailStatus)(Code)



setLedgerEntryHolder
public void setLedgerEntryHolder(LedgerEntryHolder ledgerEntryHolder)(Code)
Sets the ledgerEntryHolder attribute value.
Parameters:
  ledgerEntryHolder - The ledgerEntryHolder to set.



setNumDetailAccountValuesChanged
public void setNumDetailAccountValuesChanged(CollectorBatch batch, Integer numDetailAccountValuesChanged)(Code)
Sets the number of times the details in a batch have had their account numbers changed
Parameters:
  batch - collector batch from input xml



setNumDetailDeleted
public void setNumDetailDeleted(CollectorBatch batch, Integer numDetailDeleted)(Code)



setNumInputDetails
public void setNumInputDetails(CollectorBatch batch)(Code)



setNumSavedDetails
public void setNumSavedDetails(CollectorBatch batch, Integer numSavedDetails)(Code)



setOriginEntryTotals
public void setOriginEntryTotals(CollectorBatch batch, OriginEntryTotals totals)(Code)



setScrubberReportData
public void setScrubberReportData(CollectorBatch batch, ScrubberReportData scrubberReportData)(Code)



setTotalsOnInputOriginEntriesAssociatedWithErrorGroup
public void setTotalsOnInputOriginEntriesAssociatedWithErrorGroup(CollectorBatch batch, Map<DocumentGroupData, OriginEntryTotals> totals)(Code)
Stores the totals or all origin entries in the input group that match the document group (doc #, doc type, origination code) of at least one origin entry in the error group, which is generated by the scrubber
Parameters:
  batch - collector batch from input xml
Parameters:
  totals - a map such that the key is a document group (doc #, doc type, origination code) and the value is the totals ofthe origin entry of all those



throwExceptionIfBatchNotAdded
protected void throwExceptionIfBatchNotAdded(CollectorBatch batch)(Code)
Throws exception if batch has not been added
Parameters:
  batch -



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(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.