Package org.apache.stratos.adc.mgt.dao

Examples of org.apache.stratos.adc.mgt.dao.CartridgeSubscription


  public void notifyRepoUpdate(String tenantDomain, String cartridgeAlias) throws Exception {
    // FIXME Throwing generic Exception is wrong
    log.info("Updating repository of tenant : " + tenantDomain + " , cartridge: " +
        cartridgeAlias);

    CartridgeSubscription subscription = null;
    try {
      subscription = PersistenceManager.getSubscription(tenantDomain, cartridgeAlias);
    } catch (Exception e) {
      String msg = "Failed to find subscription for " + cartridgeAlias + ". "
          + (e.getMessage() != null ? e.getMessage() : "");
View Full Code Here

TOP

Related Classes of org.apache.stratos.adc.mgt.dao.CartridgeSubscription

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.