Package com.ibm.websphere.webcontainer
Interface GeneratePluginConfigMBean
-
public interface GeneratePluginConfigMBean
Deprecated.Management interface for the MBean "WebSphere:name=com.ibm.ws.jmx.mbeans.generatePluginConfig". The Liberty profile makes this MBean available in its platform MBean server to allow users to generate a plugin-cfg.xml file which can be used to configure a web server plug-in that forwards HTTP requests for dynamic resources to the Liberty profile. This interface can be used to request a proxy object via theJMX.newMBeanProxy(javax.management.MBeanServerConnection, javax.management.ObjectName, java.lang.Class<T>)
method. This class has been deprecated since 16.0.0.3 as the server now automatically generates the web server plugin configuration file into the ${server.output.dir}/logs/state directory
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
generateDefaultPluginConfig()
Deprecated.Invokes the generateDefaultPluginConfig operation, which generates a plugin-cfg.xml file with default settings in the ${server.output.dir} directory.void
generatePluginConfig(java.lang.String pluginInstallRoot, java.lang.String webServerName)
Deprecated.Invokes the generatePluginConfig operation with root and name parameters, which generates a customized plugin-cfg.xml file in the ${server.output.dir} directory.
-
-
-
Method Detail
-
generateDefaultPluginConfig
void generateDefaultPluginConfig()
Deprecated.Invokes the generateDefaultPluginConfig operation, which generates a plugin-cfg.xml file with default settings in the ${server.output.dir} directory.
-
generatePluginConfig
void generatePluginConfig(java.lang.String pluginInstallRoot, java.lang.String webServerName)
Deprecated.Invokes the generatePluginConfig operation with root and name parameters, which generates a customized plugin-cfg.xml file in the ${server.output.dir} directory. The input parameters are used to construct the plugin log file location. The directory for the log file must exist on the web server host. Values used to generate the file can be set using the Web Server Plugin (pluginConfiguration) properties in the server.xml file.- Parameters:
root
- plug-in install root directoryname
- web server name
-
-