Package com.dilanperera.rapidws.config

Examples of com.dilanperera.rapidws.config.ServiceDataMap


            throws UnavailableServiceException
    {
        OperationHandler operationHandler = null;

        // get service mapping
        ServiceDataMap serviceDataMap = ServiceConfiguration.getServiceDataMap();

        // get the service and operation name
        String serviceName = messageContext.getServiceName();
        String operationName = messageContext.getOperationName();

      serviceDataMap.save();

        // check whether the service has been mapped in configuration
        if (serviceDataMap.containsKey(serviceName))
        {
            // get service data from configuration mapping
            ServiceData serviceData = serviceDataMap.get(serviceName);

            // check whether the operation has been mapped in configuration
            if (serviceData.getOperations().containsKey(operationName))
            {
                // get operation data from configuration mapping
View Full Code Here

TOP

Related Classes of com.dilanperera.rapidws.config.ServiceDataMap

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.