View Javadoc
1   package org.kuali.ole.service;
2   
3   import java.sql.Connection;
4   import java.sql.ResultSet;
5   
6   /**
7    * Created with IntelliJ IDEA.
8    * User: srinivasane
9    * Date: 4/10/14
10   * Time: 3:06 PM
11   * To change this template use File | Settings | File Templates.
12   */
13  public interface DataBaseConnectionService {
14         public ResultSet getResults(String query);
15         public Connection getConnection();
16  }