Java Doc for IContentRepository.java in  » Report » pentaho-report » org » pentaho » core » repository » 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 » Report » pentaho report » org.pentaho.core.repository 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.pentaho.core.repository.IContentRepository

All known Subclasses:   org.pentaho.repository.content.ContentRepository,
IContentRepository
public interface IContentRepository (Code)
The ContentRepository is responsible for all the DAO calls used to get content items out of a repository. This interface is used to create IContentLocation objects. The IContentLocation object can then be used to create child IContentItem objects.
author:
   mbatchel




Method Summary
public  intdeleteContentOlderThanDate(Date agingDate)
     This method is used to delete ContentItemFile objects that are older than the specified date.
Parameters:
  agingDate - Date to use for selecting items for deleting.
public  ListgetAllBackgroundExecutedContentItems(IPentahoSession session)
     Gets list of all content items in the Background Execution id list.
public  ListgetAllContentLocations()
    
public  ListgetBackgroundExecutedContentItemsForUser(IPentahoSession session)
     Gets list of Content Items from a users' background execution list.
public  IContentItemgetContentItemById(String theId)
     Gets a content item by id.
public  IContentItemgetContentItemByPath(String thePath)
    
public  IContentLocationgetContentLocationById(String theId)
     Retrieves a content location by Id.
public  IContentLocationgetContentLocationByPath(String thePath)
     Retrieves a content location by the path.
public  IBackgroundExecutedContentIdnewBackgroundExecutedContentId(IPentahoSession session, String contentId)
     Returns a new background executed content object
Parameters:
  session - Users' session object
Parameters:
  contentId - The content id to reference.
public  IContentLocationnewContentLocation(String thePath, String theName, String description, String solutionId, boolean createIfNotExists)
     Creates a new Content Location.
public  voidremoveBackgroundExecutedContentId(IPentahoSession session, String contentId)
    
public  ListsearchContentItemsForTerms(String searchTerm, int searchType)
    
public  ListsearchLocationsAndItemsForTerms(String searchTerm, int searchType)
     Content Location and Item finder - Simply aggregates the output of the searchLocationsForTerms and searchContentItemsForTerms.
public  ListsearchLocationsForTerms(String searchTerm, int searchType)
    
public  voidsetSession(IPentahoSession session)
    
Parameters:
  session - Sets the IPentahoSession Content Repository.



Method Detail
deleteContentOlderThanDate
public int deleteContentOlderThanDate(Date agingDate)(Code)
This method is used to delete ContentItemFile objects that are older than the specified date.
Parameters:
  agingDate - Date to use for selecting items for deleting. The argument isused as a "Less Than". The date is NOT inclusive. I.e., not"Less Than or Equal To". Count of content item files that were removed from the contentrepository and the file system.



getAllBackgroundExecutedContentItems
public List getAllBackgroundExecutedContentItems(IPentahoSession session)(Code)
Gets list of all content items in the Background Execution id list. Should only be used in an administrative capacity
Parameters:
  session - Users session List of IContentItem objects



getAllContentLocations
public List getAllContentLocations()(Code)
A list of all content locations



getBackgroundExecutedContentItemsForUser
public List getBackgroundExecutedContentItemsForUser(IPentahoSession session)(Code)
Gets list of Content Items from a users' background execution list.
Parameters:
  session - The users' session List of IContentItem objects



getContentItemById
public IContentItem getContentItemById(String theId)(Code)
Gets a content item by id. This is the most efficient way to retrieve a content item.
Parameters:
  id - The id of the content item to find The Content Item with the specified path



getContentItemByPath
public IContentItem getContentItemByPath(String thePath)(Code)
Gets a content item by path
Parameters:
  thePath - The path of the content item to find The Content Item with the specified path



getContentLocationById
public IContentLocation getContentLocationById(String theId)(Code)
Retrieves a content location by Id. This is the most efficient way to retrieve a content location
Parameters:
  theId - The Id to retrieve The content location



getContentLocationByPath
public IContentLocation getContentLocationByPath(String thePath) throws RepositoryException(Code)
Retrieves a content location by the path.
Parameters:
  thePath - The path to search for The content location
throws:
  RepositoryException -



newBackgroundExecutedContentId
public IBackgroundExecutedContentId newBackgroundExecutedContentId(IPentahoSession session, String contentId)(Code)
Returns a new background executed content object
Parameters:
  session - Users' session object
Parameters:
  contentId - The content id to reference. new BackgroundExecutedContent



newContentLocation
public IContentLocation newContentLocation(String thePath, String theName, String description, String solutionId, boolean createIfNotExists) throws RepositoryException(Code)
Creates a new Content Location. A content location is analogous to a folder
Parameters:
  thePath - The path
Parameters:
  theName - The name of the location
Parameters:
  description - The description of the location
Parameters:
  solutionId - The Id of the solution
Parameters:
  createIfNotExists - Attempt to create the physical folder on the hard drive The new content location
throws:
  RepositoryException -



removeBackgroundExecutedContentId
public void removeBackgroundExecutedContentId(IPentahoSession session, String contentId)(Code)
Removes an ID from the background executed content Id list
Parameters:
  session - Users' session
Parameters:
  contentId - The content id to remove.



searchContentItemsForTerms
public List searchContentItemsForTerms(String searchTerm, int searchType)(Code)
Content Item finder - searches for the terms amongst content items
Parameters:
  searchTerm - The search term(s) to find
Parameters:
  searchType -
See Also:   org.pentaho.repository.ISearchable List of matching Content Items.



searchLocationsAndItemsForTerms
public List searchLocationsAndItemsForTerms(String searchTerm, int searchType)(Code)
Content Location and Item finder - Simply aggregates the output of the searchLocationsForTerms and searchContentItemsForTerms.
Parameters:
  searchTerm - The search term(s) to find
Parameters:
  searchType -
See Also:   org.pentaho.repository.ISearchable List of matching Content Locations first, followed by ContentItems.



searchLocationsForTerms
public List searchLocationsForTerms(String searchTerm, int searchType)(Code)
Content Location finder - searches for the terms amongst the content locations
Parameters:
  searchTerm - The search term(s) to find
Parameters:
  searchType -
See Also:   org.pentaho.repository.ISearchable List of matching Content Locations.



setSession
public void setSession(IPentahoSession session)(Code)

Parameters:
  session - Sets the IPentahoSession Content Repository. This also beginsthe Hibernate transaction.



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