Package org.sonatype.nexus.mindexer.client

Examples of org.sonatype.nexus.mindexer.client.SearchResponse


        }
      }
    }
    final Integer from = response.getFrom() != -1 ? response.getFrom() : null;
    final Integer count = response.getCount() != -1 ? response.getCount() : null;
    return new SearchResponse(searchRequest, response.getTotalCount(), from, count, response.isTooManyResults(),
        response.isCollapsed(), hits);
  }
View Full Code Here

TOP

Related Classes of org.sonatype.nexus.mindexer.client.SearchResponse

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.