/* * Copyright 2004-2009 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.compass.core.mapping.json.builder; import org.compass.core.converter.Converter; import org.compass.core.converter.mapping.ResourcePropertyConverter; import org.compass.core.mapping.json.JsonBoostPropertyMapping; /** * Allows to dynamically define the boost value of the resource based on a JSON property value. * * @author kimchy * @see JSEM#boost(String) */ public class JsonBoostMappingBuilder { final JsonBoostPropertyMapping mapping; /** * Constructs a new boost JSON property mapping. */ public JsonBoostMappingBuilder(String name) { this.mapping = new JsonBoostPropertyMapping(); mapping.setName(name); } /** * The default boost value that will be used of the JSON property to be used * has <code>null</code> value. Defaults to <code>1.0f</code>. */ public JsonBoostMappingBuilder defaultBoost(float defaultBoost) { mapping.setDefaultBoost(defaultBoost); return this; } /** * Sets the lookup converter name (registered with Compass) that will be used to convert the value * of the property. */ public JsonBoostMappingBuilder mappingConverter(String converterName) { mapping.setConverterName(converterName); return this; } /** * Sets an actual converter that will be used to convert this property value. */ public JsonBoostMappingBuilder mappingConverter(Converter converter) { mapping.setConverter(converter); return this; } /** * Sets the lookup converter name (registered with Compass) that will be used to convert the actual * value of the json property. Detaults to {@link org.compass.core.converter.json.SimpleJsonValueConverter}. */ public JsonBoostMappingBuilder valueConverter(String converterName) { mapping.setValueConverterName(converterName); return this; } /** * Sets the actual converter that will be used to convert the actual * value of the json property. Detaults to {@link org.compass.core.converter.json.SimpleJsonValueConverter}. */ public JsonBoostMappingBuilder valueConverter(Converter converter) { mapping.setValueConverter(converter); return this; } /** * Sets the actual converter that will be used to convert the actual * value of the json property. Detaults to {@link org.compass.core.converter.json.SimpleJsonValueConverter}. */ public JsonBoostMappingBuilder valueConverter(ResourcePropertyConverter converter) { mapping.setValueConverter(converter); return this; } }