Ejemplo n.º 1
0
  @Override
  public void create() throws ResourceAllocationException {

    Volume volume = this._volumeService.allocVolume(this);
    if (volume != null) {
      this.setEntityId(volume.getId());
      this.setEntityUuid(volume.getUuid());
    } else {
      throw new ServerApiException(ApiErrorCode.INTERNAL_ERROR, "Failed to create volume");
    }
  }