Package org.hdiv.config

Examples of org.hdiv.config.StartPage


  protected List<StartPage> getExclusions() {

    List<StartPage> exclusions = new ArrayList<StartPage>();
    for (String pattern : this.urlPatterns) {
      StartPage startPage = new StartPage(this.method, pattern);
      exclusions.add(startPage);
    }
    return exclusions;
  }
View Full Code Here


    String value = node.getTextContent();

    List<String> patterns = this.convertToList(value);
    for (int i = 0; i < patterns.size(); i++) {
      String pattern = (String) patterns.get(i);
      StartPage startPage = new StartPage(method, pattern);
      this.startPages.add(startPage);
    }

    bean.getPropertyValues().addPropertyValue("userStartPages", this.startPages);
  }
View Full Code Here

TOP

Related Classes of org.hdiv.config.StartPage

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.