Example #1
0
  @RequestMapping(
      value = GET_COLLECTION_REQUEST,
      method = {RequestMethod.POST})
  public void getCollection(
      HttpServletRequest request,
      HttpServletResponse response,
      @RequestParam(value = "api", required = false) boolean api)
      throws IOException {

    if (apiRequested(response, api, GET_COLLECTION_REQUEST)) return;

    com.c9a.buffers.CatalogServiceRequestProtocalBuffer.GetCollectionRequest collectionRequest =
        com.c9a.buffers.CatalogServiceRequestProtocalBuffer.GetCollectionRequest.parseFrom(
            GoogleProtoclBufferRequestContentUtils.getContentForRequest(request));

    try {
      CatalogCollection catalogCollection =
          catalogService.getCollection(
              collectionRequest.getUserId(),
              collectionRequest.getPartitionId(),
              collectionRequest.getUniqueId());
      CatalogGPBUtils.generateCatalogCollectionResponseProtoBuf(
              com.c9a.buffers.CatalogServiceResponseProtocalBuffer.ResponseCode.SUCCESS,
              "",
              catalogCollection)
          .build()
          .writeTo(response.getOutputStream());
      return;
    } catch (CollectionNotFoundException e) {
      CatalogGPBUtils.generateCatalogCollectionResponseProtoBufError(
              com.c9a.buffers.CatalogServiceResponseProtocalBuffer.ResponseCode
                  .COLLECTION_NOT_FOUND,
              "The collection was not found with the give unique id : "
                  + collectionRequest.getUniqueId())
          .build()
          .writeTo(response.getOutputStream());
      return;
    }
  }
Example #2
0
        {
          put(
              ROOT_APPLICATION_COLLECTION_FOR_USER_REQUEST,
              new RequestResponse(
                  com.c9a.buffers.CatalogServiceRequestProtocalBuffer
                      .GetRootApplicationCollectionForUserRequest.newBuilder(),
                  com.c9a.buffers.CatalogServiceResponseProtocalBuffer.CatalogCollectionResponse
                      .newBuilder()));

          put(
              ROOT_PARTITION_COLLECTION_REQUEST,
              new RequestResponse(
                  com.c9a.buffers.CatalogServiceRequestProtocalBuffer
                      .GetRootPartitionCollectionRequest.newBuilder(),
                  com.c9a.buffers.CatalogServiceResponseProtocalBuffer.CatalogCollectionResponse
                      .newBuilder()));

          put(
              ROOT_USER_COLLECTION_REQUEST,
              new RequestResponse(
                  com.c9a.buffers.CatalogServiceRequestProtocalBuffer.GetUserRootCollectionRequest
                      .newBuilder(),
                  com.c9a.buffers.CatalogServiceResponseProtocalBuffer.CatalogCollectionResponse
                      .newBuilder()));

          put(
              GET_COLLECTION_REQUEST,
              new RequestResponse(
                  com.c9a.buffers.CatalogServiceRequestProtocalBuffer.GetCollectionRequest
                      .newBuilder(),
                  com.c9a.buffers.CatalogServiceResponseProtocalBuffer.CatalogCollectionResponse
                      .newBuilder()));

          put(
              ADD_COLLECTION_REQUEST,
              new RequestResponse(
                  com.c9a.buffers.CatalogServiceRequestProtocalBuffer.AddCollectionRequest
                      .newBuilder(),
                  com.c9a.buffers.CatalogServiceResponseProtocalBuffer.CatalogCollectionResponse
                      .newBuilder()));

          put(
              SHARE_COLLECTION_REQUEST,
              new RequestResponse(
                  com.c9a.buffers.CatalogServiceRequestProtocalBuffer.ShareCollectionRequest
                      .newBuilder(),
                  com.c9a.buffers.CatalogServiceResponseProtocalBuffer.Response.newBuilder()));

          put(
              SHARE_REFERENCE_REQUEST,
              new RequestResponse(
                  com.c9a.buffers.CatalogServiceRequestProtocalBuffer.ShareReferenceRequest
                      .newBuilder(),
                  com.c9a.buffers.CatalogServiceResponseProtocalBuffer.Response.newBuilder()));

          put(
              DELETE_COLLECTION_REQUEST,
              new RequestResponse(
                  com.c9a.buffers.CatalogServiceRequestProtocalBuffer.DeleteCatalogCollectionRequest
                      .newBuilder(),
                  com.c9a.buffers.CatalogServiceResponseProtocalBuffer.Response.newBuilder()));

          put(
              GET_REFERENCE_REQUEST,
              new RequestResponse(
                  com.c9a.buffers.CatalogServiceRequestProtocalBuffer.GetReferenceRequest
                      .newBuilder(),
                  com.c9a.buffers.CatalogServiceResponseProtocalBuffer.ReferenceResponse
                      .newBuilder()));

          put(
              ADD_DOCUMENT_REQUEST,
              new RequestResponse(
                  com.c9a.buffers.CatalogServiceRequestProtocalBuffer.AddDocumentRequest
                      .newBuilder(),
                  com.c9a.buffers.CatalogServiceResponseProtocalBuffer.ReferenceResponse
                      .newBuilder()));

          put(
              DELETE_REFERENCE_REQUEST,
              new RequestResponse(
                  com.c9a.buffers.CatalogServiceRequestProtocalBuffer.DeleteReferenceRequest
                      .newBuilder(),
                  com.c9a.buffers.CatalogServiceResponseProtocalBuffer.Response.newBuilder()));

          put(
              MODIFY_COLLECTION_REQUEST,
              new RequestResponse(
                  com.c9a.buffers.CatalogServiceRequestProtocalBuffer.ModifyCatalogCollectionRequest
                      .newBuilder(),
                  com.c9a.buffers.CatalogServiceResponseProtocalBuffer.CatalogCollectionResponse
                      .newBuilder()));

          put(
              MODIFY_REFERENCE_REQUEST,
              new RequestResponse(
                  com.c9a.buffers.CatalogServiceRequestProtocalBuffer.ModifyReferenceRequest
                      .newBuilder(),
                  com.c9a.buffers.CatalogServiceResponseProtocalBuffer.ReferenceResponse
                      .newBuilder()));
        }