/**@class android.printservice.recommendation.RecommendationService @extends android.app.Service Base class for the print service recommendation services. @hide */ var RecommendationService = { /** The {@link Intent} action that must be declared as handled by a service in its manifest for the system to recognize it as a print service recommendation service. */ SERVICE_INTERFACE : "android.printservice.recommendation.RecommendationService", /**Update the print service recommendations. @param {Object {java.util.List}} recommendations The new set of recommendations */ updateRecommendations : function( ) {}, /** */ onBind : function( ) {}, /**Called when the client connects to the recommendation service. */ onConnected : function( ) {}, /**Called when the client disconnects from the recommendation service. */ onDisconnected : function( ) {}, };