Package org.jclouds.iam.xml

Examples of org.jclouds.iam.xml.InstanceProfileHandler


   public void test() {
      InputStream is = getClass().getResourceAsStream("/get_instance_profile.xml");

      InstanceProfile expected = expected();

      InstanceProfileHandler handler = injector.getInstance(InstanceProfileHandler.class);
      InstanceProfile result = factory.create(handler).parse(is);

      assertEquals(result, expected);
      assertEquals(result.getPath(), expected.getPath());
      assertEquals(result.getName(), expected.getName());
View Full Code Here


   public void test() {
      InputStream is = getClass().getResourceAsStream("/get_instance_profile.xml");

      InstanceProfile expected = expected();

      InstanceProfileHandler handler = injector.getInstance(InstanceProfileHandler.class);
      InstanceProfile result = factory.create(handler).parse(is);

      assertEquals(result, expected);
      assertEquals(result.getPath(), expected.getPath());
      assertEquals(result.getName(), expected.getName());
View Full Code Here

TOP

Related Classes of org.jclouds.iam.xml.InstanceProfileHandler

Copyright © 2018 www.massapicom. 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.