Package org.onebusaway.wiki.api

Examples of org.onebusaway.wiki.api.WikiAttachmentContent


    if (index == -1)
      return INPUT;
    String pageName = name.substring(0, index);
    name = name.substring(index + 1);

    WikiAttachmentContent content = _wikiDocumentService.getWikiAttachmentContent(
        _namespace, pageName, name, getLocale(), _forceRefresh);

    if (content == null)
      return "404";

    _inputStream = content.getContent();
    _contentType = content.getContentType();
    return "raw";
  }
View Full Code Here

TOP

Related Classes of org.onebusaway.wiki.api.WikiAttachmentContent

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.