Package com.linkedin.restli.server

Examples of com.linkedin.restli.server.RoutingException


  }

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


  @Override
  public void batchUpdate(BatchUpdateRequest<CompoundKey, V> entities,
                          Callback<BatchUpdateResult<CompoundKey, V>> callback)
  {
    throw new RoutingException("'batch_update' not implemented", 400);
  }
View Full Code Here

  @Override
  public void batchUpdate(BatchPatchRequest<CompoundKey, V> patches,
                          Callback<BatchUpdateResult<CompoundKey, V>> callback)
  {
    throw new RoutingException("'batch_patch' 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 get(final CompoundKey key,
                  final Callback<V> callback)
  {
    throw new RoutingException("'get' not implemented", 400);
  }
View Full Code Here

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

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

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

    extends ResourceContextHolder implements SimpleResourcePromise<V>
{
  @Override
  public Promise<V> get()
  {
    throw new RoutingException("'get' not implemented", 400);
  }
View Full Code Here

  }

  @Override
  public Promise<UpdateResponse> update(V entity)
  {
    throw new RoutingException("'update' 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.