Java Doc for WebContainer.java in  » Portal » Open-Portal » com » sun » portal » fabric » tasks » 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 » Open Portal » com.sun.portal.fabric.tasks 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


com.sun.portal.fabric.tasks.WebContainer

All known Subclasses:   com.sun.portal.fabric.tasks.WebContainerBase,
WebContainer
public interface WebContainer extends InstanceAttributes(Code)
This class implements the functionality needed to do Portal Management tasks related to WebContainer instances


Field Summary
final static  StringDOMAIN_ID
    
final static  StringINSTANCE_ID
    
final static  StringPORTAL_ID
    
final static  StringTYPE_BEAWL8
    
final static  StringTYPE_IBMWS5
    
final static  StringTYPE_JESAS81
    
final static  StringTYPE_JESWS6
    
final static  StringTYPE_JESWS7
    
final static  Stringcps
    
final static  Stringfs
    
final static  Stringnl
    
final static  String[]wcAttrKeys
     String Array containing keys for attributes in the HashMap that is passed when webcontainer implementation objects are constructed.


Method Summary
 voidconfigure(PSConfigContext configContext)
     Configures the webcontainer with the Identity Server and Portal Server classpath and other JVM options.
 booleanconfigureApp(String configDir, PSConfigContext configContext)
    
 voidconfigureSearch(String classpath, PSConfigContext configContext)
    
 voiddeploy(String warFile, String uri)
    
 booleandoJVMMemorySettings()
    
 StringgetPrintableWebContainerInstanceName()
     Get printable name of web container instance.
 StringgetWebContainerType()
     Get type of underlying web container.
 booleanisPortalConfigured()
    
 voidjustDeploy(String warFile, String uri)
    
 voidpostDeploy()
    
 voidpostValidationInit()
    
 voidstart()
    
 voidstop()
    
 voidunconfigure(PSConfigContext configContext)
    
 voidunconfigureSearch(String classpath, PSConfigContext configContext)
    
 voidundeploy(String uri)
    
 voidvalidate()
    

Field Detail
DOMAIN_ID
final static String DOMAIN_ID(Code)



INSTANCE_ID
final static String INSTANCE_ID(Code)



PORTAL_ID
final static String PORTAL_ID(Code)



TYPE_BEAWL8
final static String TYPE_BEAWL8(Code)



TYPE_IBMWS5
final static String TYPE_IBMWS5(Code)



TYPE_JESAS81
final static String TYPE_JESAS81(Code)
Strings defining the webcontainer types



TYPE_JESWS6
final static String TYPE_JESWS6(Code)



TYPE_JESWS7
final static String TYPE_JESWS7(Code)



cps
final static String cps(Code)



fs
final static String fs(Code)



nl
final static String nl(Code)



wcAttrKeys
final static String[] wcAttrKeys(Code)
String Array containing keys for attributes in the HashMap that is passed when webcontainer implementation objects are constructed. Note: all these attributes are persisted in the PAS





Method Detail
configure
void configure(PSConfigContext configContext) throws ConfigurationException(Code)
Configures the webcontainer with the Identity Server and Portal Server classpath and other JVM options.



configureApp
boolean configureApp(String configDir, PSConfigContext configContext) throws ConfigurationException(Code)
Configures the webcontainer for the portletApp given the /conf directory with the standard format



configureSearch
void configureSearch(String classpath, PSConfigContext configContext) throws ConfigurationException(Code)
Configures the webcontainer for Search



deploy
void deploy(String warFile, String uri) throws ConfigurationException(Code)
Deploys the WAR file on to the webcontainer instance, along with post Deploy step
Parameters:
  warFile - WAR file including full path
Parameters:
  uri - Deployment URI



doJVMMemorySettings
boolean doJVMMemorySettings()(Code)
To do initial web container VM memory settings



getPrintableWebContainerInstanceName
String getPrintableWebContainerInstanceName()(Code)
Get printable name of web container instance.



getWebContainerType
String getWebContainerType()(Code)
Get type of underlying web container.



isPortalConfigured
boolean isPortalConfigured()(Code)
Is Portal Configured on underlying Web Container ?



justDeploy
void justDeploy(String warFile, String uri) throws ConfigurationException(Code)
Deploys the WAR file on to the webcontainer instance
Parameters:
  warFile - WAR file including full path
Parameters:
  uri - Deployment URI



postDeploy
void postDeploy() throws ConfigurationException(Code)
Performs the post Deploy step



postValidationInit
void postValidationInit() throws ConfigurationException(Code)
Post validation business



start
void start() throws ConfigurationException(Code)
Starts the webcontainer instance



stop
void stop() throws ConfigurationException(Code)
Stops the webcontainer instance



unconfigure
void unconfigure(PSConfigContext configContext) throws ConfigurationException(Code)
Removes the Identity Server and Portal Server related configuration in the WebContainer classpath and JVM options



unconfigureSearch
void unconfigureSearch(String classpath, PSConfigContext configContext) throws ConfigurationException(Code)
Removes the Search related configuration in the WebContainer



undeploy
void undeploy(String uri) throws ConfigurationException(Code)
Undeploys the WAR file from the webcontainer instance
Parameters:
  uri - Deployment URI



validate
void validate() throws ValidationException(Code)
Validate the web container



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