Examples of PaginatedLogInfo


Examples of org.wso2.carbon.logging.service.data.PaginatedLogInfo

  public PaginatedLogInfo getPaginatedLogInfo(int pageNumber, String tenantDomain, String serviceName)
      throws Exception {
    List<LogInfo> logInfoList = Arrays.asList(LoggingUtil.getLogsIndex(tenantDomain, serviceName));
    // Pagination
    PaginatedLogInfo paginatedLogInfo = new PaginatedLogInfo();
    DataPaginator.doPaging(pageNumber, logInfoList, paginatedLogInfo);
    return paginatedLogInfo;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.