Java Doc for WebApplication.java in  » Testing » HttpUnit » com » meterware » servletunit » 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 » Testing » HttpUnit » com.meterware.servletunit 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.meterware.servletunit.WebApplication

WebApplication
class WebApplication implements SessionListenerDispatcher(Code)
This class represents the information recorded about a single web application. It is usually extracted from web.xml.
author:
   Russell Gold
author:
   Donald Ball
author:
   Jay Dunning

Inner Class :static class SecurityCheckServlet extends HttpServlet
Inner Class :class ServletConfiguration extends WebResourceConfiguration
Inner Class :class FilterConfiguration extends WebResourceConfiguration implements FilterMetaData
Inner Class :interface SecurityConstraint
Inner Class :static class NullSecurityConstraint implements SecurityConstraint
Inner Class :static class SecurityConstraintImpl implements SecurityConstraint
Inner Class :static class ServletRequestImpl implements ServletMetaData
Inner Class :static class WebResourceMapping
Inner Class :static class PartialMatchWebResourceMapping extends WebResourceMapping
Inner Class :class WebResourceMap

Field Summary
final static  intANY_LOAD_ORDER
    
final static  intDONT_AUTOLOAD
    
final static  FilterMetaData[]NO_FILTERS
    

Constructor Summary
 WebApplication()
     Constructs a default application spec with no information.
 WebApplication(Document document)
     Constructs an application spec from an XML document.
 WebApplication(Document document, String contextPath)
     Constructs an application spec from an XML document.
 WebApplication(Document document, File file, String contextPath)
     Constructs an application spec from an XML document.

Method Summary
 voiddestroyServlets()
     Calls the destroy method for every active servlet.
 StringgetAuthenticationRealm()
    
 HashtablegetContextParameters()
    
 StringgetContextPath()
    
 StringgetDisplayName()
    
 URLgetErrorURL()
    
 URLgetLoginURL()
    
 String[]getPermittedRoles(URL url)
     Returns an array containing the roles permitted to access the specified URL.
 FilegetResourceFile(String path)
    
 ServletContextgetServletContext()
    
 ServletMetaDatagetServletRequest(URL url)
    
 voidregisterServlet(String resourceName, String servletClassName, Hashtable initParams)
     Registers a servlet class to be run.
 voidregisterServlet(String resourceName, ServletConfiguration servletConfiguration)
     Registers a servlet to be run.
 booleanrequiresAuthorization(URL url)
     Returns true if the specified path may only be accesses by an authorized user.
 voidsendAttributeAdded(String name, Object value)
    
public  voidsendAttributeAdded(HttpSession session, String name, Object value)
    
 voidsendAttributeRemoved(String name, Object value)
    
public  voidsendAttributeRemoved(HttpSession session, String name, Object oldValue)
    
 voidsendAttributeReplaced(String name, Object value)
    
public  voidsendAttributeReplaced(HttpSession session, String name, Object oldValue)
    
public  voidsendSessionCreated(HttpSession session)
    
public  voidsendSessionDestroyed(HttpSession session)
    
 voidshutDown()
    
 booleanusesBasicAuthentication()
     Returns true if this application uses Basic Authentication.
 booleanusesFormAuthentication()
     Returns true if this application uses form-based authentication.

Field Detail
ANY_LOAD_ORDER
final static int ANY_LOAD_ORDER(Code)



DONT_AUTOLOAD
final static int DONT_AUTOLOAD(Code)



NO_FILTERS
final static FilterMetaData[] NO_FILTERS(Code)




Constructor Detail
WebApplication
WebApplication()(Code)
Constructs a default application spec with no information.



WebApplication
WebApplication(Document document) throws MalformedURLException, SAXException(Code)
Constructs an application spec from an XML document.



WebApplication
WebApplication(Document document, String contextPath) throws MalformedURLException, SAXException(Code)
Constructs an application spec from an XML document.



WebApplication
WebApplication(Document document, File file, String contextPath) throws MalformedURLException, SAXException(Code)
Constructs an application spec from an XML document.




Method Detail
destroyServlets
void destroyServlets()(Code)
Calls the destroy method for every active servlet.



getAuthenticationRealm
String getAuthenticationRealm()(Code)



getContextParameters
Hashtable getContextParameters()(Code)



getContextPath
String getContextPath()(Code)



getDisplayName
String getDisplayName()(Code)



getErrorURL
URL getErrorURL()(Code)



getLoginURL
URL getLoginURL()(Code)



getPermittedRoles
String[] getPermittedRoles(URL url)(Code)
Returns an array containing the roles permitted to access the specified URL.



getResourceFile
File getResourceFile(String path)(Code)



getServletContext
ServletContext getServletContext()(Code)



getServletRequest
ServletMetaData getServletRequest(URL url)(Code)



registerServlet
void registerServlet(String resourceName, String servletClassName, Hashtable initParams)(Code)
Registers a servlet class to be run.



registerServlet
void registerServlet(String resourceName, ServletConfiguration servletConfiguration)(Code)
Registers a servlet to be run.



requiresAuthorization
boolean requiresAuthorization(URL url)(Code)
Returns true if the specified path may only be accesses by an authorized user.
Parameters:
  url - the application-relative path of the URL



sendAttributeAdded
void sendAttributeAdded(String name, Object value)(Code)



sendAttributeAdded
public void sendAttributeAdded(HttpSession session, String name, Object value)(Code)



sendAttributeRemoved
void sendAttributeRemoved(String name, Object value)(Code)



sendAttributeRemoved
public void sendAttributeRemoved(HttpSession session, String name, Object oldValue)(Code)



sendAttributeReplaced
void sendAttributeReplaced(String name, Object value)(Code)



sendAttributeReplaced
public void sendAttributeReplaced(HttpSession session, String name, Object oldValue)(Code)



sendSessionCreated
public void sendSessionCreated(HttpSession session)(Code)



sendSessionDestroyed
public void sendSessionDestroyed(HttpSession session)(Code)



shutDown
void shutDown()(Code)



usesBasicAuthentication
boolean usesBasicAuthentication()(Code)
Returns true if this application uses Basic Authentication.



usesFormAuthentication
boolean usesFormAuthentication()(Code)
Returns true if this application uses form-based authentication.



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.