Package railo.commons.io.res.util

Examples of railo.commons.io.res.util.WildcardPatternFilter


   
    if(source!=null) {
      notAllowed("source","charset", charset);
      notAllowed("source","content", content);
   
      WildcardPatternFilter f = ( filter == null ? null : new WildcardPatternFilter( filter ) );
      getZip().setParam( new ZipParamSource( source, entryPath, f, prefix, recurse() ) );   
    }
    else if(content!=null) {
      required("content","entrypath",entryPath);
      notAllowed("content,entrypath","filter", filter);
View Full Code Here


   * @param filter the filter to set
   */
  public void setFilter(String filter) {
   
    if ( !filter.isEmpty() )
      this.filter = new WildcardPatternFilter( filter );
  }
View Full Code Here

TOP

Related Classes of railo.commons.io.res.util.WildcardPatternFilter

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.