Package org.apache.axis2.engine

Examples of org.apache.axis2.engine.AxisConfiguration.removeParameter()


      if(param!=null){
        config.removeParameter(param);
      }
      param = config.getParameter(Sandesha2Constants.PERMANENT_STORAGE_MANAGER);
      if(param!=null){
        config.removeParameter(param);
      }
    }
   
    if(log.isDebugEnabled()) log.debug("Exit: SandeshaModule::shutdown");
  }
View Full Code Here


        PersistentStorageManager persistentStorageManager = new PersistentStorageManager(configurationContext);
        persistentStorageManager.initStorage(sandeshaModule);

        Parameter permenentStorage = axisConfiguration.getParameter(Sandesha2Constants.PERMANENT_STORAGE_MANAGER);
        if (permenentStorage != null){
            axisConfiguration.removeParameter(permenentStorage);
        }
        // change the permenetent storage manager.
        axisConfiguration.addParameter(Sandesha2Constants.PERMANENT_STORAGE_MANAGER, persistentStorageManager);

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.