/* * Copyright 2011 Red Hat, Inc. and/or its affiliates. * * 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 library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301 USA */ package org.infinispan.configuration.cache; import org.infinispan.configuration.AbstractTypedPropertiesConfiguration; import org.infinispan.container.DataContainer; import org.infinispan.util.TypedProperties; /** * Controls the data container for the cache. * * @author pmuir * */ public class DataContainerConfiguration extends AbstractTypedPropertiesConfiguration { private final DataContainer dataContainer; DataContainerConfiguration(DataContainer dataContainer, TypedProperties properties) { super(properties); this.dataContainer = dataContainer; } /** * Data container implementation in use * @return */ public DataContainer dataContainer() { return dataContainer; } @Override public String toString() { return "DataContainerConfiguration{" + "dataContainer=" + dataContainer + '}'; } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; DataContainerConfiguration that = (DataContainerConfiguration) o; if (dataContainer != null ? !dataContainer.equals(that.dataContainer) : that.dataContainer != null) return false; return true; } @Override public int hashCode() { return dataContainer != null ? dataContainer.hashCode() : 0; } }