Package de.chris_soft.nanodoa.web

Examples of de.chris_soft.nanodoa.web.DocumentRetrievalWebsite


    String link = "";
    if (Boolean.parseBoolean(AppProperties.getProperty(PROP_KEY_DOCUMENT_SERVER_SHALL_USE))) {
      String serverName = AppProperties.getProperty(PROP_KEY_DOCUMENT_SERVER_NAME);
      String port = AppProperties.getProperty(PROP_KEY_DOCUMENT_SERVER_PORT);
      // String serverMethod = DocumentServer.DOCUMENT_RETRIEVAL_METHOD;
      String serverMethod = new DocumentRetrievalWebsite().getWebsiteName();
      String docParm = WebsiteVariableConstants.varnameDocumentID + "=" + docID;
      String href = "http://" + serverName + ":" + port + "/" + serverMethod + "?" + docParm + "";
      link = "<p><a href=\"" + href + "\">Link zu " + docID + "</a></p>";
    }
    if (Boolean.parseBoolean(AppProperties.getProperty(MailKeys.PROP_KEY_SET_FULLTEXT_INTO_MAIL_BODY))) {
View Full Code Here

TOP

Related Classes of de.chris_soft.nanodoa.web.DocumentRetrievalWebsite

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.