forked from hibernate/hibernate-orm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.html
39 lines (37 loc) · 1.56 KB
/
package.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<body>
<h2>Hibernate API</h2>
This documentation concentrates upon the following <b>Core API</b> interfaces:
<li><tt>org.hibernate.Hibernate</tt></li>
<li><tt>org.hibernate.Session</tt></li>
<li><tt>org.hibernate.SessionFactory</tt></li>
<li><tt>org.hibernate.Transaction</tt></li>
<li><tt>org.hibernate.Query</tt></li>
<li><tt>org.hibernate.Criteria</tt></li>
<li><tt>org.hibernate.ScrollableResults</tt></li>
<li><tt>org.hibernate.cfg.Configuration</tt></li>
<li><tt>org.hibernate.expression.Expression</tt></li>
<li><tt>org.hibernate.expression.Order</tt></li>
<li><tt>org.hibernate.expression.Example</tt></li>
These interfaces are fully intended to be exposed to application code.<br>
<br>
The <b>Extension API</b> is intended to be used by application programmers
to extend Hibernate functionality. None of these interfaces are intended
to be called by the application - they are called internally by Hibernate.
This API is less stable than the Core API. The safest way to extend
functionality is to contribute extensions back to the project; that way
extensions will be updated when the Extension API changes.<br>
<br>
Full Hibernate documentation may be found at
<a href="http://hibernate.org">hibernate.org</a>.
@see org.hibernate.Hibernate
@see org.hibernate.Session
@see org.hibernate.SessionFactory
@see org.hibernate.Transaction
@see org.hibernate.Query
@see org.hibernate.Criteria
@see org.hibernate.ScrollableResults
@see org.hibernate.cfg.Configuration
@see org.hibernate.expression.Expression
@see org.hibernate.expression.Order
@see org.hibernate.expression.Example
</body>