Package com.linkedin.restli.server

Examples of com.linkedin.restli.server.RoutingException


  }

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


  @Override
  public void update(final K 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 K key, final Callback<UpdateResponse> callback)
  {
    throw new RoutingException("'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

{
  /** @see com.linkedin.restli.server.resources.AssociationResource#getAll(com.linkedin.restli.server.PagingContext) */
  @Override
  public List<V> getAll(PagingContext pagingContext)
  {
    throw new RoutingException("'getAll(PagingContext)' not implemented", 400);
  }
View Full Code Here

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

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

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

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

   * @see AssociationResource#delete
   */
  @Override
  public UpdateResponse delete(final CompoundKey key)
  {
    throw new RoutingException("'delete' 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.