Java Doc for RequestParameters.java in  » J2EE » wicket » org » apache » wicket » request » 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 » J2EE » wicket » org.apache.wicket.request 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.wicket.request.RequestParameters

RequestParameters
public class RequestParameters implements IClusterable(Code)

Object that abstracts common request parameters. It consists of possible optional parameters that can be translated from e.g. servlet request parameters and serves of a strongly typed variant of these that is to be created by the org.apache.wicket.request.IRequestCycleProcessor 's org.apache.wicket.request.IRequestCodingStrategy .

Though this object can be extended and hence more parameter options can be used, anything other than in this implementation must be supported by specific org.apache.wicket.request.IRequestCycleProcessor implementations and thus are not supported by default implementations.


author:
   Eelco Hillenius



Constructor Summary
public  RequestParameters()
     Construct.

Method Summary
public  StringgetBehaviorId()
     Gets the component registration id of any behavior.
public  StringgetBookmarkablePageClass()
     Gets any bookmarkable page class.
public  StringgetComponentId()
     Gets any id of a non-page target component.
public  StringgetComponentPath()
     Gets the full path to a component (might be just the page)..
public  RequestListenerInterfacegetInterface()
    
public  StringgetInterfaceName()
     Gets any callable interface name (e.g.
public  StringgetPageMapName()
     Gets any name of the page map.
public  MapgetParameters()
     Gets free-to-use map of non-reserved parameters.
public  StringgetPath()
     Gets path info.
public  StringgetResourceKey()
     Gets any resource key.
public  intgetUrlDepth()
     Gets the depth for relative URLs.
public  intgetVersionNumber()
     Gets any version information string.
public  booleanisOnlyProcessIfPathActive()
     Tells wicket whether this request should only be processed if the page + version specified are pointing to the last page the user accessed.
public  voidsetBehaviorId(String behaviorId)
     Sets the component registration id of any behavior.
public  voidsetBookmarkablePageClass(String bookmarkablePageClass)
     Sets any bookmarkable page class.
public  voidsetComponentId(String componentId)
     Sets any id of a non-page target component.
public  voidsetComponentPath(String componentPath)
     Sets the full path to a component (might be just the page)..
public  voidsetInterfaceName(String interfaceName)
     Sets any callable interface name (e.g.
public  voidsetOnlyProcessIfPathActive(boolean onlyProcessIfPathActive)
    
public  voidsetPageMapName(String pageMapName)
     Sets any name of the page map.
public  voidsetParameters(Map parameters)
     Sets free-to-use map of non-reserved parameters.
public  voidsetPath(String pathInfo)
     Sets path info.
public  voidsetResourceKey(String resourceKey)
     Sets any resource key.
public  voidsetUrlDepth(int urlDepth)
     Sets the depth for relative URLs.
public  voidsetVersionNumber(int versionNumber)
     Sets any version information string.
public  StringtoString()
    


Constructor Detail
RequestParameters
public RequestParameters()(Code)
Construct.




Method Detail
getBehaviorId
public String getBehaviorId()(Code)
Gets the component registration id of any behavior. behaviorId the id



getBookmarkablePageClass
public String getBookmarkablePageClass()(Code)
Gets any bookmarkable page class. any bookmarkable page class



getComponentId
public String getComponentId()(Code)
Gets any id of a non-page target component. any id of a non-page target component



getComponentPath
public String getComponentPath()(Code)
Gets the full path to a component (might be just the page).. the full path to a component (might be just the page).



getInterface
public RequestListenerInterface getInterface()(Code)
The interface named by these request parameters



getInterfaceName
public String getInterfaceName()(Code)
Gets any callable interface name (e.g. ILinkListener ). any callable interface name (e.g. ILinkListener)



getPageMapName
public String getPageMapName()(Code)
Gets any name of the page map. any name of the page map



getParameters
public Map getParameters()(Code)
Gets free-to-use map of non-reserved parameters. free-to-use map of non-reserved parameters



getPath
public String getPath()(Code)
Gets path info. path info



getResourceKey
public String getResourceKey()(Code)
Gets any resource key. any resource key



getUrlDepth
public int getUrlDepth()(Code)
Gets the depth for relative URLs. Used in AJAX requests. depth (number of slashes)



getVersionNumber
public int getVersionNumber()(Code)
Gets any version information string. any version information string



isOnlyProcessIfPathActive
public boolean isOnlyProcessIfPathActive()(Code)
Tells wicket whether this request should only be processed if the page + version specified are pointing to the last page the user accessed.
See Also:   WebRequestCodingStrategy.IGNORE_IF_NOT_ACTIVE_PARAMETER_NAME the only-process-if-path-active flag



setBehaviorId
public void setBehaviorId(String behaviorId)(Code)
Sets the component registration id of any behavior.
Parameters:
  behaviorId - the id



setBookmarkablePageClass
public void setBookmarkablePageClass(String bookmarkablePageClass)(Code)
Sets any bookmarkable page class.
Parameters:
  bookmarkablePageClass - any bookmarkable page class



setComponentId
public void setComponentId(String componentId)(Code)
Sets any id of a non-page target component.
Parameters:
  componentId - any id of a non-page target component



setComponentPath
public void setComponentPath(String componentPath)(Code)
Sets the full path to a component (might be just the page)..
Parameters:
  componentPath - the full path to a component (might be just the page).



setInterfaceName
public void setInterfaceName(String interfaceName)(Code)
Sets any callable interface name (e.g. ILinkListener ).
Parameters:
  interfaceName - any callable interface name (e.g. ILinkListener)



setOnlyProcessIfPathActive
public void setOnlyProcessIfPathActive(boolean onlyProcessIfPathActive)(Code)
Sets the only-process-if-path-active flag
Parameters:
  onlyProcessIfPathActive -
See Also:   RequestParameters.isOnlyProcessIfPathActive()



setPageMapName
public void setPageMapName(String pageMapName)(Code)
Sets any name of the page map.
Parameters:
  pageMapName - any name of the page map



setParameters
public void setParameters(Map parameters)(Code)
Sets free-to-use map of non-reserved parameters.
Parameters:
  parameters - free-to-use map of non-reserved parameters



setPath
public void setPath(String pathInfo)(Code)
Sets path info.
Parameters:
  pathInfo - path info



setResourceKey
public void setResourceKey(String resourceKey)(Code)
Sets any resource key.
Parameters:
  resourceKey - any resource key



setUrlDepth
public void setUrlDepth(int urlDepth)(Code)
Sets the depth for relative URLs. Used in AJAX requests.
Parameters:
  urlDepth - Number of slashes deep the page is that an AJAX request ismade from.



setVersionNumber
public void setVersionNumber(int versionNumber)(Code)
Sets any version information string.
Parameters:
  versionNumber - any version information string



toString
public String toString()(Code)

See Also:   java.lang.Object.toString



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.