Package com.linkedin.restli.server

Examples of com.linkedin.restli.server.RoutingException


   * @see com.linkedin.restli.server.resources.CollectionResource#batchGet(java.util.Set)
   */
  @Override
  public Map<ComplexResourceKey<K, P>, V> batchGet(final Set<ComplexResourceKey<K, P>> ids)
  {
    throw new RoutingException("'batch_get' not implemented", 400);
  }
View Full Code Here


   * @see CollectionResource#get(Object)
   */
  @Override
  public V get(final ComplexResourceKey<K, P> key)
  {
    throw new RoutingException("'get' not implemented", 400);
  }
View Full Code Here

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

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

   * @see CollectionResource#delete(Object)
   */
  @Override
  public UpdateResponse delete(final ComplexResourceKey<K, P> key)
  {
    throw new RoutingException("'delete' not implemented", 400);
  }
View Full Code Here

  }

  @Override
  public BatchUpdateResult<ComplexResourceKey<K, P>, V> batchUpdate(final BatchUpdateRequest<ComplexResourceKey<K, P>, V> entities)
  {
    throw new RoutingException("'batch_update' not implemented", 400);
  }
View Full Code Here

  }

  @Override
  public BatchUpdateResult<ComplexResourceKey<K, P>, V> batchUpdate(final BatchPatchRequest<ComplexResourceKey<K, P>, V> patches)
  {
    throw new RoutingException("'batch_update' not implemented", 400);
  }
View Full Code Here

  }

  @Override
  public BatchCreateResult<ComplexResourceKey<K, P>, V> batchCreate(final BatchCreateRequest<ComplexResourceKey<K, P>, V> entities)
  {
    throw new RoutingException("'batch_create' not implemented", 400);
  }
View Full Code Here

  }

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

  extends ResourceContextHolder implements SimpleResourceTask<V>
{
  @Override
  public Task<V> get()
  {
    throw new RoutingException("'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.