Package com.dotcms.publishing

Examples of com.dotcms.publishing.PublisherConfig


    //Save the endpoint.
    publisherEndPointAPI.saveEndPoint( receivingFromEndpoint );

    //Find the bundle
    Bundle bundle = APILocator.getBundleAPI().getBundleById( bundleId );
    PublisherConfig basicConfig = new PublisherConfig();
    basicConfig.setId( bundleId );
    File bundleRoot = BundlerUtil.getBundleRoot( basicConfig );
    File bundleFile = new File( bundleRoot + File.separator + ".." + File.separator + bundle.getId() + ".tar.gz" );
   
    //lets wait one minute
    Thread.sleep( 60000 );
View Full Code Here


    /*
     * Find the bundle
     */
    Bundle bundle = APILocator.getBundleAPI().getBundleById( bundleId );
    PublisherConfig basicConfig = new PublisherConfig();
    basicConfig.setId( bundleId );
    File bundleRoot = BundlerUtil.getBundleRoot( basicConfig );
    File bundleFile = new File( bundleRoot + File.separator + ".." + File.separator + bundle.getId() + ".tar.gz" );
    assertTrue( bundleFile.exists() );

    /*
 
View Full Code Here

    /*
     * Find the bundle
     */
    Bundle bundle = APILocator.getBundleAPI().getBundleById( bundleId );
    PublisherConfig basicConfig = new PublisherConfig();
    basicConfig.setId( bundleId );
    File bundleRoot = BundlerUtil.getBundleRoot( basicConfig );
    File bundleFile = new File( bundleRoot + File.separator + ".." + File.separator + bundle.getId() + ".tar.gz" );
    assertTrue( bundleFile.exists() );

    /*
 
View Full Code Here

    public void run() {
      //Configure and Invoke the Publisher
      Logger.info(PublishThread.class, "Started bundle publish process");
    PushPublishLogger.log(PublishThread.class, "Started bundle publish process", bundleName);

    PublisherConfig pconf = new PublisherConfig();
    BundlePublisher bundlePublisher = new BundlePublisher();
    pconf.setId(bundleName);
    pconf.setEndpoint(endpointId);
    pconf.setGroupId(groupId);
    try {
      bundlePublisher.init(pconf);
      bundlePublisher.process(null);
    } catch (DotPublishingException e) {
      Logger.error("Failed to publish because an error occurred: ", e.getMessage());
View Full Code Here

TOP

Related Classes of com.dotcms.publishing.PublisherConfig

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.