Package com.linkedin.restli.server

Examples of com.linkedin.restli.server.RoutingException


  }

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


  }

  @Override
  public Promise<UpdateResponse> delete()
  {
    throw new RoutingException("'delete' not implemented", 400);
  }
View Full Code Here

    extends ResourceContextHolder implements ComplexKeyResourcePromise<K, P, V>
{
  @Override
  public Promise<CreateResponse> create(V entity)
  {
    throw new RoutingException("'create' not implemented", 400);
  }
View Full Code Here

  }

  @Override
  public Promise<Map<ComplexResourceKey<K, P>, V>> batchGet(Set<ComplexResourceKey<K, P>> ids)
  {
    throw new RoutingException("'batch_get' not implemented", 400);
  }
View Full Code Here

  }

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

  }

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

  }

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

  }

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

  }

  @Override
  public Promise<V> get(ComplexResourceKey<K, P> key)
  {
    throw new RoutingException("'get' not implemented", 400);
  }
View Full Code Here

  }

  @Override
  public Promise<UpdateResponse> update(ComplexResourceKey<K, P> key, 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.