Java Doc for FolderPermission.java in  » Portal » jetspeed-2.1.3 » org » apache » jetspeed » security » 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 » jetspeed 2.1.3 » org.apache.jetspeed.security 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.security.Permission
      org.apache.jetspeed.security.PortalResourcePermission
         org.apache.jetspeed.security.FolderPermission

FolderPermission
public class FolderPermission extends PortalResourcePermission (Code)

Folder permission.

This code was partially inspired from:

This class represents access to a portal content/folder or document. A FolderPermission consists of a pathname and a set of actions valid for that pathname.

Pathname is the pathname of the folder or document granted the specified actions. A pathname that ends in "/*" (where "/" is the separator character) indicates all the folders and documents contained in that folder. A pathname that ends with "/-" indicates (recursively) all documents and subfolders contained in that directory. A pathname consisting of the special token "<<ALL FILES>>" matches any folder or document.


author:
   David Sean Taylor
author:
   Christophe Lombart
version:
   $Id: FolderPermission.java 516448 2007-03-09 16:25:47Z ate $



Field Summary
final public static  charFOLDER_SEPARATOR
    
final public static  StringFOLDER_SEPARATOR_STR
    
final public static  charRECURSIVE_CHAR
    
final public static  charWILD_CHAR
    
final public static  StringWILD_CHAR_STR
    

Constructor Summary
public  FolderPermission(String name, String actions)
    
public  FolderPermission(String name, int mask)
    

Method Summary
public  booleanequals(Object obj)
     Checks two FolderPermission objects for equality.
public  inthashCode()
     Returns the hash code value for this object.
public  booleanimplies(Permission p)
     Checks if this FolderPermission object "implies" the specified permission.

More specifically, this method returns true if:

  • p is an instanceof FolderPermission,

  • p's actions are a proper subset of this object's actions, and

  • p's pathname is implied by this object's pathname.
 booleanimpliesIgnoreMask(FolderPermission that)
     Checks if the Permission's actions are a proper subset of the this object's actions.

Field Detail
FOLDER_SEPARATOR
final public static char FOLDER_SEPARATOR(Code)



FOLDER_SEPARATOR_STR
final public static String FOLDER_SEPARATOR_STR(Code)



RECURSIVE_CHAR
final public static char RECURSIVE_CHAR(Code)



WILD_CHAR
final public static char WILD_CHAR(Code)



WILD_CHAR_STR
final public static String WILD_CHAR_STR(Code)




Constructor Detail
FolderPermission
public FolderPermission(String name, String actions)(Code)

Constructor for FolderPermission.


Parameters:
  name - The portlet name.
Parameters:
  actions - The actions on the portlet.



FolderPermission
public FolderPermission(String name, int mask)(Code)

Constructor for FolderPermission.


Parameters:
  name - The portlet name.
Parameters:
  mask - The mask of actions on the portlet.




Method Detail
equals
public boolean equals(Object obj)(Code)
Checks two FolderPermission objects for equality. Checks that obj is a FolderPermission, and has the same pathname and actions as this object.


Parameters:
  obj - the object we are testing for equality with this object. true if obj is a FolderPermission, and has the same pathname andactions as this FolderPermission object.




hashCode
public int hashCode()(Code)
Returns the hash code value for this object. a hash code value for this object.



implies
public boolean implies(Permission p)(Code)
Checks if this FolderPermission object "implies" the specified permission.

More specifically, this method returns true if:

  • p is an instanceof FolderPermission,

  • p's actions are a proper subset of this object's actions, and

  • p's pathname is implied by this object's pathname. For example, "/tmp/*" implies "/tmp/foo", since "/tmp/*" encompasses the "/tmp" folder and all subfolders or documents in that directory, including the one named "foo".

Parameters:
  p - the permission to check against. true if the specified permission is implied by this object,false if not.



impliesIgnoreMask
boolean impliesIgnoreMask(FolderPermission that)(Code)
Checks if the Permission's actions are a proper subset of the this object's actions. Returns the effective mask iff the this FolderPermission's path also implies that FolderPermission's path.
Parameters:
  that - the FolderPermission to check against. the effective mask



Fields inherited from org.apache.jetspeed.security.PortalResourcePermission
final protected int mask(Code)(Java Doc)

Methods inherited from org.apache.jetspeed.security.PortalResourcePermission
public String getActions()(Code)(Java Doc)
public int hashCode()(Code)(Java Doc)
public boolean implies(Permission permission)(Code)(Java Doc)
public PermissionCollection newPermissionCollection()(Code)(Java Doc)
public static int parseActions(String actions)(Code)(Java Doc)

Methods inherited from java.security.Permission
public void checkGuard(Object object) throws SecurityException(Code)(Java Doc)
abstract public boolean equals(Object obj)(Code)(Java Doc)
abstract public String getActions()(Code)(Java Doc)
final public String getName()(Code)(Java Doc)
abstract public int hashCode()(Code)(Java Doc)
abstract public boolean implies(Permission permission)(Code)(Java Doc)
public PermissionCollection newPermissionCollection()(Code)(Java Doc)
public String toString()(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

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