Examples of ThrottlingException


Examples of org.apache.stratos.throttling.manager.exception.ThrottlingException

        try {
            session.execute(knowledgeBase);
        } catch (Exception e) {
            String msg = "Error occurred while executing the throttling rules: " + e.getMessage();
            log.error(msg);
            throw new ThrottlingException(msg, e);
        }
    }
View Full Code Here

Examples of org.apache.stratos.throttling.manager.exception.ThrottlingException

        }catch(Exception e){

            String msg = "Error occurred while initializing the rule executing environment: " + e.getMessage();
            log.error(msg);
            throw new ThrottlingException(msg, e);
        }

    }
View Full Code Here

Examples of org.apache.stratos.throttling.manager.exception.ThrottlingException

            Customer customer = Util.getCurrentBillingCustomer(tenantId);
            dataContext.addDataObject(ThrottlingDataEntryConstants.CUSTOMER, customer);
        } catch (RegistryException e) {
            String msg = "Error in getting the current customer. tenant id: " + tenantId + ".";
            log.error(msg, e);
            throw new ThrottlingException(msg, e);
        }
        // getting the package
        try {
            MultitenancyPackage mtPackage = Util.getCurrentBillingPackage(tenantId);
            dataContext.addDataObject(ThrottlingDataEntryConstants.PACKAGE, mtPackage);
        } catch (RegistryException e) {
            String msg = "Error in getting the multi-tenancy package. tenant id: " + tenantId + ".";
            log.error(msg, e);
            throw new ThrottlingException(msg, e);
        }
    }
View Full Code Here

Examples of org.apache.stratos.throttling.manager.exception.ThrottlingException

      if (dataProvider == null) {
        String msg =
                "The scheduler helper service: " +
                        dataProviderServiceName + " is not loaded.";
        log.error(msg);
        throw new ThrottlingException(msg);
      }
      dataProvider.init(dataProviderParameters);
    }
    return dataProvider;
  }
View Full Code Here

Examples of org.apache.stratos.throttling.manager.exception.ThrottlingException

                    CommonUtil.buildOMElement(new FileInputStream(throttlingConfigFile));
            deserialize(throttlingConfig);
        } catch (FileNotFoundException e) {
            String msg = "Unable to find the file: " + throttlingConfigFile + ".";
            log.error(msg, e);
            throw new ThrottlingException(msg, e);
        } catch (Exception e) {
            String msg = "Error in building the throttling config, config file: " +
                            throttlingConfigFile + ".";
            log.error(msg, e);
            throw new ThrottlingException(msg, e);
        }
    }
View Full Code Here

Examples of org.wso2.carbon.throttling.manager.exception.ThrottlingException

        } catch (Exception e) {
            String msg = "Error in retrieving Usage information. " + "tenant id: " + tenantId
                    + ", user name: " + userName + ".";
            log.error(msg, e);
            throw new ThrottlingException(msg, e);
        }

    }
View Full Code Here

Examples of org.wso2.carbon.throttling.manager.exception.ThrottlingException

            Customer customer = Util.getCurrentBillingCustomer(tenantId);
            dataContext.addDataObject(ThrottlingDataEntryConstants.CUSTOMER, customer);
        } catch (RegistryException e) {
            String msg = "Error in getting the current customer. tenant id: " + tenantId + ".";
            log.error(msg, e);
            throw new ThrottlingException(msg, e);
        }
        // getting the package
        try {
            MultitenancyPackage mtPackage = Util.getCurrentBillingPackage(tenantId);
            dataContext.addDataObject(ThrottlingDataEntryConstants.PACKAGE, mtPackage);
        } catch (RegistryException e) {
            String msg = "Error in getting the multi-tenancy package. tenant id: " + tenantId + ".";
            log.error(msg, e);
            throw new ThrottlingException(msg, e);
        }
    }
View Full Code Here

Examples of org.wso2.carbon.throttling.manager.exception.ThrottlingException

      if (dataProvider == null) {
        String msg =
                "The scheduler helper service: " +
                        dataProviderServiceName + " is not loaded.";
        log.error(msg);
        throw new ThrottlingException(msg);
      }
      dataProvider.init(dataProviderParameters);
    }
    return dataProvider;
  }
View Full Code Here

Examples of org.wso2.carbon.throttling.manager.exception.ThrottlingException

        try {
            task.prepareData(throttlingDataContext);
        } catch (ThrottlingException e) {
            String msg = "Error in preparing throttling data for tenant: " + tenantId + ".";
            log.error(msg, e);
            throw new ThrottlingException(msg, e);
        }

        // add data entries with object types separately
        for (ThrottlingDataEntry dataEntry : throttlingDataContext.getData()) {
            if (dataEntry.getValueType() == 4) {
                Object object = dataEntry.getObjectValue();
                if (object != null) {
                    knowledgeBase.add(object);
                }
            }
        }
        // load the access validation data
        try {
            ValidationInfoManager.loadValidationDetails(throttlingDataContext);
        } catch (ThrottlingException e) {
            String msg = "Error in loading validation details. tenant id: " + tenantId + ".";
            log.error(msg, e);
            throw new ThrottlingException(msg, e);
        }

        // add metering data context
        knowledgeBase.add(throttlingDataContext);
        // add access validation information
View Full Code Here

Examples of org.wso2.carbon.throttling.manager.exception.ThrottlingException

                    CommonUtil.buildOMElement(new FileInputStream(throttlingConfigFile));
            deserialize(throttlingConfig);
        } catch (FileNotFoundException e) {
            String msg = "Unable to find the file: " + throttlingConfigFile + ".";
            log.error(msg, e);
            throw new ThrottlingException(msg, e);
        } catch (Exception e) {
            String msg = "Error in building the throttling config, config file: " +
                            throttlingConfigFile + ".";
            log.error(msg, e);
            throw new ThrottlingException(msg, e);
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.