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

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

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

Methods in com.mymed.controller.core.manager.reputation.db.table.facade that return VerdictAggregation
 VerdictAggregation VerdictAggregationFacade.getRecordById(java.lang.String idAggregation)
          it returns the entry of the table VerdictAggregation having the specified id.
 VerdictAggregation DbTableAdapter.getRecordVerdictAggregationById(java.lang.String idAggregation)
           
 

Methods in com.mymed.controller.core.manager.reputation.db.table.facade that return types with arguments of type VerdictAggregation
 java.util.Collection<VerdictAggregation> VerdictAggregationFacade.getAllRecords()
          it returns the collection of all entries of the table VerdictAggregation.
 java.util.Collection<VerdictAggregation> DbTableAdapter.getAllRecordsVerdictAggregation()
           
 java.util.Collection<VerdictAggregation> DbTableAdapter.getListOfAggregationByVerdict(java.lang.String idVerdict)
           
 java.util.Collection<VerdictAggregation> VerdictAggregationFacade.getListOfAggregationByVerdict(java.lang.String idVerdict)
          it returns the list of all aggregations to which a given verdict belongs
 

Methods in com.mymed.controller.core.manager.reputation.db.table.facade with parameters of type VerdictAggregation
 void VerdictAggregationFacade.persist(VerdictAggregation va)
          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 VerdictAggregationFacade.persist(VerdictAggregation va, Verdict v)
          this method adds the verdict object to the verdict aggregation whose object is in input.
 void DbTableAdapter.persistVerdictAggregation(VerdictAggregation tc)
           
 void DbTableAdapter.persistVerdictToAggregation(VerdictAggregation va, Verdict v)