FileDocCategorySizeDatePackage
BlockedIpImpl.javaAPI DocAzureus 3.0.3.41791Tue Aug 09 00:41:14 BST 2005org.gudy.azureus2.core3.ipfilter.impl

BlockedIpImpl

public class BlockedIpImpl extends Object implements org.gudy.azureus2.core3.ipfilter.BlockedIp
author
Olivier

Fields Summary
private String
ip
private long
time
private org.gudy.azureus2.core3.ipfilter.IpRange
range
private String
torrentname
private boolean
loggable
Constructors Summary
public BlockedIpImpl(String ip, org.gudy.azureus2.core3.ipfilter.IpRange range, String torrent_name, boolean _loggable)

    this.ip = ip;
    this.range = range;
    this.time = SystemTime.getCurrentTime();
    this.torrentname = torrent_name;
    loggable = _loggable;
  
Methods Summary
public java.lang.StringgetBlockedIp()

    return this.ip;
  
public longgetBlockedTime()

    return time;
  
public org.gudy.azureus2.core3.ipfilter.IpRangegetBlockingRange()

    return this.range;
  
public java.lang.StringgetTorrentName()

    return torrentname;
  
public booleanisLoggable()

	  return( loggable );