Java Doc for CallData.java in  » Content-Management-System » contelligent » de » finix » contelligent » 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 » contelligent » de.finix.contelligent 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


de.finix.contelligent.CallData

All known Subclasses:   de.finix.contelligent.core.AbstractCallDataImpl,
CallData
public interface CallData (Code)
This interface provides access to all the data which are necessary to resolve components and their values.




Method Summary
public  booleancheckRenderStack(ComponentPath cp)
     Returns true if a likely recursion of the provided ComponentPath has been detected in the render stack.
 voidclearRequestStorageDomain(String storageKey)
    
 voidclearSessionStorageDomain(String storageKey)
    
 voidclearSessionStore()
    
public  VectorcloneRenderStack()
     Generates a copy of the current render stack.
 ObjectdoAsSystem(PrivilegedExceptionAction action)
    
 StringencodeRedirectURL(String url)
    
 StringencodeURL(String url)
    
 ComponentManagergetActualManager()
    
 StringgetBaseURL()
    
 StringgetBaseURL(boolean useHttpAuth)
    
 MapgetCategoryMap()
    
 SessiongetContelligentSession()
    
public  Cookie[]getCookies()
     If the underlying transport supports cookies, this method returns them as an array, otherwise it returns null.
 StringgetCurrentBaseURL()
    
 StringgetCurrentBaseURL(boolean forceProtocolHttp, boolean forceProtocolHttps, boolean forceHttpAuth, boolean forceWebAuth)
    
public  StringgetEnvironment()
    
public  StringgetEnvironment(String defaultEnvironment)
    
 FileItemgetFileItem(String source)
    
 MapgetFileParameters()
    
 ListgetLocales()
     Answer the list of locales accepted by the client.
 StringgetParameter(String key)
    
 String[]getParameterValues(String key)
    
 MapgetParameters()
    
public  StringgetRawEnvironment()
    
 ObjectgetRequestAttribute(String key)
    
 ObjectgetRequestAttribute(String key, String storageKey)
    
public  longgetRequestTimeStamp()
    
 MapgetResultDataMap()
    
 StringgetSecureBaseURL()
    
 StringgetSecureBaseURL(boolean useHttpAuth)
    
 ObjectgetSessionAttribute(String key)
    
 ObjectgetSessionAttribute(String key, String storageKey)
    
 MapgetSessionStore()
    
 ContelligentgetSystem()
    
 UsergetUser()
    
 booleanisCurrentHttpAuth()
    
 booleanisCurrentProtocolHttps()
    
 voidmarkForRollback()
     marks the current transaction for rollback.
public  ComponentPathpopRenderStack()
    
public  voidpushRenderStack(ComponentPath cp)
    
 voidremoveRequestAttribute(String key)
    
 voidremoveRequestAttribute(String key, String storageKey)
    
 voidremoveSessionAttribute(String key)
    
 voidremoveSessionAttribute(String key, String storageKey)
    
 booleansecureTransfer()
     Answer wether the request uses a secure transfer protocol (e.g.
 voidsetCategoryMap(Map categoryMap)
    
 voidsetParameters(Map parameters)
    
 voidsetRequestAttribute(String key, Object value)
     Store an attribute with request scope in the global (nameless) storage domain.
 voidsetRequestAttribute(String key, Object value, String storageKey)
     Store an attribute with request scope in the given storage domain.
 voidsetSessionAttribute(String key, Object value)
    
 voidsetSessionAttribute(String key, Object value, String storageKey)
    
 booleanshouldCheckRelations()
    
 booleantxMarkedForRollback()
    



Method Detail
checkRenderStack
public boolean checkRenderStack(ComponentPath cp)(Code)
Returns true if a likely recursion of the provided ComponentPath has been detected in the render stack.



clearRequestStorageDomain
void clearRequestStorageDomain(String storageKey)(Code)



clearSessionStorageDomain
void clearSessionStorageDomain(String storageKey)(Code)



clearSessionStore
void clearSessionStore()(Code)



cloneRenderStack
public Vector cloneRenderStack()(Code)
Generates a copy of the current render stack.



doAsSystem
Object doAsSystem(PrivilegedExceptionAction action) throws Exception(Code)



encodeRedirectURL
String encodeRedirectURL(String url)(Code)



encodeURL
String encodeURL(String url)(Code)
Encode the given url and add the session id if necessary
Parameters:
  url -



getActualManager
ComponentManager getActualManager()(Code)



getBaseURL
String getBaseURL()(Code)



getBaseURL
String getBaseURL(boolean useHttpAuth)(Code)



getCategoryMap
Map getCategoryMap()(Code)
Answer the category map valid for this request



getContelligentSession
Session getContelligentSession()(Code)



getCookies
public Cookie[] getCookies()(Code)
If the underlying transport supports cookies, this method returns them as an array, otherwise it returns null. It also returns null if cookies are supported, but none are present.



getCurrentBaseURL
String getCurrentBaseURL()(Code)



getCurrentBaseURL
String getCurrentBaseURL(boolean forceProtocolHttp, boolean forceProtocolHttps, boolean forceHttpAuth, boolean forceWebAuth)(Code)



getEnvironment
public String getEnvironment()(Code)



getEnvironment
public String getEnvironment(String defaultEnvironment)(Code)



getFileItem
FileItem getFileItem(String source)(Code)



getFileParameters
Map getFileParameters()(Code)



getLocales
List getLocales()(Code)
Answer the list of locales accepted by the client.



getParameter
String getParameter(String key)(Code)



getParameterValues
String[] getParameterValues(String key)(Code)



getParameters
Map getParameters()(Code)



getRawEnvironment
public String getRawEnvironment()(Code)



getRequestAttribute
Object getRequestAttribute(String key)(Code)



getRequestAttribute
Object getRequestAttribute(String key, String storageKey)(Code)



getRequestTimeStamp
public long getRequestTimeStamp()(Code)



getResultDataMap
Map getResultDataMap()(Code)



getSecureBaseURL
String getSecureBaseURL()(Code)



getSecureBaseURL
String getSecureBaseURL(boolean useHttpAuth)(Code)



getSessionAttribute
Object getSessionAttribute(String key)(Code)



getSessionAttribute
Object getSessionAttribute(String key, String storageKey)(Code)



getSessionStore
Map getSessionStore()(Code)



getSystem
Contelligent getSystem()(Code)



getUser
User getUser()(Code)



isCurrentHttpAuth
boolean isCurrentHttpAuth()(Code)



isCurrentProtocolHttps
boolean isCurrentProtocolHttps()(Code)



markForRollback
void markForRollback()(Code)
marks the current transaction for rollback.



popRenderStack
public ComponentPath popRenderStack()(Code)



pushRenderStack
public void pushRenderStack(ComponentPath cp)(Code)



removeRequestAttribute
void removeRequestAttribute(String key)(Code)



removeRequestAttribute
void removeRequestAttribute(String key, String storageKey)(Code)



removeSessionAttribute
void removeSessionAttribute(String key)(Code)



removeSessionAttribute
void removeSessionAttribute(String key, String storageKey)(Code)



secureTransfer
boolean secureTransfer()(Code)
Answer wether the request uses a secure transfer protocol (e.g. SSL/TLS)



setCategoryMap
void setCategoryMap(Map categoryMap)(Code)



setParameters
void setParameters(Map parameters)(Code)



setRequestAttribute
void setRequestAttribute(String key, Object value)(Code)
Store an attribute with request scope in the global (nameless) storage domain.
Parameters:
  key - attribute name
Parameters:
  value - attribute value



setRequestAttribute
void setRequestAttribute(String key, Object value, String storageKey)(Code)
Store an attribute with request scope in the given storage domain.
Parameters:
  key - attribute name
Parameters:
  value - attribute value
Parameters:
  storageKey - name of the storage domain



setSessionAttribute
void setSessionAttribute(String key, Object value)(Code)



setSessionAttribute
void setSessionAttribute(String key, Object value, String storageKey)(Code)



shouldCheckRelations
boolean shouldCheckRelations()(Code)



txMarkedForRollback
boolean txMarkedForRollback()(Code)



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