Java Doc for JtracDao.java in  » Issue-Tracking » jTrac » info » jtrac » 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 » Issue Tracking » jTrac » info.jtrac 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


info.jtrac.JtracDao

All known Subclasses:   info.jtrac.hibernate.HibernateJtracDao,
JtracDao
public interface JtracDao (Code)
Jtrac DAO Interface all database access operations




Method Summary
 intbulkUpdateDeleteItemsForSpace(Space space)
    
 intbulkUpdateDeleteSpaceRole(Space space, String roleKey)
    
 intbulkUpdateFieldToNull(Space space, Field field)
    
 intbulkUpdateFieldToNullForValue(Space space, Field field, int optionKey)
    
 intbulkUpdateRenameSpaceRole(Space space, String oldRoleKey, String newRoleKey)
    
 intbulkUpdateStatusToOpen(Space space, int status)
    
 List<Config>findAllConfig()
    
 List<AbstractItem>findAllItems()
    
 List<Space>findAllSpaces()
    
 List<User>findAllUsers()
    
 List<Item>findItems(long sequenceNum, String prefixCode)
    
 List<Item>findItems(ItemSearch itemSearch)
    
 List<Space>findSpacesByPrefixCode(String prefixCode)
    
 List<Space>findSpacesWhereGuestAllowed()
    
 List<UserSpaceRole>findUserRolesForSpace(long spaceId)
    
 List<User>findUsersByEmail(String email)
    
 List<User>findUsersByLoginName(String loginName)
    
 List<User>findUsersForSpace(long spaceId)
    
 List<User>findUsersForSpaceSet(Collection<Space> spaces)
    
 List<User>findUsersMatching(String searchText, String searchOn)
    
 List<User>findUsersWithRoleForSpace(long spaceId, String roleKey)
    
 ConfigloadConfig(String key)
    
 intloadCountOfHistoryInvolvingUser(User user)
    
 intloadCountOfRecordsHavingFieldNotNull(Space space, Field field)
    
 intloadCountOfRecordsHavingFieldWithValue(Space space, Field field, int optionKey)
    
 intloadCountOfRecordsHavingStatus(Space space, int status)
    
 CountsHolderloadCountsForUser(User user)
    
 CountsloadCountsForUserSpace(User user, Space space)
    
 HistoryloadHistory(long id)
    
 ItemloadItem(long id)
    
 MetadataloadMetadata(long id)
    
 SpaceloadSpace(long id)
    
 SpaceSequenceloadSpaceSequence(long id)
    
 UserloadUser(long id)
    
 UserSpaceRoleloadUserSpaceRole(long id)
    
 voidremoveItem(Item item)
    
 voidremoveItemItem(ItemItem itemItem)
    
 voidremoveSpace(Space space)
    
 voidremoveUser(User user)
    
 voidremoveUserSpaceRole(UserSpaceRole userSpaceRole)
    
 voidstoreAttachment(Attachment attachment)
    
 voidstoreConfig(Config config)
    
 voidstoreHistory(History history)
    
 voidstoreItem(Item item)
    
 voidstoreMetadata(Metadata metadata)
    
 voidstoreSpace(Space space)
    
 voidstoreSpaceSequence(SpaceSequence spaceSequence)
    
 voidstoreUser(User user)
    



Method Detail
bulkUpdateDeleteItemsForSpace
int bulkUpdateDeleteItemsForSpace(Space space)(Code)



bulkUpdateDeleteSpaceRole
int bulkUpdateDeleteSpaceRole(Space space, String roleKey)(Code)



bulkUpdateFieldToNull
int bulkUpdateFieldToNull(Space space, Field field)(Code)



bulkUpdateFieldToNullForValue
int bulkUpdateFieldToNullForValue(Space space, Field field, int optionKey)(Code)



bulkUpdateRenameSpaceRole
int bulkUpdateRenameSpaceRole(Space space, String oldRoleKey, String newRoleKey)(Code)



bulkUpdateStatusToOpen
int bulkUpdateStatusToOpen(Space space, int status)(Code)



findAllConfig
List<Config> findAllConfig()(Code)



findAllItems
List<AbstractItem> findAllItems()(Code)



findAllSpaces
List<Space> findAllSpaces()(Code)



findAllUsers
List<User> findAllUsers()(Code)



findItems
List<Item> findItems(long sequenceNum, String prefixCode)(Code)



findItems
List<Item> findItems(ItemSearch itemSearch)(Code)



findSpacesByPrefixCode
List<Space> findSpacesByPrefixCode(String prefixCode)(Code)



findSpacesWhereGuestAllowed
List<Space> findSpacesWhereGuestAllowed()(Code)



findUserRolesForSpace
List<UserSpaceRole> findUserRolesForSpace(long spaceId)(Code)



findUsersByEmail
List<User> findUsersByEmail(String email)(Code)



findUsersByLoginName
List<User> findUsersByLoginName(String loginName)(Code)



findUsersForSpace
List<User> findUsersForSpace(long spaceId)(Code)



findUsersForSpaceSet
List<User> findUsersForSpaceSet(Collection<Space> spaces)(Code)



findUsersMatching
List<User> findUsersMatching(String searchText, String searchOn)(Code)



findUsersWithRoleForSpace
List<User> findUsersWithRoleForSpace(long spaceId, String roleKey)(Code)



loadConfig
Config loadConfig(String key)(Code)



loadCountOfHistoryInvolvingUser
int loadCountOfHistoryInvolvingUser(User user)(Code)



loadCountOfRecordsHavingFieldNotNull
int loadCountOfRecordsHavingFieldNotNull(Space space, Field field)(Code)



loadCountOfRecordsHavingFieldWithValue
int loadCountOfRecordsHavingFieldWithValue(Space space, Field field, int optionKey)(Code)



loadCountOfRecordsHavingStatus
int loadCountOfRecordsHavingStatus(Space space, int status)(Code)



loadCountsForUser
CountsHolder loadCountsForUser(User user)(Code)



loadCountsForUserSpace
Counts loadCountsForUserSpace(User user, Space space)(Code)



loadHistory
History loadHistory(long id)(Code)



loadItem
Item loadItem(long id)(Code)



loadMetadata
Metadata loadMetadata(long id)(Code)



loadSpace
Space loadSpace(long id)(Code)



loadSpaceSequence
SpaceSequence loadSpaceSequence(long id)(Code)



loadUser
User loadUser(long id)(Code)



loadUserSpaceRole
UserSpaceRole loadUserSpaceRole(long id)(Code)



removeItem
void removeItem(Item item)(Code)



removeItemItem
void removeItemItem(ItemItem itemItem)(Code)



removeSpace
void removeSpace(Space space)(Code)



removeUser
void removeUser(User user)(Code)



removeUserSpaceRole
void removeUserSpaceRole(UserSpaceRole userSpaceRole)(Code)



storeAttachment
void storeAttachment(Attachment attachment)(Code)



storeConfig
void storeConfig(Config config)(Code)



storeHistory
void storeHistory(History history)(Code)



storeItem
void storeItem(Item item)(Code)



storeMetadata
void storeMetadata(Metadata metadata)(Code)



storeSpace
void storeSpace(Space space)(Code)



storeSpaceSequence
void storeSpaceSequence(SpaceSequence spaceSequence)(Code)



storeUser
void storeUser(User user)(Code)



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