Java Doc for I_JoServletModel.java in  » Web-Server » jo » com » tagtraum » jo » 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 » Web Server » jo » com.tagtraum.jo 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


com.tagtraum.jo.I_JoServletModel

All known Subclasses:   com.tagtraum.jo.JoServletModel,  com.tagtraum.jo.jsp.JspModel,  com.tagtraum.jo.JoAbstractModel,
I_JoServletModel
public interface I_JoServletModel (Code)
Serves as a managing container for servlets.
author:
   Hendrik Schreiber
version:
   1.1beta1 $Id: I_JoServletModel.java,v 1.7 2004/04/16 01:30:03 hendriks73 Exp $


Field Summary
public static  Stringvcid
    


Method Summary
public  voidaddChangeListener(ChangeListener cl)
    
public  voidaddClassLocations(URL[] aURL)
     Adds a number of URLs to the classloader.
public  voidaddSecurityRoleRef(I_JoSecurityRoleRef aSecurityRoleRef)
     Adds a SecurityRoleReference.
public  ClassLoadergetClassLoader()
     Returns the current classloader.
public  intgetDestroyTimeout()
     Returns the time in ms that shall be waited before a servlet is destroyed although it is still executed.
public  StringgetInitParameter(String aKey)
     Returns a configuration parameter.
public  EnumerationgetInitParameterNames()
     Returns the names for all init parameters.
public  StringgetJspFileName()
     Returns the filename of the jsp.
public  intgetLoadOrderPosition()
     Returns the load order position.
public  intgetMaxActiveInstances()
     Returns the number of servlet instances that can be executed at the same time.
public  StringgetName()
     Returns the name of the model.
public  I_JoSecurityRoleRefgetSecurityRoleRef(String aRoleName)
     Returns a SecurityRoleReference.
 I_JoSecurityRoleRefgetSecurityRoleRefByLink(String aRoleLink)
     Returns a SecurityRoleReference.
public  StringgetServletClassName()
     Returns the classname of the servlet.
public  ServletContextgetServletContext()
     Returns the ServletContext.
public  I_JoServletContextPeergetServletContextPeer()
     Returns the ServletContextPeer.
public  voidinit()
     Initializes this model.
public  booleanisLoadOnStartup()
     Return whether this servlet should be loaded as startup.
public  booleanisLoaded()
     Indicates whether this servlet is loaded or not.
public  booleanisPrivileged()
     Indicates whether the corresponding servlet should have access to the engine.
public  voidpreload()
     Loads this servlet.
public  booleanremoveChangeListener(ChangeListener cl)
    
public  voidservice(ServletRequest aRequest, ServletResponse aResponse)
     Executes the service method of the servlet.
public  voidsetClassLoader(ServletClassLoader classLoader)
     Sets the classloader for this servlet.
public  voidsetDestroyTimeout(int aTimeout)
     Sets the time in ms that shall be waited before a servlet is destroyed although it is still executed.
public  voidsetInitParameter(String aKey, String aValue)
     Sets an init parameter.
public  voidsetJspFileName(String jspFileName)
     Sets filename of the jsp.
public  voidsetLoadOnStartup(boolean loadOnStartup)
     Sets whether this servlet should be loaded as startup.
public  voidsetLoadOrderPosition(int loadOrderPosition)
     Sets the load order position.
public  voidsetMaxActiveInstances(int max)
     Sets the number of servlet instances that can be executed at the same time.
public  voidsetName(String name)
     Sets the name of this servlet/jsp.
public  voidsetPrivileged(boolean privileged)
    
public  voidsetServletClassName(String aClassname)
     Sets the classname of the servlet.
 voidsetServletContextPeer(I_JoServletContextPeer servletContextPeer)
    
public  voidunload()
     Destroys all instances of this servlet.

Field Detail
vcid
public static String vcid(Code)
Source-Version





Method Detail
addChangeListener
public void addChangeListener(ChangeListener cl)(Code)



addClassLocations
public void addClassLocations(URL[] aURL)(Code)
Adds a number of URLs to the classloader.
Parameters:
  aURL - array of URLs



addSecurityRoleRef
public void addSecurityRoleRef(I_JoSecurityRoleRef aSecurityRoleRef)(Code)
Adds a SecurityRoleReference.



getClassLoader
public ClassLoader getClassLoader()(Code)
Returns the current classloader. classloader



getDestroyTimeout
public int getDestroyTimeout()(Code)
Returns the time in ms that shall be waited before a servlet is destroyed although it is still executed. time in ms.



getInitParameter
public String getInitParameter(String aKey)(Code)
Returns a configuration parameter. a value



getInitParameterNames
public Enumeration getInitParameterNames()(Code)
Returns the names for all init parameters. an Enumeration of names



getJspFileName
public String getJspFileName()(Code)
Returns the filename of the jsp. jsp filename



getLoadOrderPosition
public int getLoadOrderPosition()(Code)
Returns the load order position.



getMaxActiveInstances
public int getMaxActiveInstances()(Code)
Returns the number of servlet instances that can be executed at the same time. This is only relevant for SingleThreadModels. max number of instances



getName
public String getName()(Code)
Returns the name of the model. name of the model



getSecurityRoleRef
public I_JoSecurityRoleRef getSecurityRoleRef(String aRoleName)(Code)
Returns a SecurityRoleReference.



getSecurityRoleRefByLink
I_JoSecurityRoleRef getSecurityRoleRefByLink(String aRoleLink)(Code)
Returns a SecurityRoleReference.



getServletClassName
public String getServletClassName()(Code)
Returns the classname of the servlet. classname



getServletContext
public ServletContext getServletContext()(Code)
Returns the ServletContext. ServletContext



getServletContextPeer
public I_JoServletContextPeer getServletContextPeer()(Code)
Returns the ServletContextPeer. ServletContextPeer



init
public void init()(Code)
Initializes this model.



isLoadOnStartup
public boolean isLoadOnStartup()(Code)
Return whether this servlet should be loaded as startup.



isLoaded
public boolean isLoaded()(Code)
Indicates whether this servlet is loaded or not. true or false.



isPrivileged
public boolean isPrivileged()(Code)
Indicates whether the corresponding servlet should have access to the engine. true or false



preload
public void preload() throws FactoryException, ServletException, IOException(Code)
Loads this servlet.



removeChangeListener
public boolean removeChangeListener(ChangeListener cl)(Code)



service
public void service(ServletRequest aRequest, ServletResponse aResponse) throws IOException, ServletException(Code)
Executes the service method of the servlet.
exception:
  IOException -
exception:
  ServletException -



setClassLoader
public void setClassLoader(ServletClassLoader classLoader)(Code)
Sets the classloader for this servlet.
Parameters:
  classLoader -



setDestroyTimeout
public void setDestroyTimeout(int aTimeout)(Code)
Sets the time in ms that shall be waited before a servlet is destroyed although it is still executed.
Parameters:
  aTimeout - timeout in ms.



setInitParameter
public void setInitParameter(String aKey, String aValue)(Code)
Sets an init parameter. If aValue is null the parameter is deleted.
Parameters:
  aKey - a key
Parameters:
  aValue - a value



setJspFileName
public void setJspFileName(String jspFileName)(Code)
Sets filename of the jsp.
Parameters:
  jspFileName - jsp filename



setLoadOnStartup
public void setLoadOnStartup(boolean loadOnStartup)(Code)
Sets whether this servlet should be loaded as startup.



setLoadOrderPosition
public void setLoadOrderPosition(int loadOrderPosition)(Code)
Sets the load order position.



setMaxActiveInstances
public void setMaxActiveInstances(int max)(Code)
Sets the number of servlet instances that can be executed at the same time. This is only relevant for SingleThreadModels.
Parameters:
  max - max number of instances



setName
public void setName(String name)(Code)
Sets the name of this servlet/jsp.
Parameters:
  name - name



setPrivileged
public void setPrivileged(boolean privileged)(Code)



setServletClassName
public void setServletClassName(String aClassname)(Code)
Sets the classname of the servlet.
Parameters:
  aClassname - classname



setServletContextPeer
void setServletContextPeer(I_JoServletContextPeer servletContextPeer)(Code)



unload
public void unload()(Code)
Destroys all instances of this servlet.



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