Package org.serviceconnector.cache

Examples of org.serviceconnector.cache.SCCacheManager.clearAll()


      return;
    }

    if (Constants.CC_CMD_CLEAR_CACHE.equalsIgnoreCase(callKey)) {
      SCCacheManager cacheManager = AppContext.getCacheManager();
      cacheManager.clearAll();
      response.setSCMP(scmpReply);
      responderCallback.responseCallback(request, response);
      return;
    }
View Full Code Here


        return;
      }
      if ("clearCache".equals(action)) {
        XMLLoaderFactory.LOGGER.debug("clear cache by user interface");
        SCCacheManager cacheManager = AppContext.getCacheManager();
        cacheManager.clearAll();
        writer.writeStartElement("status");
        writer.writeCharacters("success");
        writer.writeEndElement();
        writer.writeStartElement("messages");
        writer.writeStartElement("message");
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.