Example #1
0
  /**
   * creates the main cep service using details given in the configuration file
   *
   * @return - cep service
   * @throws org.wso2.carbon.cep.core.exception.CEPConfigurationException
   */
  public static CEPServiceInterface createCEPService() throws CEPConfigurationException {

    CEPService cepService = new CEPService();
    CEPServiceValueHolder.getInstance().setCepService(cepService);

    AxisConfiguration axisConfiguration =
        CEPServiceValueHolder.getInstance()
            .getConfigurationContextService()
            .getServerConfigContext()
            .getAxisConfiguration();

    List<NotDeployedBucketElement> unDeployedBuckets =
        CEPServiceValueHolder.getInstance().getNotDeployedBucketElements();
    for (NotDeployedBucketElement notDeployedBucketElement : unDeployedBuckets) {
      cepService.addBucket(
          BucketHelper.fromOM(notDeployedBucketElement.getBucket()),
          axisConfiguration,
          notDeployedBucketElement.getPath());
    }
    unDeployedBuckets.clear();
    return cepService;
  }
Example #2
0
 public static Bucket getBucket(OMElement omElement) throws CEPConfigurationException {
   return BucketHelper.fromOM(omElement);
 }
Example #3
0
 public static OMElement getOM(Bucket bucket) {
   return BucketHelper.bucketToOM(bucket);
 }