Java Doc for ConfigSupportImpl.java in  » 6.0-JDK-Core » j2eeserver » org » netbeans » modules » j2ee » deployment » config » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Home
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
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Net
51.Parser
52.PDF
53.Portal
54.Profiler
55.Project Management
56.Report
57.RSS RDF
58.Rule Engine
59.Science
60.Scripting
61.Search Engine
62.Security
63.Sevlet Container
64.Source Control
65.Swing Library
66.Template Engine
67.Test Coverage
68.Testing
69.UML
70.Web Crawler
71.Web Framework
72.Web Mail
73.Web Server
74.Web Services
75.Web Services apache cxf 2.2.6
76.Web Services AXIS2
77.Wiki Engine
78.Workflow Engines
79.XML
80.XML UI
Java Source Code / Java Documentation » 6.0 JDK Core » j2eeserver » org.netbeans.modules.j2ee.deployment.config 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.netbeans.modules.j2ee.deployment.config.ConfigSupportImpl

ConfigSupportImpl
final public class ConfigSupportImpl implements J2eeModuleProvider.ConfigSupport,ModuleConfigurationProvider(Code)
Each J2eeModuleProvider hold a reference to an instance of this config support. An instance of ConfigDataObject representing the current target configuration and it is cached for to avoid performance penalty of creating new one for every access to configuration. Whenenver target server of the module changes, a new config support is associate with the module providing access to the right configuration data object.
author:
   nn136682



Constructor Summary
public  ConfigSupportImpl(J2eeModuleProvider provider)
    

Method Summary
public  voidbindDatasourceReference(String referenceName, String jndiName)
    
public  voidbindDatasourceReferenceForEjb(String ejbName, String ejbType, String referenceName, String jndiName)
    
public  voidbindEjbReference(String referenceName, String jndiName)
    
public  voidbindEjbReferenceForEjb(String ejbName, String ejbType, String referenceName, String jndiName)
    
public  voidbindMdbToMessageDestination(String mdbName, String name, MessageDestination.Type type)
    
public  voidbindMessageDestinationReference(String referenceName, String connectionFactoryName, String destName, MessageDestination.Type type)
    
public  voidbindMessageDestinationReferenceForEjb(String ejbName, String ejbType, String referenceName, String connectionFactoryName, String destName, MessageDestination.Type type)
    
public  DatasourcecreateDatasource(String jndiName, String url, String username, String password, String driver)
    
public  booleancreateInitialConfiguration()
    
public  MessageDestinationcreateMessageDestination(String name, MessageDestination.Type type)
    
public  voiddispose()
    
public  booleanensureConfigurationReady()
    
public  DatasourcefindDatasource(String jndiName)
    
public  StringfindDatasourceJndiName(String referenceName)
    
public  StringfindDatasourceJndiNameForEjb(String ejbName, String referenceName)
    
public  StringfindJndiNameForEjb(String ejbName)
    
public  MessageDestinationfindMessageDestination(String name)
    
public  StringfindMessageDestinationName(String mdbName)
    
public  FilegetConfigurationFile()
     This method save configurations in deployment plan in content directory and return the fileobject for the plan.
public static  FileObject[]getConfigurationFiles(J2eeModuleProvider jmp)
    
public  StringgetContentRelativePath(String configName)
    
public  Set<Datasource>getDatasources()
    
public  String[]getDeploymentConfigurationFileNames()
    
public static  File[]getDeploymentConfigurationFiles(J2eeModuleProvider provider, Server server)
     Return list of server specific configuration files.
public  StringgetDeploymentName()
    
public  J2eeModulegetJ2eeModule(String moduleUri)
    
public  Set<MessageDestination>getMessageDestinations()
    
public synchronized  ModuleConfigurationgetModuleConfiguration()
     Create and cache deployment configuration for the current server.
public  Set<MessageDestination>getServerMessageDestinations()
    
public  StringgetWebContextRoot()
    
public  booleanisDatasourceCreationSupported()
    
public  voidsetCMPMappingInfo(OriginalCMPMapping[] mappings)
    
public  voidsetCMPResource(String ejbName, String jndiName)
    
public  voidsetWebContextRoot(String contextRoot)
    
public  booleansupportsCreateMessageDestination()
    


Constructor Detail
ConfigSupportImpl
public ConfigSupportImpl(J2eeModuleProvider provider)(Code)
Creates a new instance of ConfigSupportImpl




Method Detail
bindDatasourceReference
public void bindDatasourceReference(String referenceName, String jndiName) throws ConfigurationException(Code)



bindDatasourceReferenceForEjb
public void bindDatasourceReferenceForEjb(String ejbName, String ejbType, String referenceName, String jndiName) throws ConfigurationException(Code)



bindEjbReference
public void bindEjbReference(String referenceName, String jndiName) throws ConfigurationException(Code)



bindEjbReferenceForEjb
public void bindEjbReferenceForEjb(String ejbName, String ejbType, String referenceName, String jndiName) throws ConfigurationException(Code)



bindMdbToMessageDestination
public void bindMdbToMessageDestination(String mdbName, String name, MessageDestination.Type type) throws ConfigurationException(Code)



bindMessageDestinationReference
public void bindMessageDestinationReference(String referenceName, String connectionFactoryName, String destName, MessageDestination.Type type) throws ConfigurationException(Code)



bindMessageDestinationReferenceForEjb
public void bindMessageDestinationReferenceForEjb(String ejbName, String ejbType, String referenceName, String connectionFactoryName, String destName, MessageDestination.Type type) throws ConfigurationException(Code)



createDatasource
public Datasource createDatasource(String jndiName, String url, String username, String password, String driver) throws UnsupportedOperationException, DatasourceAlreadyExistsException(Code)



createInitialConfiguration
public boolean createInitialConfiguration()(Code)



createMessageDestination
public MessageDestination createMessageDestination(String name, MessageDestination.Type type) throws UnsupportedOperationException, ConfigurationException(Code)



dispose
public void dispose()(Code)
dispose all created deployment configurations



ensureConfigurationReady
public boolean ensureConfigurationReady()(Code)



findDatasource
public Datasource findDatasource(String jndiName) throws ConfigurationException(Code)



findDatasourceJndiName
public String findDatasourceJndiName(String referenceName) throws ConfigurationException(Code)



findDatasourceJndiNameForEjb
public String findDatasourceJndiNameForEjb(String ejbName, String referenceName) throws ConfigurationException(Code)



findJndiNameForEjb
public String findJndiNameForEjb(String ejbName) throws ConfigurationException(Code)



findMessageDestination
public MessageDestination findMessageDestination(String name) throws ConfigurationException(Code)



findMessageDestinationName
public String findMessageDestinationName(String mdbName) throws ConfigurationException(Code)



getConfigurationFile
public File getConfigurationFile()(Code)
This method save configurations in deployment plan in content directory and return the fileobject for the plan. Primary use is for remote deployment or standard jsr88 deployement.



getConfigurationFiles
public static FileObject[] getConfigurationFiles(J2eeModuleProvider jmp)(Code)



getContentRelativePath
public String getContentRelativePath(String configName)(Code)



getDatasources
public Set<Datasource> getDatasources() throws ConfigurationException(Code)



getDeploymentConfigurationFileNames
public String[] getDeploymentConfigurationFileNames()(Code)



getDeploymentConfigurationFiles
public static File[] getDeploymentConfigurationFiles(J2eeModuleProvider provider, Server server)(Code)
Return list of server specific configuration files.



getDeploymentName
public String getDeploymentName()(Code)



getJ2eeModule
public J2eeModule getJ2eeModule(String moduleUri)(Code)



getMessageDestinations
public Set<MessageDestination> getMessageDestinations() throws ConfigurationException(Code)



getModuleConfiguration
public synchronized ModuleConfiguration getModuleConfiguration()(Code)
Create and cache deployment configuration for the current server.



getServerMessageDestinations
public Set<MessageDestination> getServerMessageDestinations() throws ConfigurationException(Code)



getWebContextRoot
public String getWebContextRoot()(Code)
Get context root (context path) string value, null if not set or not a WAR module



isDatasourceCreationSupported
public boolean isDatasourceCreationSupported()(Code)



setCMPMappingInfo
public void setCMPMappingInfo(OriginalCMPMapping[] mappings) throws ConfigurationException(Code)



setCMPResource
public void setCMPResource(String ejbName, String jndiName) throws ConfigurationException(Code)



setWebContextRoot
public void setWebContextRoot(String contextRoot)(Code)
Set context root (context path)



supportsCreateMessageDestination
public boolean supportsCreateMessageDestination()(Code)



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.