Examples of listTemplates()


Examples of org.jclouds.cloudstack.features.TemplateApi.listTemplates()

   public Iterable<Template> listImages() {
      TemplateApi templateApi = client.getTemplateApi();
      ImmutableSet.Builder<Template> templates = ImmutableSet.builder();
      templates.addAll(templateApi.listTemplates());
      for (String project : projectSupplier.get().keySet()) {
         templates.addAll(templateApi.listTemplates(ListTemplatesOptions.Builder.projectId(project)));
      }

      return filter(templates.build(), isReady());
   }
View Full Code Here

Examples of org.jclouds.cloudstack.features.TemplateClient.listTemplates()

    public void testTemplatesCommandPrintsTheTemplates() throws Exception {
        final TemplatesCommand templatesCommand = new TemplatesCommand(defaultProviderConfig);
        final TemplateClient templateClient = mock(TemplateClient.class);

        when(client.getTemplateClient()).thenReturn(templateClient);
        when(templateClient.listTemplates()).thenReturn(templates);

        templatesCommand.doExecuteWithContext(client, out);
        out.close();
        assertThat(byteArrayOutputStream.toString()).contains("template-1").contains("template-one");
    }
View Full Code Here

Examples of org.jclouds.cloudstack.features.TemplateClient.listTemplates()

    public void testTemplatesCommandPrintsTheTemplates() throws Exception {
        final TemplatesCommand templatesCommand = new TemplatesCommand(defaultProviderConfig);
        final TemplateClient templateClient = mock(TemplateClient.class);

        when(client.getTemplateClient()).thenReturn(templateClient);
        when(templateClient.listTemplates()).thenReturn(templates);

        templatesCommand.doExecuteWithContext(client, out);
        out.close();
        assertThat(byteArrayOutputStream.toString()).contains("template-1").contains("template-one");
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.