HHH-7969 Deprecated hibernate's Index annotation

This commit is contained in:
Strong Liu 2013-02-06 02:31:31 +08:00
parent 1d9b7a06a5
commit 13bf94b0d3
2 changed files with 35 additions and 0 deletions

View File

@ -33,9 +33,11 @@ import static java.lang.annotation.RetentionPolicy.RUNTIME;
* Define a DB index
*
* @author Emmanuel Bernard
* @deprecated Using {@link javax.persistence.Index} instead.
*/
@Target({FIELD, METHOD})
@Retention(RUNTIME)
@Deprecated
public @interface Index {
String name();

View File

@ -0,0 +1,33 @@
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
* Copyright (c) 2013, Red Hat Inc. or third-party contributors as
* indicated by the @author tags or express copyright attribution
* statements applied by the authors. All third-party contributions are
* distributed under license by Red Hat Inc.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
* Lesser General Public License, as published by the Free Software Foundation.
*
* This program 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 distribution; if not, write to:
* Free Software Foundation, Inc.
* 51 Franklin Street, Fifth Floor
* Boston, MA 02110-1301 USA
*/
package org.hibernate.test.annotations.index.jpa;
import javax.persistence.Entity;
/**
* @author Strong Liu <stliu@hibernate.org>
*/
@Entity
public class Dealer {
}