Uses of Interface
atg.svc.repository.beans.SolutionRelevance

Packages that use SolutionRelevance
atg.svc.repository.beans   
atg.svc.repository.beans.methods   
atg.svc.repository.service   
 

Uses of SolutionRelevance in atg.svc.repository.beans
 

Methods in atg.svc.repository.beans that return SolutionRelevance
 SolutionRelevance SolutionRelevanceHome.create()
          Returns a new instance.
 SolutionRelevance SolutionRelevanceHome.create(java.lang.String pId)
          Returns a new instance with the repository id set to the given id.
 SolutionRelevance SolutionRelevanceHome.findByPrimaryKey(java.lang.String primaryKey)
          Returns the instance with the given primary key, throws ObjectNotFoundException if the instance is not found.
 SolutionRelevance SolutionRelevanceHome.findBySolutionId(java.lang.String solutionId)
          Find item by Solution
 SolutionRelevance SolutionRelevanceHome.wrapRepositoryItem(atg.repository.RepositoryItem pRepositoryItem)
           
 

Methods in atg.svc.repository.beans with parameters of type SolutionRelevance
 void SolutionRelevance.copyTo(SolutionRelevance destination)
          Copies the property values of this instance to another instance of the same data type.
 

Uses of SolutionRelevance in atg.svc.repository.beans.methods
 

Methods in atg.svc.repository.beans.methods with parameters of type SolutionRelevance
 int SolutionRelevanceMethods.decrementHotUseCount(SolutionRelevance pSolutionRelevance)
          Decrements the hot use count for the solution and recomputes the score.
 int SolutionRelevanceMethods.decrementUseCount(SolutionRelevance pSolutionRelevance)
          Decrements the use count for the solution and recomputes the score.
 int SolutionRelevanceMethods.getHotScore(SolutionRelevance pSolutionRelevance)
          Gets the hot score if not already computed it's computes.
 int SolutionRelevanceMethods.getQOAAScore(SolutionRelevance pSolutionRelevance)
          Gets the qoaa score if not already computed it's computes.
 int SolutionRelevanceMethods.getTopScore(SolutionRelevance pSolutionRelevance)
          Gets the top score if not already computed it's computes.
 int SolutionRelevanceMethods.incrementHotUseCount(SolutionRelevance pSolutionRelevance)
          Increments the hot use count for the solution and recomputes the score.
 int SolutionRelevanceMethods.incrementUseCount(SolutionRelevance pSolutionRelevance)
          Increments the use count for the solution and recomputes the score.
 int SolutionRelevanceMethods.incrementViewCount(SolutionRelevance pSolutionRelevance)
          Increments the view count for the solution and recomputes the score.
 

Uses of SolutionRelevance in atg.svc.repository.service
 

Methods in atg.svc.repository.service that return SolutionRelevance
 SolutionRelevance SolutionScoringService.create(atg.svc.repository.beans.Solution pSolution)
          Creates a new solution relevance bean for the specified solution.
 SolutionRelevance SolutionScoringService.create(java.lang.String pSolutionId)
          Creates a new solution relevance bean for the specified solution.
 SolutionRelevance AsyncSolutionScoringService.create(java.lang.String pSolutionId, java.lang.String pSolutionClassId)
          Creates a new solution relevance bean for the specified SolutionId and SolutionClassId Use save to persist the solution relevance object.
 SolutionRelevance SolutionScoringService.create(java.lang.String pSolutionId, java.lang.String pSolutionClassId)
          Creates a new solution relevance bean for the specified solution.
 SolutionRelevance SolutionScoringService.findByPrimaryKey(java.lang.String pSolutionRelevanceId)
          Finds a solution relevance object by the SolutionRelevance repository id.
 SolutionRelevance SolutionScoringService.findBySolutionId(java.lang.String pSolutionId)
          Finds a solution relevance object by the solution's repository id.
 SolutionRelevance SolutionScoringService.getSolutionRelevance(java.lang.String pSolutionId)
          Gets a SolutionRelevance object for the given solution id.
 SolutionRelevance AsyncSolutionScoringService.getSolutionRelevance(java.lang.String pSolutionId, java.lang.String pSolutionClassId)
          Gets a SolutionRelevance object for the given solution id.
 

Methods in atg.svc.repository.service with parameters of type SolutionRelevance
 int SolutionScoringService.computeHotScore(SolutionRelevance pSolutionRelevance)
          Computes the hot solution score, but does not update the SolutionRelevance item
 int SolutionScoringService.computeQOAAScore(SolutionRelevance pSolutionRelevance)
          Computes the hot solution score, but does not update the SolutionRelevance item
 void SolutionScoringService.computeScore(SolutionRelevance pSolutionRelevance)
          Computes the hot, top and qoaa scores and updates those scores in the SolutionRelevance item
 int SolutionScoringService.computeTopScore(SolutionRelevance pSolutionRelevance)
          Computes the hot solution score, but does not update the SolutionRelevance item
 void SolutionScoringService.save(SolutionRelevance pSolutionRelevance)
          Saves a solution relevance object to the repository.
 int SolutionScoringService.updateHotUseCount(SolutionRelevance pSolutionRelevance)
          Updates the hot use count and recomputes the score for the solution and saves the updated SolutionRelevance repository item.