Examples of RblFile


Examples of org.jwall.rbl.data.RblFile

    }

    try {
      if( p.getProperty( "rbl.file" ) != null )
        rblFile = new File( p.getProperty( "rbl.file" ) );
      rbl = new RblFile( rblFile );
    } catch (Exception e) {
      throw new Exception( "Failed to read rbl-list from file '" + "': " + e.getMessage() );
    }

View Full Code Here

Examples of org.jwall.rbl.data.RblFile

    log.info("Reading rbl list from {}", url);
    File file = new File(url.getFile());
    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

Examples of org.jwall.rbl.data.RblFile

    }

    try {
      if (p.getProperty(RBL_FILE) != null)
        rblFile = new File(p.getProperty(RBL_FILE));
      rbl = new RblFile(rblFile);
    } catch (Exception e) {
      throw new Exception("Failed to read rbl-list from file '" + "': "
          + e.getMessage());
    }
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.