/* * Hibernate OGM, Domain model persistence for NoSQL datastores * * License: GNU Lesser General Public License (LGPL), version 2.1 or later * See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. */ package org.hibernate.ogm.options.shared.impl; import org.hibernate.ogm.options.shared.spi.IndexOptions; import org.hibernate.ogm.options.spi.UniqueOption; /** * Option for specifying options specific to a datastore for an index. * * @author Guillaume Smet */ public class IndexOptionsOption extends UniqueOption<IndexOptions> { }