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


org.kuali.module.gl.dao.OriginEntryDao

All known Subclasses:   org.kuali.module.gl.dao.ojb.OriginEntryDaoOjb,
OriginEntryDao
public interface OriginEntryDao (Code)


Field Summary
final public static  intSORT_ACCOUNT
    
final public static  intSORT_DOCUMENT
    
final public static  intSORT_LISTING_REPORT
    
final public static  intSORT_REPORT
    


Method Summary
public  voiddeleteEntry(OriginEntry oe)
    
public  voiddeleteGroups(Collection<OriginEntryGroup> groups)
     Delete all the groups in the list.
public  voiddeleteMatchingEntries(Map searchCriteria)
    
public  Iterator<OriginEntryFull>getBadBalanceEntries(Collection groups)
    
public  IteratorgetDocumentsByGroup(OriginEntryGroup oeg)
    
public  Iterator<T>getEntriesByGroup(OriginEntryGroup oeg, int sort)
    
public  OriginEntryFullgetExactMatchingEntry(Integer entryId)
    
public  IntegergetGroupCount(Integer groupId)
    
public  IteratorgetGroupCounts()
    
public  KualiDecimalgetGroupTotal(Integer groupId, boolean isCredit)
    
public  IteratorgetMatchingEntries(Map searchCriteria)
    
public  Collection<OriginEntryFull>getMatchingEntriesByCollection(Map searchCriteria)
    
public  IteratorgetPosterOutputSummaryByGroupId(Collection groups)
    
public  IteratorgetSummaryByGroupId(Collection groupIdList)
    
public  voidsaveOriginEntry(OriginEntry entry)
    
public  CollectiontestingGetAllEntries()
     This method should only be used in unit tests.

Field Detail
SORT_ACCOUNT
final public static int SORT_ACCOUNT(Code)
Sort origin entries by account number



SORT_DOCUMENT
final public static int SORT_DOCUMENT(Code)
Sort origin entries by document id



SORT_LISTING_REPORT
final public static int SORT_LISTING_REPORT(Code)
Sort origin entries by listing report order (by fiscal year, chart code, account number, etc.: the order you see them in in generated text files)



SORT_REPORT
final public static int SORT_REPORT(Code)
Sort origin entries by standard report order (by document type code and system origination code)





Method Detail
deleteEntry
public void deleteEntry(OriginEntry oe)(Code)
Delete an entry
Parameters:
  oe - Entry to delete



deleteGroups
public void deleteGroups(Collection<OriginEntryGroup> groups)(Code)
Delete all the groups in the list. This will delete the entries. The OriginEntryGroupDao has a method to delete the groups
Parameters:
  groups - a Collection of Origin Entry Groups to delete entries in



deleteMatchingEntries
public void deleteMatchingEntries(Map searchCriteria)(Code)
Delete entries that match criteria
Parameters:
  searchCriteria - Map of field, value pairs



getBadBalanceEntries
public Iterator<OriginEntryFull> getBadBalanceEntries(Collection groups)(Code)
Get bad balance entries; bad because a) they have invalid balance types, and b) because they revert the balances back to their stone age selves
Parameters:
  groups - a Collection of groups to remove bad entries in an Iterator of no good, won't use, bad balance entries



getDocumentsByGroup
public Iterator getDocumentsByGroup(OriginEntryGroup oeg)(Code)
Return an iterator to all document keys reference by origin entries in a given group
Parameters:
  oeg - Group the origin entry group to find entries in, by origin entry Iterator of java.lang.Object[] with report data about all of the distinct document numbers/type code/origination code combinations of origin entries in the group



getEntriesByGroup
public Iterator<T> getEntriesByGroup(OriginEntryGroup oeg, int sort)(Code)
Return an iterator to all the entries in a group
Parameters:
  oeg - the origin entry group to get entries in
Parameters:
  sort - the Sort Order (one of the Sort Orders defined by the SORT_ constants defined in this class) Iterator of entries in the specified group



getExactMatchingEntry
public OriginEntryFull getExactMatchingEntry(Integer entryId)(Code)
Finds an entry for the given entryId, or returns a newly created on
Parameters:
  entryId - an entry id to find an entry for the entry for the given entry id, or a newly created entry



getGroupCount
public Integer getGroupCount(Integer groupId)(Code)
Counts the number of entries in a group
Parameters:
  the - id of an origin entry group the count of the entries in that group



getGroupCounts
public Iterator getGroupCounts()(Code)
Counts of rows of all the origin entry groups iterator of Object[] {[BigDecimal id,BigDecimal count]}



getGroupTotal
public KualiDecimal getGroupTotal(Integer groupId, boolean isCredit)(Code)
Get the total amount of transactions in a group
Parameters:
  the - id of the origin entry group to total
Parameters:
  isCredit - whether the total should be of credits or not the sum of all queried origin entries



getMatchingEntries
public Iterator getMatchingEntries(Map searchCriteria)(Code)
Iterator of entries that match criteria
Parameters:
  searchCriteria - Map of field, value pairs collection of entries



getMatchingEntriesByCollection
public Collection<OriginEntryFull> getMatchingEntriesByCollection(Map searchCriteria)(Code)
Collection of entries that match criteria
Parameters:
  searchCriteria - Map of field, value pairs collection of entries



getPosterOutputSummaryByGroupId
public Iterator getPosterOutputSummaryByGroupId(Collection groups)(Code)
get the summarized information of poster input entries that belong to the entry groups with the given group id list
Parameters:
  groups - the origin entry groups a set of summarized information of poster input entries within the specified groups



getSummaryByGroupId
public Iterator getSummaryByGroupId(Collection groupIdList)(Code)
get the summarized information of the entries that belong to the entry groups with the given group ids
Parameters:
  groupIdList - the ids of origin entry groups a set of summarized information of the entries within the specified groups



saveOriginEntry
public void saveOriginEntry(OriginEntry entry)(Code)
Save origin entry
Parameters:
  entry - entry to save



testingGetAllEntries
public Collection testingGetAllEntries()(Code)
This method should only be used in unit tests. It loads all the gl_origin_entry_t rows in memory into a collection. This won't scale for production. a Collection with every single origin entry in the database



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