|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
Controller interface by delegating all method calls to
a DAO passed through its constructor.dao.countAll().
- countAll() -
Method in class br.com.arsmachina.controller.impl.ReadableControllerImpl
- Invokes
dao.countAll().
- countAll() -
Method in interface br.com.arsmachina.controller.ReadableController
- Returns the total number of objects of this class.
dao.delete().
- delete(T) -
Method in class br.com.arsmachina.controller.impl.ControllerImpl
- Invokes
dao.delete().
- delete(K) -
Method in class br.com.arsmachina.controller.impl.WriteableControllerImpl
- Invokes
dao.delete().
- delete(T) -
Method in class br.com.arsmachina.controller.impl.WriteableControllerImpl
- Invokes
dao.delete().
- delete(T) -
Method in interface br.com.arsmachina.controller.WriteableController
- Removes an object.
- delete(K) -
Method in interface br.com.arsmachina.controller.WriteableController
- Removes an object given its primary key.
dao.evict().
- evict(T) -
Method in class br.com.arsmachina.controller.impl.WriteableControllerImpl
- Invokes
dao.evict().
- evict(T) -
Method in interface br.com.arsmachina.controller.WriteableController
- Removes an object from the current persistence context.
dao.findAll().
- findAll(int, int, SortCriterion...) -
Method in class br.com.arsmachina.controller.impl.ControllerImpl
- Invokes
dao.findAll().
- findAll() -
Method in class br.com.arsmachina.controller.impl.ReadableControllerImpl
- Invokes
dao.findAll().
- findAll(int, int, SortCriterion...) -
Method in class br.com.arsmachina.controller.impl.ReadableControllerImpl
- Invokes
dao.findAll().
- findAll() -
Method in interface br.com.arsmachina.controller.ReadableController
- Returns the all instances of the related entity class.
- findAll(int, int, SortCriterion...) -
Method in interface br.com.arsmachina.controller.ReadableController
- Returns the all instances of the related entity class, but in a paginated fashion.
- findByExample(T) -
Method in class br.com.arsmachina.controller.impl.ControllerImpl
- Invokes
dao.findByExample().
- findByExample(T) -
Method in class br.com.arsmachina.controller.impl.ReadableControllerImpl
- Invokes
dao.findByExample().
- findByExample(T) -
Method in interface br.com.arsmachina.controller.ReadableController
- Executes a query by example.
- findById(K) -
Method in class br.com.arsmachina.controller.impl.ControllerImpl
- Invokes
dao.findById().
- findById(K) -
Method in class br.com.arsmachina.controller.impl.ReadableControllerImpl
- Invokes
dao.findById().
- findById(K) -
Method in interface br.com.arsmachina.controller.ReadableController
- Returns the object with a given primary key value.
- findByIds(K...) -
Method in class br.com.arsmachina.controller.impl.ControllerImpl
- Invokes
dao.findByIds().
- findByIds(K...) -
Method in class br.com.arsmachina.controller.impl.ReadableControllerImpl
- Invokes
dao.findById().
- findByIds(K...) -
Method in interface br.com.arsmachina.controller.ReadableController
- Returns the objects with some given primary key values.
dao.isPersistent().
- isPersistent(T) -
Method in class br.com.arsmachina.controller.impl.WriteableControllerImpl
- Invokes
dao.isPersistent().
- isPersistent(T) -
Method in interface br.com.arsmachina.controller.WriteableController
- Tells whether a given object is already persistent or not.
ReadableController interface by delegating all method
calls to a ReadableDAO passed through its constructor.dao.reattach().
- reattach(T) -
Method in class br.com.arsmachina.controller.impl.ReadableControllerImpl
- Invokes
dao.reattach().
- reattach(T) -
Method in interface br.com.arsmachina.controller.ReadableController
- Reattaches an object to the persistence context, if there is one.
- refresh(T) -
Method in class br.com.arsmachina.controller.impl.ControllerImpl
- Invokes
dao.refresh().
- refresh(T) -
Method in class br.com.arsmachina.controller.impl.ReadableControllerImpl
- Invokes
dao.refresh().
dao.save().
- save(T) -
Method in class br.com.arsmachina.controller.impl.WriteableControllerImpl
- Invokes
dao.save().
- save(T) -
Method in interface br.com.arsmachina.controller.WriteableController
- Saves (inserts) an object.
- saveOrUpdate(T) -
Method in class br.com.arsmachina.controller.impl.ControllerImpl
- Invokes
ControllerImpl.save(Object) if the object is persistent and ControllerImpl.update(Object)
otherwise.
- saveOrUpdate(T) -
Method in class br.com.arsmachina.controller.impl.WriteableControllerImpl
- Invokes
WriteableControllerImpl.save(Object) if the object is persistent and WriteableControllerImpl.update(Object)
otherwise.
- saveOrUpdate(T) -
Method in interface br.com.arsmachina.controller.WriteableController
- Saves (inserts) or updates an object.
dao.update().
- update(T) -
Method in class br.com.arsmachina.controller.impl.WriteableControllerImpl
- Invokes
dao.update().
- update(T) -
Method in interface br.com.arsmachina.controller.WriteableController
- Updates an object.
WriteableController interface by delegating all method
calls to a WriteableDAO passed through its constructor.
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||