Uses of Class
com.mymed.controller.core.manager.reputation.db.table.UserApplicationConsumer

Packages that use UserApplicationConsumer
com.mymed.controller.core.manager.reputation.db.table.facade   
 

Uses of UserApplicationConsumer in com.mymed.controller.core.manager.reputation.db.table.facade
 

Methods in com.mymed.controller.core.manager.reputation.db.table.facade that return UserApplicationConsumer
 UserApplicationConsumer UserApplicationConsumerFacade.getRecordById(java.lang.String idUser, java.lang.String idApp)
          it returns the entry of the table UserServiceConsumer having the specified id.
 UserApplicationConsumer DbTableAdapter.getRecordUserApplicationConsumerById(java.lang.String idUser, java.lang.String idApp)
           
 

Methods in com.mymed.controller.core.manager.reputation.db.table.facade that return types with arguments of type UserApplicationConsumer
 java.util.Collection<UserApplicationConsumer> UserApplicationConsumerFacade.getAllRecords()
          it returns the collection of all entries of the table UserApplicationConsumer.
 java.util.Collection<UserApplicationConsumer> DbTableAdapter.getAllUserApplicationConsumer()
           
 

Methods in com.mymed.controller.core.manager.reputation.db.table.facade with parameters of type UserApplicationConsumer
 void UserApplicationConsumerFacade.persist(UserApplicationConsumer u)
          this methods persists the object given in input in the database (he could do an INSERT statement or an UPDATE statement depending on the fact that the object given in input has a new id or not).
 void DbTableAdapter.persistUserApplicationConsumer(UserApplicationConsumer u)