1 package org.kuali.ole.docstore.common.client; 2 3 /** 4 * Created with IntelliJ IDEA. 5 * User: arunag 6 * Date: 12/30/13 7 * Time: 6:44 PM 8 * To change this template use File | Settings | File Templates. 9 */ 10 public interface DocstoreClientLocatorService { 11 12 public boolean hasDocstoreLocalClient()throws Exception; 13 14 public Object getDocstoreLocalClient()throws Exception; 15 16 public DocstoreRestClient getRestClient()throws Exception; 17 }