Package org.openntf.domino.design

Examples of org.openntf.domino.design.FileResource


  public JSR223Tasklet(final String scriptName, final Database database) {
    int extIndex = scriptName.lastIndexOf('.');
    scriptExt_ = scriptName.substring(extIndex + 1);

    DatabaseDesign design = database.getDesign();
    FileResource script = design.getAnyFileResource(scriptName);
    script_ = new String(script.getFileData());
    databasePath_ = database.getApiPath();
  }
View Full Code Here

TOP

Related Classes of org.openntf.domino.design.FileResource

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.