Package | Description |
---|---|
org.julp | |
org.julp.db |
Modifier and Type | Class and Description |
---|---|
class |
AbstractDomainObject<T>
Normally to make your object able to persist you need to extend this object
If you can't or don't want to extend, just make your class
implement org.julp.DomainObject interface and copy and paste members
and methods from org.julp.AbstractDomainObject into your class.
|
Modifier and Type | Field and Description |
---|---|
protected java.util.List<DomainObject<T>> |
AbstractDomainObjectFactory.objectList
Collection of Objects (data)
|
protected java.util.List<DomainObject<T>> |
Pager.objectList |
protected java.util.List<DomainObject<T>> |
AbstractDomainObjectFactory.removedObjects
Collection of Objects to delete from DB
|
Modifier and Type | Method and Description |
---|---|
java.util.List<DomainObject<T>> |
AbstractDomainObjectFactory.getObjectList()
Getter for property objectList.
|
java.util.List<DomainObject<T>> |
Pager.getObjectList() |
java.util.List<DomainObject<T>> |
AbstractDomainObjectFactory.getRemovedObjects()
Getter for property removedObjects.
|
java.util.List<DomainObject<T>> |
DataReader.readData(Wrapper data) |
java.util.List<DomainObject<T>> |
DataReader.readData(Wrapper data,
int offset,
int limit) |
Modifier and Type | Method and Description |
---|---|
void |
AbstractDomainObjectFactory.setObjectList(java.util.List<DomainObject<T>> objectList)
Setter for property objectList.
|
void |
Pager.setObjectList(java.util.List<DomainObject<T>> objectList) |
void |
AbstractDomainObjectFactory.setRemovedObjects(java.util.List<DomainObject<T>> removedObjects)
Setter for property removedObjects.
|
Constructor and Description |
---|
Pager(java.util.List<DomainObject<T>> objectList) |
Pager(java.util.List<DomainObject<T>> objectList,
int pageSize) |
Modifier and Type | Field and Description |
---|---|
protected java.util.List<DomainObject<T>> |
DBDataWriter.createdObjects |
protected java.util.List<DomainObject<T>> |
DBDataWriter.modifiedObjects |
protected java.util.List<DomainObject<T>> |
DBDataWriter.removedObjects |
Modifier and Type | Method and Description |
---|---|
java.util.List<DomainObject<T>> |
DBDataReader.readData(Wrapper data) |
java.util.List<DomainObject<T>> |
DBDataReader.readData(Wrapper data,
int offset,
int limit) |
protected java.util.List<DomainObject<T>> |
DBDataReader.readDataInternal(Wrapper data) |
Modifier and Type | Method and Description |
---|---|
protected boolean |
DBDataWriter.createObject(DomainObject domainObject) |
protected java.lang.Object |
DBDataWriter.readValue(DomainObject<T> domainObject,
java.lang.reflect.Method method) |
protected java.lang.Object |
LazyLoader.readValue(int ind,
DomainObject<T> domainObject) |
protected boolean |
DBDataWriter.removeObject(DomainObject<T> domainObject) |
protected boolean |
DBDataWriter.storeObject(DomainObject domainObject) |