Package org.jwall.rbl.data

Examples of org.jwall.rbl.data.RblFile.search()


    log.info("  file is {}", file);

    try {
      RblFile rbl = new RblFile(file);

      List<RBListEntry> list = rbl.search("*");
      for (RBListEntry entry : list) {
        log.info("{}", entry);
        log.info("  Entry for {}", entry.getName());
        log.info("  Created at {}", new Date(entry.getCreated()));
        log.info("  Expires in {}", new Date(entry.getExpiresAt()));
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.