mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
16 lines
437 B
Java
16 lines
437 B
Java
package io.ebean;
|
|
|
|
/**
|
|
* Deprecated - please migrate to <code>io.ebean.Database</code>.
|
|
* Provides the API for fetching and saving beans to a particular Database.
|
|
* <p>
|
|
* Effectively this is an alias for {@link Database} which is now the new
|
|
* and improved name for EbeanServer.
|
|
* <p>
|
|
* The preference is to use DB and Database rather than Ebean and EbeanServer.
|
|
*/
|
|
@Deprecated
|
|
public interface EbeanServer extends Database {
|
|
|
|
}
|