001/* 002 * Copyright 2016 Anyware Services 003 * 004 * Licensed under the Apache License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.apache.org/licenses/LICENSE-2.0 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016package org.ametys.cms.search.solr.field; 017 018import java.util.List; 019 020/** 021 * Long generic search field. 022 */ 023public class LongSearchField extends AbstractMetadataSearchField 024{ 025 /** 026 * Build a long search field. 027 * @param path The field path. 028 */ 029 public LongSearchField(String path) 030 { 031 super(path); 032 } 033 /** 034 * Build a long search field. 035 * @param joinPaths The join field paths 036 * @param finalPath The final field path. 037 */ 038 public LongSearchField(List<String> joinPaths, String finalPath) 039 { 040 super(joinPaths, finalPath); 041 } 042 043 @Override 044 protected String _getSortFieldSuffix() 045 { 046 return "_l_sort"; 047 } 048 049 @Override 050 protected String _getFacetFieldSuffix() 051 { 052 return "_l_dv"; 053 } 054 055}