/** @deprecated in favour of {@link ServiceImplementation#queryFullText(QueryPageRequest)} */
 @WebRemote
 @LoggedIn
 public TableDataResult queryFullText(String text, boolean seekArchived, int skip, int numRows)
     throws SerializationException {
   if (numRows == 0) {
     throw new DetailedSerializationException(
         "Unable to return zero results (bug)",
         "probably have the parameters around the wrong way, sigh...");
   }
   return repositoryAssetOperations.queryFullText(text, seekArchived, skip, numRows);
 }