| Package | Description |
|---|---|
| com.sptci.jdo |
Package with core JDO data objects and interfaces.
|
| Modifier and Type | Method and Description |
|---|---|
User |
UserFactory.fetchByUserName(String userName,
javax.jdo.PersistenceManager pm)
|
| Modifier and Type | Method and Description |
|---|---|
Collection<User> |
UserFactory.fetch(long start,
long end,
javax.jdo.PersistenceManager pm)
Return a collection that contains all
User instances in the
data store within the specified range. |
Collection<User> |
UserFactory.fetch(long start,
long end,
String sortClause,
javax.jdo.PersistenceManager pm)
Return a collection that contains all instances in the data store of
the specified class within the specified range.
|
Collection<User> |
UserFactory.fetchAll(javax.jdo.PersistenceManager pm)
Return a collection that contains all instances in the data store of
the specified class.
|