Package it.eng.spagobi.hotlink.rememberme.bo

Examples of it.eng.spagobi.hotlink.rememberme.bo.HotLink


    }
    return toReturn;
  }
 
  private Object toHotLink(Object[] row) {
    HotLink toReturn = new HotLink();
    toReturn.setObjId((Integer) row[1]);
    toReturn.setDocumentLabel((String) row[2]);
    toReturn.setDocumentName((String) row[3]);
    toReturn.setDocumentDescription((String) row[4]);
    toReturn.setDocumentType((String) row[5]);
    toReturn.setSubObjId((Integer) row[6]);
    toReturn.setSubObjName((String) row[7]);
    toReturn.setParameters((String) row[8]);
    toReturn.setEngineName((String) row[9]);
    return toReturn;
  }
View Full Code Here

TOP

Related Classes of it.eng.spagobi.hotlink.rememberme.bo.HotLink

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.