Java Doc for IContentLocation.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.IContentLocation

All known Subclasses:   org.pentaho.repository.content.ContentLocation,
IContentLocation
public interface IContentLocation (Code)
A Content location is analagous to a folder. It is the location of the content.
See Also:   IContentItem
See Also:   IContentRepository
author:
   mbatchel




Method Summary
public  IContentItemgetContentItemById(String contentItemId)
    
public  IContentItemgetContentItemByName(String name)
     Gets a child content item by name.
public  IContentItemgetContentItemByPath(String path)
    
public  IteratorgetContentItemIterator()
     Iterates over registered content items.
public  StringgetDescription()
    
public  StringgetDirPath()
    
public  StringgetId()
    
public  StringgetName()
    
public  intgetRevision()
    
public  StringgetSolutionId()
    
public  FilegetTmpFile(String fileSuffix)
     Gets a temporary file in the location.
Parameters:
  fileSuffix - What the file suffix should be.
public  FilegetTmpFile(String fileSuffix, boolean deleteOnExit)
     Gets a temporary file in the location.
Parameters:
  fileSuffix - What the file suffix should be.
public  FilemakeSubdirectory(String subDirName)
     Creates a subdirectory in the content location.
public  IContentItemnewContentItem(String name, String title, String extension, String mimeType, String url, int writeMode)
     Create a new ContentItem parented to this content location.
Parameters:
  name - The name of the content item
Parameters:
  title - The title of the content item
Parameters:
  extension - The extension (i.e.
public  IContentItemnewContentItem(String contentId, String name, String title, String extension, String mimeType, String url, int writeMode)
     Create a new ContentItem parented to this content location.



Method Detail
getContentItemById
public IContentItem getContentItemById(String contentItemId)(Code)
Gets a content item by its Id - this is the most efficient way to get a content item from a location
Parameters:
  contentItemId - The id to retrieve The content item



getContentItemByName
public IContentItem getContentItemByName(String name)(Code)
Gets a child content item by name. Returns the ContentItem with the specified name, and a parent of the content location
Parameters:
  name - The name to find ContentItem



getContentItemByPath
public IContentItem getContentItemByPath(String path)(Code)
Returns the contentitem with the specified path
Parameters:
  path - The path to look for The content item



getContentItemIterator
public Iterator getContentItemIterator()(Code)
Iterates over registered content items. Iterator of the child content



getDescription
public String getDescription()(Code)
The description of the Content Location



getDirPath
public String getDirPath()(Code)
The directory path



getId
public String getId()(Code)
Returns the UUID of the content location



getName
public String getName()(Code)
The name of the content location



getRevision
public int getRevision()(Code)
The revision of the content item (as determined by Hibernate)



getSolutionId
public String getSolutionId()(Code)
The Solution Id



getTmpFile
public File getTmpFile(String fileSuffix) throws ContentException(Code)
Gets a temporary file in the location.
Parameters:
  fileSuffix - What the file suffix should be. If null, then .tmp will beused. File that is unique within the directory inside this location.
throws:
  ContentException -



getTmpFile
public File getTmpFile(String fileSuffix, boolean deleteOnExit) throws ContentException(Code)
Gets a temporary file in the location.
Parameters:
  fileSuffix - What the file suffix should be. If null, then .tmp will beused.
Parameters:
  deleteOnExit - If true, will call the files' deleteOnExit method which willattempt to delete the file on VM termination. File that is unique within the directory inside this location.
throws:
  ContentException -



makeSubdirectory
public File makeSubdirectory(String subDirName) throws ContentException(Code)
Creates a subdirectory in the content location.
Parameters:
  subDirName - The directory name to create File created
throws:
  ContentException -



newContentItem
public IContentItem newContentItem(String name, String title, String extension, String mimeType, String url, int writeMode) throws ContentException(Code)
Create a new ContentItem parented to this content location.
Parameters:
  name - The name of the content item
Parameters:
  title - The title of the content item
Parameters:
  extension - The extension (i.e. .txt or .pdf) of the content item.
Parameters:
  mimeType - The mime type of the content item
Parameters:
  url - Optional URL to get to the content.
Parameters:
  writeMode - The write mode of the content item. Please see IContentItemfor valid write modes A new IContentItem instance, parented to the ContentLocation
throws:
  ContentException -



newContentItem
public IContentItem newContentItem(String contentId, String name, String title, String extension, String mimeType, String url, int writeMode) throws ContentException(Code)
Create a new ContentItem parented to this content location. This version is used when the content Id is already generated.
Parameters:
  contentId - The Identifier for the new content item
Parameters:
  name - The name of the content item
Parameters:
  title - The title of the content item
Parameters:
  extension - The extension (i.e. .txt or .pdf) of the content item.
Parameters:
  mimeType - The mime type of the content item
Parameters:
  url - Optional URL to get to the content.
Parameters:
  writeMode - The write mode of the content item. Please see IContentItemfor valid write modes A new IContentItem instance, parented to the ContentLocation
throws:
  ContentException -



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