Source Code Cross Referenced for IALNodeProperties.java in  » Portal » uPortal_rel-2-6-1-GA » org » jasig » portal » layout » alm » 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 » Portal » uPortal_rel 2 6 1 GA » org.jasig.portal.layout.alm 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /* Copyright 2002 The JA-SIG Collaborative.  All rights reserved.
002:         *  See license distributed with this file and
003:         *  available online at http://www.uportal.org/license.html
004:         */
005:
006:        package org.jasig.portal.layout.alm;
007:
008:        import java.util.Hashtable;
009:        import java.util.Vector;
010:
011:        import org.jasig.portal.layout.restrictions.IUserLayoutRestriction;
012:        import org.w3c.dom.Document;
013:        import org.w3c.dom.Element;
014:
015:        /**
016:         * An interface describing methods common to the Aggregated Layout node descriptions.
017:         * 
018:         * Prior to uPortal 2.5, this class existed in the package org.jasig.portal.layout.
019:         * It was moved to its present package to reflect that it is part of Aggregated
020:         * Layouts.
021:         *
022:         * @author Peter Kharchenko  {@link <a href="mailto:pkharchenko@interactivebusiness.com"">pkharchenko@interactivebusiness.com"</a>}
023:         * @version 1.0 $Revision: 36690 $ $Date: 2006-08-25 14:03:25 -0700 (Fri, 25 Aug 2006) $
024:         */
025:        public interface IALNodeProperties {
026:
027:            /**
028:             * Set fragment id
029:             *
030:             * @param fragmentId a <code>String</code> value
031:             */
032:            public void setFragmentId(String fragmentId);
033:
034:            /**
035:             * Get fragment id
036:             *
037:             * @return a <code>String</code> value
038:             */
039:            public String getFragmentId();
040:
041:            /**
042:             * Set fragment node id
043:             *
044:             * @param fragmentNodeId a <code>String</code> value
045:             */
046:            public void setFragmentNodeId(String fragmentNodeId);
047:
048:            /**
049:             * Get fragment node id
050:             *
051:             * @return a <code>String</code> value
052:             */
053:            public String getFragmentNodeId();
054:
055:            /**
056:             * Sets the group identificator for this node.
057:             * @param group a <code>String</code> group identificator value
058:             */
059:            public void setGroup(String group);
060:
061:            /**
062:             * Gets the priority value for this node.
063:             */
064:            public String getGroup();
065:
066:            /**
067:             * Sets the hashtable of restrictions bound to this node
068:             * @param restrictions a <code>Hashtable</code> of restriction expressions
069:             */
070:            public void setRestrictions(Hashtable restrictions);
071:
072:            /**
073:             * Gets the hashtable of restrictions bound to this node
074:             * @return a set of restriction expressions
075:             */
076:            public Hashtable getRestrictions();
077:
078:            /**
079:             * Adds the restriction for this node.
080:             * @param restriction a <code>IUserLayoutRestriction</code> a restriction
081:             */
082:            public void addRestriction(IUserLayoutRestriction restriction);
083:
084:            /**
085:             * Gets a restriction by the type.
086:             * @param restrictionName a <code>String</code>  name of the restriction
087:             * @return a IUserLayoutRestriction
088:             */
089:            public IUserLayoutRestriction getRestriction(String restrictionName);
090:
091:            /**
092:             * Gets a restrictions list by a restriction path.
093:             * @param restrictionPath a <code>String</code> restriction path
094:             * @return a IUserLayoutRestriction
095:             */
096:            public Vector getRestrictionsByPath(String restrictionPath);
097:
098:            public void addRestrictionChildren(Element node, Document root);
099:
100:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.