+

Search Tips   |   Advanced Search

Rating beans reference

Learn about the various method signatures of Rating beans. The com.ibm.wcp.analysis.beans.Rating bean method signatures are:

Rating bean method signatures Description

    public void log( HttpServletRequest request, 
                     Resource           resource, 
                     int                prefRating ); 
     
Logs a rating for a Resource object. A ResourceCollection with the same resource type will be determined and used for logging the collection name. If we have multiple ResourceCollections containing objects of the same class, you should use the log method that accepts the resourceId and collectionName.

    public void log( HttpServletRequest request, 
                     String             resourceId, 
                     String             collectionName, 
                     int                prefRating );
Logs a rating using a resource id and collection name.

    public void log( HttpServletRequest request, 
                     String             resourceId, 
                     String             collectionName, 
                     int                prefRating,
                     Hashtable          ratingData )
Logs a resource-specific rating with multiple key/value rating data. Each key can have a single value specified by a string object, or multiple values specified by a string array.

The log methods generate a RatingEvent object with the request and rating data. These events are routed to all of the registered log listeners.

Rating beans should be instantiated as session beans; however, they do not maintain rating information for the current session.

Parent topic: Rating beans