예제 #1
0
 public virtual IList <T> GetDeployedArtifacts <T>(Type clazz)
 {
     if (deployedArtifacts == null)
     {
         return(null);
     }
     else
     {
         return(ListExt.ConvertToListT <T>(deployedArtifacts[clazz]));
     }
 }
예제 #2
0
 public virtual IList <IResource> GetDeploymentResources(string deploymentId)
 {
     return(ListExt.ConvertToListT <IResource>(CommandExecutor.Execute(new GetDeploymentResourcesCmd(deploymentId))));
 }