FileDocCategorySizeDatePackage
TRTrackerServerRequestImpl.javaAPI DocAzureus 3.0.3.41931Tue Dec 13 14:39:08 GMT 2005org.gudy.azureus2.core3.tracker.server.impl

TRTrackerServerRequestImpl

public class TRTrackerServerRequestImpl extends Object implements TRTrackerServerRequest
author
parg

Fields Summary
protected TRTrackerServerImpl
server
protected TRTrackerServerPeer
peer
protected TRTrackerServerTorrent
torrent
protected int
type
protected String
request
protected Map
response
Constructors Summary
public TRTrackerServerRequestImpl(TRTrackerServerImpl _server, TRTrackerServerPeer _peer, TRTrackerServerTorrent _torrent, int _type, String _request, Map _response)

		server		= _server;
		peer		= _peer;
		torrent		= _torrent;
		type		= _type;
		request		= _request;
		response	= _response;
	
Methods Summary
public TRTrackerServerPeergetPeer()

		return( peer );
	
public java.lang.StringgetRequest()

		return( request );
	
public java.util.MapgetResponse()

		return( response );
	
public TRTrackerServerTorrentgetTorrent()

		return( torrent );	
	
public intgetType()

		return( type );