Package org.springframework.shell.plugin

Examples of org.springframework.shell.plugin.HistoryFileNameProvider


   * <link>org.springframework.core.Ordered.getOder</link> will win.
   *
   * @return history file name
   */
  protected String getHistoryFileName() {
    HistoryFileNameProvider historyFileNameProvider = PluginUtils.getHighestPriorityProvider(this.applicationContext,HistoryFileNameProvider.class);
    String providerHistoryFileName = historyFileNameProvider.getHistoryFileName();
    if (providerHistoryFileName != null) {
      return providerHistoryFileName;
    } else {
      return historyFileName;
    }
View Full Code Here

TOP

Related Classes of org.springframework.shell.plugin.HistoryFileNameProvider

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.