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