(Record rec, int cred, long maxttl)
| 42 | int expire; |
| 43 | |
| 44 | public |
| 45 | CacheRRset(Record rec, int cred, long maxttl) { |
| 46 | super(); |
| 47 | this.credibility = cred; |
| 48 | this.expire = limitExpire(rec.getTTL(), maxttl); |
| 49 | addRR(rec); |
| 50 | } |
| 51 | |
| 52 | public |
| 53 | CacheRRset(RRset rrset, int cred, long maxttl) { |
nothing calls this directly
no test coverage detected