Subversion Repositories SmartDukaan

Rev

Rev 21730 | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.web.res;

public class SolrSearchResultResponse
{
        private String id;

        private String title;

        private String thumbnail;

        private String[] ids;

        private String productUrl;

        public String getId ()
        {
                return id;
        }

        public void setId (String id)
        {
                this.id = id;
        }

        public String getTitle ()
        {
                return title;
        }

        public void setTitle (String title)
        {
                this.title = title;
        }

        public String getThumbnail ()
        {
                return thumbnail;
        }

        public void setThumbnail (String thumbnail)
        {
                this.thumbnail = thumbnail;
        }

        public String[] getIds ()
        {
                return ids;
        }

        public void setIds (String[] ids)
        {
                this.ids = ids;
        }

        public String getProductUrl ()
        {
                return productUrl;
        }

        public void setProductUrl (String productUrl)
        {
                this.productUrl = productUrl;
        }

}