Package com.odb.view.dashboard.client.dto

Examples of com.odb.view.dashboard.client.dto.DataSourceInfo


   *
   * @param dataSourceInfo the data source info
   * @return the client data source info
   */
  public static DataSourceInfo getClientDataSourceInfo(com.odb.core.dao.dto.DataSourceInfo dataSourceInfo){
    DataSourceInfo dsi = new DataSourceInfo()
    dsi.setDataSourceID(dataSourceInfo.getDataSourceID());
    dsi.setPublisherID(dataSourceInfo.getPublisherID());
    dsi.setDataSourceName(dataSourceInfo.getDataSourceName());
    dsi.setTimeoutInterval(dataSourceInfo.getTimeoutInterval());
    dsi.setSeriesCount(dataSourceInfo.getSeriesCount());
    return dsi;
  }
View Full Code Here

TOP

Related Classes of com.odb.view.dashboard.client.dto.DataSourceInfo

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.