Package org.pentaho.reporting.libraries.docbundle.bundleloader

Examples of org.pentaho.reporting.libraries.docbundle.bundleloader.RepositoryResourceBundleData


    if (data instanceof RepositoryResourceBundleData == false)
    {
      throw new ContentNotRecognizedException("No valid handler for the given content.");
    }

    final RepositoryResourceBundleData bdata = (RepositoryResourceBundleData) data;
    final Repository repository = bdata.getRepository();
    try
    {
      final StaticDocumentBundle bundle = new StaticDocumentBundle(repository, manager, bdata.getBundleKey());
      return new SimpleResource(data.getKey(), bundle, getFactoryType(), data.getVersion(manager));
    }
    catch (ResourceException e)
    {
      throw new ResourceCreationException("Unable to interpret document-bundle", e);
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.libraries.docbundle.bundleloader.RepositoryResourceBundleData

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.