WEB开发网
开发学院软件开发Java 增强 WebSphere eXtreme Scale 的 xsadmin 阅读

增强 WebSphere eXtreme Scale 的 xsadmin

 2009-09-29 00:00:00 来源:WEB开发网   
核心提示: 清单 7. 新修改后的 main() 方法/**Added!o.listOGtoaccountfortheconditionofauserwantingtojustseethe*listofgridsandassociatedmapsets-whowantstospecifytheotherop

清单 7. 新修改后的 main() 方法

/* 
* Added !o.listOG to account for the condition of a user wanting to just see the 
* list of grids and associated mapsets - who wants to specify the other options 
* for a listing???? 
*/ 
if (!(o.showContainers || o.showHosts || o.showPrimaries || o.showUnAssigned) && 
 !o.listOG && !o.catServer) { 
    CmdLineParser.printHelp(); 
    // System.exit(-1); 
    return; 
}

通过清单 7 中的更改,您现在可以在无需提供任何其他参数的情况下在命令行上传入 –catserv 参数。

接下来,您需要提供一些逻辑,以在此参数传入应用程序时采取相应的操作。清单 8 显示了您现在将要处理的 main() 方法(属于 OGAdmin)方法的区域。

清单 8. OGAdmin 的 main() 方法中的逻辑

/* 
* code that responds to -l argument - prints out grids and mapsets defined!! 
*/ 
if (o.listOG) { 
  printListOfOG(jmxProxy.getObjectGridNames()); 
  return; 
} 
 
// Show containers 
if (o.showContainers) { 
  printContainers(jmxProxy, o); 
} else if (o.showPrimaries) { 
  printPrimaries(jmxProxy, o); 
} else if (o.showUnAssigned) { 
  printUnassigned(jmxProxy, o); 
} else if (o.showHosts) { 
  printHosts(jmxProxy, o); 
} else { 
  //? 
}

上一页  4 5 6 7 8 9 10  下一页

Tags:增强 WebSphere eXtreme

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接