Package org.apache.deltacloud.client.unmarshal

Examples of org.apache.deltacloud.client.unmarshal.HardwareProfileUnmarshaller


  @Test
  public void fixedPropertyHardwareProfileMayBeUnmarshalled() throws MalformedURLException, JAXBException,
      DeltaCloudClientException {
    HardwareProfile profile = new HardwareProfile();
    ByteArrayInputStream inputStream = new ByteArrayInputStream(HardwareProfile1Response.response.getBytes());
    new HardwareProfileUnmarshaller().unmarshall(inputStream, profile);
    assertNotNull(profile);
    assertEquals(HardwareProfile1Response.id, profile.getId());
    assertEquals(HardwareProfile1Response.propMemValue + ' ' + HardwareProfile1Response.propMemUnit,
        profile.getMemory());
    assertEquals(HardwareProfile1Response.propStorageValue + ' ' + HardwareProfile1Response.propStorageUnit,
View Full Code Here


  @Test
  public void mixedPropertiesHardwareProfileMayBeUnmarshalled() throws MalformedURLException, JAXBException,
      DeltaCloudClientException {
    HardwareProfile profile = new HardwareProfile();
    ByteArrayInputStream inputStream = new ByteArrayInputStream(HardwareProfile2Response.response.getBytes());
    new HardwareProfileUnmarshaller().unmarshall(inputStream, profile);
    assertNotNull(profile);
    assertEquals(HardwareProfile2Response.id, profile.getId());
    assertEquals(HardwareProfile2Response.propMemValue + ' ' + HardwareProfile2Response.propMemUnit,
        profile.getMemory());
    Property property = profile.getNamedProperty(Property.Names.MEMORY);
View Full Code Here

  @Override
  public HardwareProfile listProfile(String profileId) throws DeltaCloudClientException {
    try {
      InputStream response = request(new ListHardwareProfileRequest(baseUrl, profileId));
      return new HardwareProfileUnmarshaller().unmarshall(response, new HardwareProfile());
    } catch (DeltaCloudClientException e) {
      throw e;
    } catch (Exception e) {
      throw new DeltaCloudClientException(e);
    }
View Full Code Here

TOP

Related Classes of org.apache.deltacloud.client.unmarshal.HardwareProfileUnmarshaller

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.