1
0
mirror of https://github.com/Rogiel/httpchannel synced 2025-12-05 23:22:51 +00:00

Implements a new, more clean and robust HTML parser

This commit is contained in:
2012-05-06 16:04:56 -03:00
parent 4a9da1708e
commit 0386906356
33 changed files with 1619 additions and 981 deletions

View File

@@ -153,6 +153,20 @@ public interface AccountDetails {
long getMaximumBandwidth();
}
/**
* Service accounts that has accounts with hotlink traffic should implement
* this interface
*
* @author <a href="http://www.rogiel.com">Rogiel</a>
*/
public interface HotLinkingAccountDetails extends AccountDetails {
/**
* @return the currently free hotlink traffic. <code>-1</code> means no
* limit
*/
long getHotlinkTraffic();
}
/**
* Service accounts that has accounts with limited bandwidth should
* implement this interface