All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.holonplatform.vaadin7.internal.data.container.ContainerItemIdentifierProvider Maven / Gradle / Ivy

/*
 * Copyright 2016-2017 Axioma srl.
 * 
 * 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 com.holonplatform.vaadin7.internal.data.container;

import com.holonplatform.core.internal.utils.ObjectUtils;
import com.holonplatform.vaadin7.data.ItemIdentifierProvider;
import com.holonplatform.vaadin7.data.ItemDataSource.Configuration;
import com.holonplatform.vaadin7.data.container.ItemAdapter;
import com.vaadin.data.Item;

/**
 * A {@link ItemIdentifierProvider} for container {@link Item}s using an {@link ItemAdapter} for items conversion.
 * 
 * @param  Item data type
 * 
 * @since 5.0.0
 */
public class ContainerItemIdentifierProvider implements ItemIdentifierProvider {

	private static final long serialVersionUID = -4209319399665820223L;

	private final ItemIdentifierProvider provider;
	private final ItemAdapter adapter;
	private final Configuration configuration;

	/**
	 * Constructor
	 * @param configuration Configuration
	 * @param provider Concrete item identifier provider (not null)
	 * @param adapter Item adapter (not null)
	 */
	public ContainerItemIdentifierProvider(ItemIdentifierProvider provider, ItemAdapter adapter,
			Configuration configuration) {
		super();
		ObjectUtils.argumentNotNull(provider, "ItemIdentifierProvider must be not null");
		ObjectUtils.argumentNotNull(adapter, "ItemAdapter must be not null");
		this.provider = provider;
		this.adapter = adapter;
		this.configuration = configuration;
	}

	/*
	 * (non-Javadoc)
	 * @see com.holonplatform.vaadin.data.ItemIdentifierProvider#getItemId(java.lang.Object)
	 */
	@Override
	public Object getItemId(Item item) {
		if (item != null) {
			return provider.getItemId(adapter.restore(configuration, item));
		}
		return null;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy