Package org.pentaho.platform.api.repository

Examples of org.pentaho.platform.api.repository.ISubscriptionRepository


      action = "/" + requestParams.getStringParameter( Parameter.ACTION, null ); //$NON-NLS-1$
    }

    final String fullPath = FilenameUtils.separatorsToUnix( solution + path + action );

    ISubscriptionRepository subscriptionRepository = PentahoSystem.get( ISubscriptionRepository.class, userSession );
    ISubscribeContent subscribeContent = subscriptionRepository.getContentByActionReference( fullPath ); //$NON-NLS-1$

    List<ISchedule> schedules = subscribeContent.getSchedules();

    String result = "[";
    for ( ISchedule schedule : schedules ) {
View Full Code Here

TOP

Related Classes of org.pentaho.platform.api.repository.ISubscriptionRepository

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.