Package com.linkedin.restli.server

Examples of com.linkedin.restli.server.RoutingException


  }

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


  }

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

  }

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

    ResourceContextHolder implements CollectionResourceAsync<K, V>
{
  @Override
  public void get(final K key, final Callback<V> callback)
  {
    throw new RoutingException("'get' not implemented", 400);

  }
View Full Code Here

  }

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

  }

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

  }

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

  }

  @Override
  public void batchUpdate(BatchPatchRequest<K, V> patches, Callback<BatchUpdateResult<K, V>> callback)
  {
    throw new RoutingException("'batch_patch' not implemented", 400);
  }
View Full Code Here

  }

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

  }

  @Override
  public void batchDelete(BatchDeleteRequest<K, V> ids, Callback<BatchUpdateResult<K, V>> callback)
  {
    throw new RoutingException("'batch_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.