Java Doc for SiteStructure.java in  » Content-Management-System » apache-lenya-2.0 » org » apache » lenya » cms » site » 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 » Content Management System » apache lenya 2.0 » org.apache.lenya.cms.site 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.apache.lenya.cms.site.SiteStructure

All known Subclasses:   org.apache.lenya.cms.site.tree2.SiteTreeImpl,  org.apache.lenya.cms.site.simple.DocumentStore,  org.apache.lenya.cms.site.tree2.DelegatingSiteTree,
SiteStructure
public interface SiteStructure extends RepositoryItem(Code)
Object to hold a site structure information.
version:
   $Id: SiteStructure.java 487598 2006-12-15 17:01:14Z andreas $




Method Summary
 Linkadd(String path, Document doc)
     Adds a link to a document.
Parameters:
  path - The path.
Parameters:
  doc - The document.
 SiteNodeadd(String path)
     Adds a site node.
Parameters:
  path - The path.
 SiteNodeadd(String path, String followingSiblingPath)
     Adds a site node before a specific other node.
Parameters:
  path - The path.
Parameters:
  followingSiblingPath - The path of the node which will be thefollowing sibling of the node to insert.
 booleancontains(String path)
     Checks if a node is contained for a certain path.
Parameters:
  path - The path.
 booleancontains(String path, String language)
     Checks if a link is contained for a certain path and language.
Parameters:
  path - The path.
Parameters:
  language - The language.
 booleancontainsByUuid(String uuid, String language)
     Checks if the structure contains a link with a certain UUID and language.
Parameters:
  uuid - The UUID.
Parameters:
  language - The language.
 booleancontainsInAnyLanguage(String uuid)
     Checks if the structure contains any language version of a document.
Parameters:
  uuid - The uuid.
 StringgetArea()
    
 LinkgetByUuid(String uuid, String language)
     Returns a node for a certain UUID.
Parameters:
  uuid - The UUID.
Parameters:
  language - The language.
 SiteNodegetNode(String path)
    
Parameters:
  path - The path.
 SiteNode[]getNodes()
    
 PublicationgetPublication()
    
 NodegetRepositoryNode()
    
 SiteNode[]getTopLevelNodes()
    



Method Detail
add
Link add(String path, Document doc) throws SiteException(Code)
Adds a link to a document.
Parameters:
  path - The path.
Parameters:
  doc - The document. A link.
throws:
  SiteException - if the document is already contained or the nodefor this path already contains a link for this language.



add
SiteNode add(String path) throws SiteException(Code)
Adds a site node.
Parameters:
  path - The path. A site node.
throws:
  SiteException - if the path is already contained.



add
SiteNode add(String path, String followingSiblingPath) throws SiteException(Code)
Adds a site node before a specific other node.
Parameters:
  path - The path.
Parameters:
  followingSiblingPath - The path of the node which will be thefollowing sibling of the node to insert. A site node.
throws:
  SiteException - if the path is already contained.



contains
boolean contains(String path)(Code)
Checks if a node is contained for a certain path.
Parameters:
  path - The path. A boolean value.



contains
boolean contains(String path, String language)(Code)
Checks if a link is contained for a certain path and language.
Parameters:
  path - The path.
Parameters:
  language - The language. A boolean value.



containsByUuid
boolean containsByUuid(String uuid, String language)(Code)
Checks if the structure contains a link with a certain UUID and language.
Parameters:
  uuid - The UUID.
Parameters:
  language - The language. A boolean value.



containsInAnyLanguage
boolean containsInAnyLanguage(String uuid)(Code)
Checks if the structure contains any language version of a document.
Parameters:
  uuid - The uuid. A boolean value.



getArea
String getArea()(Code)
The area.



getByUuid
Link getByUuid(String uuid, String language) throws SiteException(Code)
Returns a node for a certain UUID.
Parameters:
  uuid - The UUID.
Parameters:
  language - The language. a link.
throws:
  SiteException - if no node is contained for the UUID.



getNode
SiteNode getNode(String path) throws SiteException(Code)

Parameters:
  path - The path. A site node.
throws:
  SiteException - if no node is contained for the path.



getNodes
SiteNode[] getNodes()(Code)
All nodes in this structure.



getPublication
Publication getPublication()(Code)
The publication.



getRepositoryNode
Node getRepositoryNode()(Code)
The repository node the site structure is stored in.



getTopLevelNodes
SiteNode[] getTopLevelNodes()(Code)
The top level nodes.



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