Examples of RealmUnmarshaller


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

  @Test
  public void realmMayBeUnmarshalled() throws DeltaCloudClientException {
    Realm realm = new Realm();
    ByteArrayInputStream inputStream = new ByteArrayInputStream(RealmResponseFakes.realmResponse.response.getBytes());
    new RealmUnmarshaller().unmarshall(inputStream, realm);
    assertNotNull(realm);
    assertEquals(RealmResponseFakes.realmResponse.id, realm.getId());
    assertEquals(RealmResponseFakes.realmResponse.name, realm.getName());
    assertEquals(RealmState.valueOf(RealmResponseFakes.realmResponse.state.toUpperCase()), realm.getState());
    assertEquals(RealmResponseFakes.realmResponse.getIntLimit(), realm.getLimit());
View Full Code Here

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

  @Test
  public void emptyLimitSetsDefaultLimit() throws DeltaCloudClientException {
    Realm realm = new Realm();
    ByteArrayInputStream inputStream = new ByteArrayInputStream(RealmResponseFakes.invalidLimitRealmResponse.response.getBytes());
    new RealmUnmarshaller().unmarshall(inputStream, realm);
    assertNotNull(realm);
    assertEquals(Realm.LIMIT_DEFAULT, realm.getLimit());
  }
View Full Code Here

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

  @Test
  public void invalidStateSetsUNKNOWNState() throws DeltaCloudClientException {
    Realm realm = new Realm();
    ByteArrayInputStream inputStream = new ByteArrayInputStream(RealmResponseFakes.invalidLimitRealmResponse.response.getBytes());
    new RealmUnmarshaller().unmarshall(inputStream, realm);
    assertNotNull(realm);
    assertEquals(Realm.LIMIT_DEFAULT, realm.getLimit());
  }
View Full Code Here

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

  @Override
  public Realm listRealms(String realmId) throws DeltaCloudClientException {
    try {
      InputStream response = request(new ListRealmRequest(baseUrl, realmId));
      return new RealmUnmarshaller().unmarshall(response, new Realm());
    } catch (Exception e) {
      throw new DeltaCloudClientException(
          MessageFormat.format("could not get realms on cloud at \"{0}\"", baseUrl), e);
    }
  }
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.