Package com.linkedin.restli.server

Examples of com.linkedin.restli.server.RestLiResponseDataException


  @Override
  public void setCollectionResponsePaging(CollectionMetadata paging) throws RestLiResponseDataException
  {
    if (paging != null && !isCollectionResponse())
    {
      throw new RestLiResponseDataException("This method can be invoked only for collection responses");
    }
    _paging = paging;
  }
View Full Code Here


  @Override
  public void setCollectionResponseCustomMetadata(RecordTemplate metadata) throws RestLiResponseDataException
  {
    if (metadata != null && !isCollectionResponse())
    {
      throw new RestLiResponseDataException("This method can be invoked only for collection responses");
    }
    _collectionResponseCustomMetadata = metadata;
  }
View Full Code Here

TOP

Related Classes of com.linkedin.restli.server.RestLiResponseDataException

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.