Package com.linkedin.restli.server

Examples of com.linkedin.restli.server.RoutingException


  @Override
  public void batchDelete(BatchDeleteRequest<ComplexResourceKey<K, P>, V> ids,
                          Callback<BatchUpdateResult<ComplexResourceKey<K, P>, V>> callback)
  {
    throw new RoutingException("'batch_delete' not implemented", 400);
  }
View Full Code Here


  }

  @Override
  public void getAll(PagingContext ctx, Callback<List<V>> callback)
  {
    throw new RoutingException("'get_all' not implemented", 400);
  }
View Full Code Here

  }

  @Override
  public void update(final ComplexResourceKey<K, P> key, final V entity, final Callback<UpdateResponse> callback)
  {
    throw new RoutingException("'update' not implemented", 400);
  }
View Full Code Here

  @Override
  public void update(final ComplexResourceKey<K, P> key,
                     final PatchRequest<V> patch,
                     final Callback<UpdateResponse> callback)
  {
    throw new RoutingException("'update' not implemented", 400);
  }
View Full Code Here

  }

  @Override
  public void delete(final ComplexResourceKey<K, P> key, final Callback<UpdateResponse> callback)
  {
    throw new RoutingException("'delete' not implemented", 400);
  }
View Full Code Here

   * @see SimpleResource#get
   */
  @Override
  public V get()
  {
    throw new RoutingException("'get' not implemented", 400);
  }
View Full Code Here

   * @see SimpleResource#update
   */
  @Override
  public UpdateResponse update(final V entity)
  {
    throw new RoutingException("'update' not implemented", 400);
  }
View Full Code Here

   * @see SimpleResource#update
   */
  @Override
  public UpdateResponse update(PatchRequest<V> patch)
  {
    throw new RoutingException("'update' not implemented", 400);
  }
View Full Code Here

   * @see SimpleResource#delete
   */
  @Override
  public UpdateResponse delete()
  {
    throw new RoutingException("'delete' not implemented", 400);
  }
View Full Code Here

  @Override
  public void batchGet(final Set<CompoundKey> ids,
                       final Callback<Map<CompoundKey, V>> callback)
  {
    throw new RoutingException("'batch_get' not implemented", 400);
  }
View Full Code Here

TOP

Related Classes of com.linkedin.restli.server.RoutingException

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.