Package net.i2p.data
Class Lease
java.lang.Object
net.i2p.data.DataStructureImpl
net.i2p.data.Lease
- All Implemented Interfaces:
Serializable
,DataStructure
public class Lease extends DataStructureImpl
Defines the proof that a particular router / tunnel is allowed to receive
messages for a particular Destination during some period of time.
- Author:
- jrandom
- See Also:
- Serialized Form
-
Field Summary
-
Constructor Summary
Constructors Constructor Description Lease()
-
Method Summary
Modifier and Type Method Description boolean
equals(Object object)
Date
getEndDate()
Deprecated.use getEndTime()long
getEndTime()
Hash
getGateway()
Retrieve the router at which the destination can be contactedTunnelId
getTunnelId()
Tunnel on the gateway to communicate withint
hashCode()
boolean
isExpired()
has this lease already expired?boolean
isExpired(long fudgeFactor)
has this lease already expired (giving allowing up the fudgeFactor milliseconds for clock skew)?void
readBytes(InputStream in)
Load up the current object with data from the given stream.void
setEndDate(long date)
void
setEndDate(Date date)
Deprecated.use setEndDate(long)void
setGateway(Hash ident)
Configure the router at which the destination can be contactedvoid
setTunnelId(TunnelId id)
Configure the tunnel on the gateway to communicate withString
toString()
void
writeBytes(OutputStream out)
Write out the data structure to the stream, using the format defined in the I2P data structure specification.Methods inherited from class net.i2p.data.DataStructureImpl
calculateHash, fromBase64, fromByteArray, read, toBase64, toByteArray
-
Field Details
-
Constructor Details
-
Lease
public Lease()
-
-
Method Details
-
getGateway
Retrieve the router at which the destination can be contacted- Returns:
- identity of the router acting as a gateway
-
setGateway
Configure the router at which the destination can be contacted- Parameters:
ident
- router acting as the gateway
-
getTunnelId
Tunnel on the gateway to communicate with- Returns:
- tunnel ID
-
setTunnelId
Configure the tunnel on the gateway to communicate with- Parameters:
id
- tunnel ID
-
getEndDate
Deprecated.use getEndTime() -
setEndDate
Deprecated.use setEndDate(long) -
getEndTime
public long getEndTime()- Since:
- 0.9.48
-
setEndDate
public void setEndDate(long date)- Since:
- 0.9.48
-
isExpired
public boolean isExpired()has this lease already expired? -
isExpired
public boolean isExpired(long fudgeFactor)has this lease already expired (giving allowing up the fudgeFactor milliseconds for clock skew)? -
readBytes
Description copied from interface:DataStructure
Load up the current object with data from the given stream. Data loaded this way must match the I2P data structure specification. Warning - many classes will throw IllegalStateException if data is already set.- Parameters:
in
- stream to read from- Throws:
DataFormatException
- if the data is improperly formattedIOException
- if there was a problem reading the stream
-
writeBytes
Description copied from interface:DataStructure
Write out the data structure to the stream, using the format defined in the I2P data structure specification.- Parameters:
out
- stream to write to- Throws:
DataFormatException
- if the data was incomplete or not yet ready to be writtenIOException
- if there was a problem writing to the stream
-
equals
-
hashCode
public int hashCode() -
toString
-