trackerwebpagerequestimpl.java

来自「Azureus is a powerful, full-featured, cr」· Java 代码 · 共 97 行

JAVA
97
字号
/*
 * File    : TrackerWebPageRequestImpl.java
 * Created : 08-Dec-2003
 * By      : parg
 * 
 * Azureus - a Java Bittorrent client
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details ( see the LICENSE file ).
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

package org.gudy.azureus2.pluginsimpl.local.tracker;

/**
 * @author parg
 *
 */

import java.io.InputStream;
import org.gudy.azureus2.plugins.tracker.*;
import org.gudy.azureus2.plugins.tracker.web.*;

public class 
TrackerWebPageRequestImpl
	implements TrackerWebPageRequest
{
	protected Tracker			tracker;
	protected TrackerWebContext	context;
	protected String			client_address;
	protected String			url;
	protected String			header;
	protected InputStream		is;
	
	protected
	TrackerWebPageRequestImpl(
		Tracker				_tracker,
		TrackerWebContext	_context,
		String				_client_address,
		String				_url,
		String				_header,
		InputStream			_is )
	{
		tracker			= _tracker;
		context			= _context;
		client_address	= _client_address;
		url				= _url;
		header			= _header;
		is				= _is;
	}
	
	public Tracker
	getTracker()
	{
		return( tracker );
	}
	
	public TrackerWebContext
	getContext()
	{
		return( context );
	}
	
	public String
	getURL()
	{
		return( url );
	}
	
	public String
	getClientAddress()
	{
		return( client_address );
	}

	public InputStream
	getInputStream()
	{
		return( is );
	}
	
	public String
	getHeader()
	{
		return( header );
	}
}	

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?