Package org.cipango.kaleo.xcap.dao

Examples of org.cipango.kaleo.xcap.dao.XcapDao


  }
 
  public static void setContent(XcapService xcapService, File xcapRoot, String xcapUri) throws Exception
  {
   
    XcapDao dao = xcapService.getDao();
    XcapUri uri = new XcapUri(xcapUri, xcapService.getRootName());
    if (dao instanceof FileXcapDao)
    {
      String doc = uri.getDocumentSelector().replace(":", "%3A");
      File sourceFile = new File("target/test-classes/xcap-root", doc);
View Full Code Here

TOP

Related Classes of org.cipango.kaleo.xcap.dao.XcapDao

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.