Package org.apache.axis2.description

Examples of org.apache.axis2.description.AxisModule


        //get the axis serviceName from the axis configuration instance
        AxisService axisService = this.getAxisService(serviceName);

        //get the throttle module from the current axis config
        AxisModule module = axisService.getAxisConfiguration().getModule(
                ThrottleComponentConstants.THROTTLE_MODULE);

        String servicePath = RegistryResources.SERVICE_GROUPS
                + axisService.getAxisServiceGroup().getServiceGroupName()
                + RegistryResources.SERVICES + serviceName;
View Full Code Here


        if (log.isDebugEnabled()) {
            log.debug("Globally engaging throttling");
        }

        //get the throttle module from the current axis config
        AxisModule module = this.axisConfig.getModule(ThrottleComponentConstants.THROTTLE_MODULE);
        String resourcePath = getModuleResourcePath(module);

        try {
            String globalPath = PersistenceUtils.getResourcePath(module);
            if (registry.resourceExists(globalPath)) {
                Resource resource = registry.get(globalPath);
                if (!Boolean.parseBoolean(resource
                        .getProperty(GLOBALLY_ENGAGED_CUSTOM))) {
                    resource.removeProperty(GLOBALLY_ENGAGED_CUSTOM);
                    resource.addProperty(GLOBALLY_ENGAGED_CUSTOM, Boolean.TRUE.toString());
                    registry.put(globalPath, resource);
                }
            } else {
                Resource globalResource = registry.newResource();
                globalResource.addProperty(GLOBALLY_ENGAGED_CUSTOM, Boolean.TRUE.toString());
                registry.put(globalPath, globalResource);
            }
        } catch (RegistryException e) {
            log.error("Error occured in globally engaging throttlin at registry", e);
            throw new ThrottleComponentException("errorEngagingModuleAtRegistry");
        }

        XmlPrimtiveAssertion assertion = this.getThrottlePolicy(module
                .getPolicySubject().getAttachedPolicyComponents());

        //build builtPolicy according to received parameters
        OMElement policyElement = this.buildPolicy(policy,
                assertion, ThrottleComponentConstants.GLOBAL_LEVEL);
        Policy builtPolicy = PolicyEngine.getPolicy(policyElement);

        //if we didn't find an already existing builtPolicy, attach a new one
        Policy policyToPersist = builtPolicy;
        if (assertion == null) {
            module.getPolicySubject().attachPolicy(builtPolicy);
        } else {
            module.getPolicySubject().updatePolicy(policyToUpdate);
            policyToPersist = policyToUpdate;
        }

        //persist the throttle builtPolicy into registry
        try {
            Resource policyResource = registry.newResource();
            policyResource.setProperty(RegistryResources.ModuleProperties.POLICY_TYPE,
                    "" + PolicyInclude.AXIS_MODULE_POLICY);
            policyResource.setProperty(RegistryResources.ModuleProperties.POLICY_UUID,
                    policyToPersist.getId());
            policyResource.setProperty(RegistryResources.ModuleProperties.VERSION,
                    module.getVersion().toString());
            this.persistPoliciesToRegistry(policyToPersist, resourcePath, null, policyResource);
        } catch (Exception e) {
            log.error("Error occured while saving the builtPolicy in registry", e);
            throw new ThrottleComponentException("errorSavingPolicy");
        }

        module.addParameter(new Parameter(GLOBALLY_ENGAGED_PARAM_NAME, Boolean.TRUE.toString()));

        //engage the module for every service which is not an admin service
        try {
            registry.beginTransaction();
            for (Iterator serviceIter = this.axisConfig.getServices().values().iterator();
View Full Code Here

        //get the axis service from the axis configuration instance
        AxisService axisService = this.getAxisService(serviceName);

        //get the throttle module from the current axis config
        AxisModule module = axisService.getAxisConfiguration().getModule(
                ThrottleComponentConstants.THROTTLE_MODULE);

        if (axisService.isEngaged(module)) {
            return true;
        }
View Full Code Here

        }
        try {
            AxisService axisService = this.getAxisService(serviceName);

            //get the throttle module from the current axis config
            AxisModule module = axisService.getAxisConfiguration().getModule(
                    ThrottleComponentConstants.THROTTLE_MODULE);

            //if throttling is already engaged in service level, don't disengage it in op level
            if (axisService.isEngaged(module)) {
                return true;
View Full Code Here

                    + RegistryResources.SERVICES + serviceName;

            //disengage the throttling module
            try {
                //get the throttle module from the current axis config
                AxisModule module = axisService.getAxisConfiguration().getModule(
                        ThrottleComponentConstants.THROTTLE_MODULE);

                // disengage at registry
                registry.removeAssociation(servicePath, getModuleResourcePath(module),
                        RegistryResources.Associations.ENGAGED_MODULES);
View Full Code Here

            log.debug("Disengaging globally engaged throttling");
        }
        //disengage the throttling module
        try {
            //get the throttle module from the current axis config
            AxisModule module = this.axisConfig
                    .getModule(ThrottleComponentConstants.THROTTLE_MODULE);

            String resourcePath = getModuleResourcePath(module);

            String globalPath = PersistenceUtils.getResourcePath(module);
            if (registry.resourceExists(globalPath)) {
                Resource resource = registry.get(globalPath);
                if (Boolean.parseBoolean(resource
                        .getProperty(GLOBALLY_ENGAGED_CUSTOM))) {
                    resource.removeProperty(GLOBALLY_ENGAGED_CUSTOM);
                    resource.addProperty(GLOBALLY_ENGAGED_CUSTOM, "false");
                    registry.put(globalPath, resource);
                }
            }

            Parameter param = module.getParameter(GLOBALLY_ENGAGED_PARAM_NAME);
            if (param != null) {
                module.removeParameter(module.getParameter(GLOBALLY_ENGAGED_PARAM_NAME));
            }

            //disengage throttling from all the services which are not admin services
            for (Iterator serviceIter = this.axisConfig.getServices().values().iterator();
                 serviceIter.hasNext();) {
View Full Code Here

        //object to be returned
        ThrottlePolicy currentConfig = new ThrottlePolicy();

        //Set whether module is currently engaged or not
        AxisModule module = service.getAxisConfiguration()
                .getModule(ThrottleComponentConstants.THROTTLE_MODULE);
        currentConfig.setEngaged(service.isEngaged(module));

        XmlPrimtiveAssertion assertion = this.getThrottlePolicy(service
                .getPolicySubject().getAttachedPolicyComponents());
View Full Code Here

        //object to be returned
        ThrottlePolicy currentConfig = new ThrottlePolicy();

        //Set whether module is currently engaged or not
        AxisModule module = this.axisConfig
                .getModule(ThrottleComponentConstants.THROTTLE_MODULE);

        Parameter param = module.getParameter(GLOBALLY_ENGAGED_PARAM_NAME);
        if (param != null) {
            String globallyEngaged = (String) param.getValue();
            if (globallyEngaged != null && globallyEngaged.length() != 0) {
                currentConfig.setEngaged(Boolean.parseBoolean(globallyEngaged.trim()));
            }
        }

        XmlPrimtiveAssertion assertion = this.getThrottlePolicy(module
                .getPolicySubject().getAttachedPolicyComponents());

        return preparePolicyConfigs(assertion, currentConfig);
    }
View Full Code Here

        //object to be returned
        ThrottlePolicy currentConfig = new ThrottlePolicy();

        //Set whether module is currently engaged or not
        AxisModule module = service.getAxisConfiguration()
                .getModule(ThrottleComponentConstants.THROTTLE_MODULE);
        currentConfig.setEngaged((operation.isEngaged(module) || service.isEngaged(module)));

        XmlPrimtiveAssertion assertion = null;
        if (service.isEngaged(module)) {
View Full Code Here

                            throttle = defaultThrottle;
                        }
                        //todo - done by isuru, recheck
                    } else {
                        AxisConfiguration axisConfig = configctx.getAxisConfiguration();
                        AxisModule throttleModule = axisConfig.getModule(
                                ThrottleConstants.THROTTLE_MODULE_NAME);
                        policySubject = throttleModule.getPolicySubject();
                        if (policySubject != null) {
                            currentPolicy = ThrottleEnguageUtils.getThrottlePolicy(
                                    policySubject.getAttachedPolicyComponents());
                            if (currentPolicy != null) {
                                throttle = ThrottleFactory.createModuleThrottle(currentPolicy);
View Full Code Here

TOP

Related Classes of org.apache.axis2.description.AxisModule

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.