summaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/federation/CommonFields.java
blob: 8d970ddacadc057f83c6052212e77c962d61ee0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.search.federation;
/**
 * A set of string constants for common hit field names.
 *
 * @author laboisse
 * @deprecated do not use
 */
@Deprecated // TODO: Remove on Vespa 8
public class CommonFields {

	public static final String TITLE = "title";
	public static final String URL = "url";
	public static final String DESCRIPTION = "description";
	public static final String DATE = "date";
	public static final String SIZE = "size";
	public static final String DISP_URL = "dispurl";
	public static final String BASE_URL = "baseurl";
	public static final String MIME_TYPE = "mimetype";
	public static final String RELEVANCY = "relevancy";
	public static final String THUMBNAIL_URL = "thumbnailUrl";
	public static final String THUMBNAIL_WIDTH = "thumbnailWidth";
	public static final String THUMBNAIL_HEIGHT = "thumbnailHeight";

}