com.sun.enterprise.config.serverbeans.Application.setDirectoryDeployed()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(1.9k)|赞(0)|评价(0)|浏览(71)

本文整理了Java中com.sun.enterprise.config.serverbeans.Application.setDirectoryDeployed()方法的一些代码示例,展示了Application.setDirectoryDeployed()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Application.setDirectoryDeployed()方法的具体详情如下:
包路径:com.sun.enterprise.config.serverbeans.Application
类名称:Application
方法名:setDirectoryDeployed

Application.setDirectoryDeployed介绍

[英]Sets the value of the directoryDeployed property.
[中]设置directoryDeployed属性的值。

代码示例

代码示例来源:origin: fujitsu/launcher

app.setDirectoryDeployed(appProps.getProperty(
  ServerTags.DIRECTORY_DEPLOYED));

代码示例来源:origin: org.glassfish.main.core/kernel

app.setDirectoryDeployed(appProps.getProperty(
  ServerTags.DIRECTORY_DEPLOYED));

代码示例来源:origin: org.glassfish.main.core/kernel

app.setEnabled(Boolean.TRUE.toString());
app.setObjectType("system-admin"); //TODO
app.setDirectoryDeployed("true");
app.setContextRoot(contextRoot);
try {

代码示例来源:origin: org.glassfish.admin/config-api

app.setDescription(connectorModule.getDescription());
app.setEnabled(connectorModule.getEnabled());
app.setDirectoryDeployed(
  connectorModule.getDirectoryDeployed());
for (Property property : 
app.setDescription(ejbModule.getDescription());
app.setEnabled(ejbModule.getEnabled());
app.setDirectoryDeployed(
  ejbModule.getDirectoryDeployed());
app.setLibraries(ejbModule.getLibraries());
app.setDescription(webModule.getDescription());
app.setEnabled(webModule.getEnabled());
app.setDirectoryDeployed(
  webModule.getDirectoryDeployed());
app.setLibraries(webModule.getLibraries());
app.setDescription(appclientModule.getDescription());
app.setEnabled("true");
app.setDirectoryDeployed(
  appclientModule.getDirectoryDeployed());
for (Property property :
app.setDescription(j2eeApp.getDescription());
app.setEnabled(j2eeApp.getEnabled());
app.setDirectoryDeployed(
  j2eeApp.getDirectoryDeployed());
app.setLibraries(j2eeApp.getLibraries());

相关文章

微信公众号

最新文章

更多