Package org.springsource.loaded.agent

Examples of org.springsource.loaded.agent.ReloadDecision


    //    if (/*slashedName.indexOf("/$Proxy") != -1 || */slashedName.indexOf("javassist") != -1) {
    //      return false;
    //    }

    for (IsReloadableTypePlugin plugin : SpringLoadedPreProcessor.getIsReloadableTypePlugins()) {
      ReloadDecision decision = plugin.shouldBeMadeReloadable(this,slashedName, protectionDomain, bytes);
      if (decision == ReloadDecision.YES) {
        if (GlobalConfiguration.explainMode && log.isLoggable(Level.FINER)) {
          log.finer("[explanation] The plugin "+plugin.getClass().getName()+" determined type "+slashedName+" is reloadable");
        }
        return true;
View Full Code Here

TOP

Related Classes of org.springsource.loaded.agent.ReloadDecision

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.