B C D E F I R S U W 

B

br.com.arsmachina.controller - package br.com.arsmachina.controller
 
br.com.arsmachina.controller.impl - package br.com.arsmachina.controller.impl
 

C

Controller<T,K extends Serializable> - Interface in br.com.arsmachina.controller
Interface that defines a read-write, generic and generified controller for a given entity class.
ControllerImpl<T,K extends Serializable> - Class in br.com.arsmachina.controller.impl
Abstract class that implements the Controller interface by delegating all method calls to a DAO passed through its constructor.
ControllerImpl(DAO<T, K>) - Constructor for class br.com.arsmachina.controller.impl.ControllerImpl
Single constructor of this class.
countAll() - Method in class br.com.arsmachina.controller.impl.ControllerImpl
Invokes 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.

D

delete(K) - Method in class br.com.arsmachina.controller.impl.ControllerImpl
Invokes 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.

E

evict(T) - Method in class br.com.arsmachina.controller.impl.ControllerImpl
Invokes 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.

F

findAll() - Method in class br.com.arsmachina.controller.impl.ControllerImpl
Invokes 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.

I

isPersistent(T) - Method in class br.com.arsmachina.controller.impl.ControllerImpl
Invokes 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.

R

ReadableController<T,K extends Serializable> - Interface in br.com.arsmachina.controller
Interface that defines a read-only, generic and generified controller for a given entity class.
ReadableControllerImpl<T,K extends Serializable> - Class in br.com.arsmachina.controller.impl
Abstract class that implements the ReadableController interface by delegating all method calls to a ReadableDAO passed through its constructor.
ReadableControllerImpl(ReadableDAO<T, K>) - Constructor for class br.com.arsmachina.controller.impl.ReadableControllerImpl
Single constructor of this class.
reattach(T) - Method in class br.com.arsmachina.controller.impl.ControllerImpl
Invokes 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().
refresh(T) - Method in interface br.com.arsmachina.controller.ReadableController
Refreshes an object, getting the most recent version of its data from the object store.

S

save(T) - Method in class br.com.arsmachina.controller.impl.ControllerImpl
Invokes 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 save(Object) if the object is persistent and update(Object) otherwise.
saveOrUpdate(T) - Method in interface br.com.arsmachina.controller.WriteableController
Saves (inserts) or updates an object.

U

update(T) - Method in class br.com.arsmachina.controller.impl.ControllerImpl
Invokes 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.

W

WriteableController<T,K extends Serializable> - Interface in br.com.arsmachina.controller
Interface that defines a read-write, generic and generified controller for a given entity class.
WriteableControllerImpl<T,K extends Serializable> - Class in br.com.arsmachina.controller.impl
Abstract class that implements the WriteableController interface by delegating all method calls to a WriteableDAO passed through its constructor.
WriteableControllerImpl(WriteableDAO<T, K>) - Constructor for class br.com.arsmachina.controller.impl.WriteableControllerImpl
Single constructor of this class.
B C D E F I R S U W 

Copyright © 2008-2013 Ars Machina Tecnologia da Informação Ltda.. All Rights Reserved.