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

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

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

Methods in com.mymed.controller.core.manager.reputation.db.table.facade that return types with arguments of type Verdict
 java.util.Collection<Verdict> VerdictFacade.getAllRecords()
          it returns all the entries of the table AtomicInteraction.
 java.util.Collection<Verdict> DbTableAdapter.getAllRecordsVerdict()
           
 java.util.Collection<Verdict> DbTableAdapter.getConsumerVerdictByApplication(java.lang.String idApplicationReputation)
           
 java.util.Collection<Verdict> VerdictFacade.getConsumerVerdictByApplication(java.lang.String idApplicationReputation)
          it returns the list of verdicts being the consumer associated to a given application
 java.util.Collection<Verdict> DbTableAdapter.getProducerVerdictByApplication(java.lang.String idApplicationReputation)
           
 java.util.Collection<Verdict> VerdictFacade.getProducerVerdictByApplication(java.lang.String idApplicationReputation)
          it returns the list of verdicts being the producers associated to a given application
 java.util.Collection<Verdict> VerdictFacade.getRecordsByEvaluatedToConsumerAndDate(java.lang.String idUserServiceConsumer, java.util.Date LowerBoundFilter, java.util.Date UpperBoundFilter)
          this method returns the collection of all atomic interaction referred to a given idUserService which is a consumer (so referred to the table UserServiceConsumer) whose feedback have been provided to the consumer (which means that the field recipientOfTheFeedback corresponds to CONSUMER) and whose timestamp is within the considered temporal range.
 java.util.Collection<Verdict> VerdictFacade.getRecordsByEvaluatedToProducerAndDate(java.lang.String idUserService, java.util.Date LowerBoundFilter, java.util.Date UpperBoundFilter)
          this method returns the collection of all atomic interaction referred to a given idUserService which is a producer (so referred to the table UserServiceProvider) whose feedback have been provided to the producer (which means that the field recipientOfTheFeedback corresponds to PRODUCER) and whose timestamp is within the considered temporal range.
 java.util.Collection<Verdict> DbTableAdapter.getVerdictByUserReputation(java.lang.String idUserReputation)
           
 java.util.Collection<Verdict> VerdictFacade.getVerdictByUserReputation(java.lang.String idUserReputation)
          it returns the verdicts associated to a given user
 java.util.Collection<Verdict> DbTableAdapter.getVerdictsByEvaluatedToConsumerAndDate(java.lang.String idUserServiceConsumer, java.util.Date LowerBoundFilter, java.util.Date UpperBoundFilter)
           
 java.util.Collection<Verdict> DbTableAdapter.getVerdictsByEvaluatedToProducerAndDate(java.lang.String idUserService, java.util.Date LowerBoundFilter, java.util.Date UpperBoundFilter)
           
 java.util.Collection<Verdict> DbTableAdapter.getVerdictsByIdAggregation(java.lang.String idAggr)
           
 java.util.Collection<Verdict> VerdictFacade.getVerdictsByIdAggregation(java.lang.String idAggregation)
          it returns the collection of all verdicts belonging to a given aggregation
 

Methods in com.mymed.controller.core.manager.reputation.db.table.facade with parameters of type Verdict
 void VerdictFacade.persist(Verdict tc)
          this methods persists the object given in input in the database (it 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.persistVerdict(Verdict tc)
           
 void DbTableAdapter.persistVerdictToAggregation(VerdictAggregation va, Verdict v)