/* * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.xwiki.model.internal.reference; import javax.inject.Inject; import javax.inject.Singleton; import org.xwiki.component.annotation.Component; import org.xwiki.model.EntityType; import org.xwiki.model.ModelConfiguration; import org.xwiki.model.reference.EntityReferenceValueProvider; /** * Uses the Entity Reference values defined in the Model Configuration. * * @version $Id: a50242aab7061b90ba6616c5b488e3ad7d7610dd $ * @since 2.3M1 * @see org.xwiki.model.internal.DefaultModelConfiguration * @deprecated since 7.1M2, used {@link DefaultEntityReferenceProvider} instead */ @Component @Singleton @Deprecated public class DefaultEntityReferenceValueProvider implements EntityReferenceValueProvider { /** * Configuration option of the model. */ @Inject private ModelConfiguration configuration; @Override @Deprecated public String getDefaultValue(EntityType type) { return this.configuration.getDefaultReferenceValue(type); } }