/* * Created on Jun 20, 2008 * Created by Paul Gardner * * Copyright 2008 Vuze, Inc. All rights reserved. * * 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; version 2 of the License only. * * 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. * * 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.plugins.utils.search; public interface SearchResult { public static final int PR_NAME = 1; // String public static final int PR_PUB_DATE = 2; // Date public static final int PR_SIZE = 3; // Long public static final int PR_LEECHER_COUNT = 4; // Long (-1 unknown) public static final int PR_SEED_COUNT = 5; // Long (-1 unknown) public static final int PR_SUPER_SEED_COUNT = 6; // Long (-1 unknown) public static final int PR_CATEGORY = 7; // String public static final int PR_COMMENTS = 8; // Long (-1 unknown) public static final int PR_VOTES = 9; // Long (-1 unknown) public static final int PR_CONTENT_TYPE = 10; // String ("video","audio","game") public static final int PR_DETAILS_LINK = 11; // URL as String public static final int PR_DOWNLOAD_LINK = 12; // URL as String public static final int PR_PLAY_LINK = 13; // URL as String public static final int PR_PRIVATE = 14; // Boolean public static final int PR_DRM_KEY = 15; // String public static final int PR_DOWNLOAD_BUTTON_LINK = 16; // URL as String public static final int PR_RANK = 17; // Long value, 0->100 (-1 unknown) public static final int PR_ACCURACY = 18; // Long value, 0->100 (-1 unknown) public static final int PR_VOTES_DOWN = 19; // Long (-1 unknown) public static final int PR_UID = 20; // String public static final int PR_HASH = 21; // byte[] torrent hash // if you add more properties make sure you amend the mapping in PluginEngine appropriately // AND the reverse mapping in MetaSearchManagerImpl // AND generic XML attributes in xml-http plugin public Object getProperty( int property_name ); }