コード例 #1
0
ファイル: DeployClient.java プロジェクト: himanshu1587/deploy
 public Collection<DeployedAssembly> getDeployedAssemblies() throws RemoteException {
   OMElement request = element(GET_DEPLOYED_ASSEMBLIES_REQUEST);
   setAuthentication(request);
   OMParser response = invoke(GET_DEPLOYED_ASSEMBLIES_REQUEST.getLocalPart(), request);
   return OMParser.parseDeployedAssemblies(response);
 }